2020-03-24 12:08:27 +01:00
|
|
|
"""Cmdline tests."""
|
|
|
|
from pyicloud import cmdline
|
|
|
|
from . import PyiCloudServiceMock, AUTHENTICATED_USER, REQUIRES_2SA_USER, DEVICES
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import pickle
|
|
|
|
import pytest
|
|
|
|
from unittest import TestCase
|
2020-03-24 14:54:43 +01:00
|
|
|
|
2020-03-24 12:08:27 +01:00
|
|
|
if sys.version_info >= (3, 3):
|
|
|
|
from unittest.mock import patch # pylint: disable=no-name-in-module,import-error
|
|
|
|
else:
|
|
|
|
from mock import patch
|
|
|
|
|
2020-03-24 14:54:43 +01:00
|
|
|
|
2020-03-24 12:08:27 +01:00
|
|
|
class TestCmdline(TestCase):
|
|
|
|
"""Cmdline test cases."""
|
2020-03-24 14:54:43 +01:00
|
|
|
|
2020-03-24 12:08:27 +01:00
|
|
|
main = None
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
cmdline.PyiCloudService = PyiCloudServiceMock
|
|
|
|
self.main = cmdline.main
|
|
|
|
|
|
|
|
def test_no_arg(self):
|
|
|
|
"""Test no args."""
|
|
|
|
with pytest.raises(SystemExit, match="2"):
|
|
|
|
self.main()
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit, match="2"):
|
|
|
|
self.main(None)
|
|
|
|
|
|
|
|
with pytest.raises(SystemExit, match="2"):
|
|
|
|
self.main([])
|
|
|
|
|
|
|
|
def test_help(self):
|
|
|
|
"""Test the help command."""
|
|
|
|
with pytest.raises(SystemExit, match="0"):
|
2020-03-24 14:54:43 +01:00
|
|
|
self.main(["--help"])
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
def test_username(self):
|
|
|
|
"""Test the username command."""
|
|
|
|
# No username supplied
|
|
|
|
with pytest.raises(SystemExit, match="2"):
|
2020-03-24 14:54:43 +01:00
|
|
|
self.main(["--username"])
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
@patch("getpass.getpass")
|
|
|
|
def test_username_password_invalid(self, mock_getpass):
|
|
|
|
"""Test username and password commands."""
|
|
|
|
# No password supplied
|
|
|
|
mock_getpass.return_value = None
|
|
|
|
with pytest.raises(SystemExit, match="2"):
|
2020-03-24 14:54:43 +01:00
|
|
|
self.main(["--username", "invalid_user"])
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
# Bad username or password
|
|
|
|
mock_getpass.return_value = "invalid_pass"
|
2020-03-24 14:54:43 +01:00
|
|
|
with pytest.raises(
|
|
|
|
RuntimeError, match="Bad username or password for invalid_user"
|
|
|
|
):
|
|
|
|
self.main(["--username", "invalid_user"])
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
# We should not use getpass for this one, but we reset the password at login fail
|
2020-03-24 14:54:43 +01:00
|
|
|
with pytest.raises(
|
|
|
|
RuntimeError, match="Bad username or password for invalid_user"
|
|
|
|
):
|
|
|
|
self.main(["--username", "invalid_user", "--password", "invalid_pass"])
|
2020-03-24 12:08:27 +01:00
|
|
|
|
2020-03-24 14:54:43 +01:00
|
|
|
@patch("pyicloud.cmdline.input")
|
2020-03-24 12:08:27 +01:00
|
|
|
def test_username_password_requires_2sa(self, mock_input):
|
|
|
|
"""Test username and password commands."""
|
|
|
|
# Valid connection for the first time
|
|
|
|
mock_input.return_value = "0"
|
|
|
|
with pytest.raises(SystemExit, match="0"):
|
2020-03-24 14:54:43 +01:00
|
|
|
# fmt: off
|
2020-03-24 12:08:27 +01:00
|
|
|
self.main([
|
|
|
|
'--username', REQUIRES_2SA_USER,
|
|
|
|
'--password', 'valid_pass',
|
|
|
|
'--non-interactive',
|
|
|
|
])
|
2020-03-24 14:54:43 +01:00
|
|
|
# fmt: on
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
def test_device_outputfile(self):
|
|
|
|
"""Test the outputfile command."""
|
|
|
|
with pytest.raises(SystemExit, match="0"):
|
2020-03-24 14:54:43 +01:00
|
|
|
# fmt: off
|
2020-03-24 12:08:27 +01:00
|
|
|
self.main([
|
|
|
|
'--username', AUTHENTICATED_USER,
|
|
|
|
'--password', 'valid_pass',
|
|
|
|
'--non-interactive',
|
|
|
|
'--outputfile'
|
|
|
|
])
|
2020-03-24 14:54:43 +01:00
|
|
|
# fmt: on
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
for key in DEVICES:
|
2020-03-24 14:54:43 +01:00
|
|
|
file_name = DEVICES[key].content["name"].strip().lower() + ".fmip_snapshot"
|
2020-03-24 12:08:27 +01:00
|
|
|
|
|
|
|
pickle_file = open(file_name, "rb")
|
|
|
|
assert pickle_file
|
|
|
|
|
|
|
|
contents = []
|
|
|
|
with pickle_file as opened_file:
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
contents.append(pickle.load(opened_file))
|
|
|
|
except EOFError:
|
|
|
|
break
|
|
|
|
assert contents == [DEVICES[key].content]
|
|
|
|
|
|
|
|
pickle_file.close()
|
|
|
|
os.remove(file_name)
|