2018-08-04 23:19:10 +02:00
|
|
|
import contextlib
|
|
|
|
from io import StringIO
|
|
|
|
from twisted.trial import unittest
|
|
|
|
|
2018-11-04 21:10:49 +01:00
|
|
|
from lbrynet.extras.cli import normalize_value, main
|
2018-11-07 21:15:05 +01:00
|
|
|
from lbrynet.system_info import get_platform
|
2018-08-04 23:19:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CLITest(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_guess_type(self):
|
|
|
|
self.assertEqual('0.3.8', normalize_value('0.3.8'))
|
2018-08-06 06:28:11 +02:00
|
|
|
self.assertEqual('0.3', normalize_value('0.3'))
|
2018-08-04 23:19:10 +02:00
|
|
|
self.assertEqual(3, normalize_value('3'))
|
|
|
|
self.assertEqual(3, normalize_value(3))
|
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
'VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA==',
|
|
|
|
normalize_value('VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA==')
|
|
|
|
)
|
|
|
|
|
2018-10-18 13:41:33 +02:00
|
|
|
self.assertTrue(normalize_value('TRUE'))
|
|
|
|
self.assertTrue(normalize_value('true'))
|
|
|
|
self.assertTrue(normalize_value('TrUe'))
|
|
|
|
self.assertFalse(normalize_value('FALSE'))
|
|
|
|
self.assertFalse(normalize_value('false'))
|
|
|
|
self.assertFalse(normalize_value('FaLsE'))
|
|
|
|
self.assertTrue(normalize_value(True))
|
2018-08-04 23:19:10 +02:00
|
|
|
|
|
|
|
self.assertEqual('3', normalize_value('3', key="uri"))
|
|
|
|
self.assertEqual('0.3', normalize_value('0.3', key="uri"))
|
|
|
|
self.assertEqual('True', normalize_value('True', key="uri"))
|
|
|
|
self.assertEqual('False', normalize_value('False', key="uri"))
|
|
|
|
|
|
|
|
self.assertEqual('3', normalize_value('3', key="file_name"))
|
|
|
|
self.assertEqual('3', normalize_value('3', key="name"))
|
|
|
|
self.assertEqual('3', normalize_value('3', key="download_directory"))
|
|
|
|
self.assertEqual('3', normalize_value('3', key="channel_name"))
|
|
|
|
|
|
|
|
self.assertEqual(3, normalize_value('3', key="some_other_thing"))
|
|
|
|
|
|
|
|
def test_help_command(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(['help'])
|
|
|
|
actual_output = actual_output.getvalue()
|
|
|
|
self.assertSubstring('lbrynet - LBRY command line client.', actual_output)
|
|
|
|
self.assertSubstring('USAGE', actual_output)
|
|
|
|
|
|
|
|
def test_help_for_command_command(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(['help', 'publish'])
|
|
|
|
actual_output = actual_output.getvalue()
|
|
|
|
self.assertSubstring('Make a new name claim and publish', actual_output)
|
|
|
|
self.assertSubstring('Usage:', actual_output)
|
|
|
|
|
|
|
|
def test_help_for_command_command_with_invalid_command(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(['help', 'publish1'])
|
|
|
|
self.assertSubstring('Invalid command name', actual_output.getvalue())
|
|
|
|
|
|
|
|
def test_version_command(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(['version'])
|
|
|
|
self.assertEqual(
|
|
|
|
actual_output.getvalue().strip(),
|
2018-10-09 17:37:49 +02:00
|
|
|
"lbrynet {lbrynet_version}".format(**get_platform(get_ip=False))
|
2018-08-04 23:19:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_invalid_command(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(['publish1'])
|
|
|
|
self.assertEqual(
|
|
|
|
actual_output.getvalue().strip(),
|
|
|
|
"publish1 is not a valid command."
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_valid_command_daemon_not_started(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
|
|
|
main(["publish", '--name=asd', '--bid=99'])
|
|
|
|
self.assertEqual(
|
|
|
|
actual_output.getvalue().strip(),
|
|
|
|
"Could not connect to daemon. Are you sure it's running?"
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_deprecated_command_daemon_not_started(self):
|
|
|
|
actual_output = StringIO()
|
|
|
|
with contextlib.redirect_stdout(actual_output):
|
2018-08-26 05:50:48 +02:00
|
|
|
main(["wallet_balance"])
|
2018-08-04 23:19:10 +02:00
|
|
|
self.assertEqual(
|
|
|
|
actual_output.getvalue().strip(),
|
2018-08-26 05:50:48 +02:00
|
|
|
"wallet_balance is deprecated, using account_balance.\n"
|
2018-08-04 23:19:10 +02:00
|
|
|
"Could not connect to daemon. Are you sure it's running?"
|
|
|
|
)
|