summaryrefslogtreecommitdiff
path: root/test/unit/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_shell.py')
-rw-r--r--test/unit/test_shell.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/unit/test_shell.py b/test/unit/test_shell.py
index 98d73e9..f103246 100644
--- a/test/unit/test_shell.py
+++ b/test/unit/test_shell.py
@@ -2424,6 +2424,27 @@ class TestDebugAndInfoOptions(unittest.TestCase):
% (mock_logging.call_args_list, argv))
+@mock.patch.dict(os.environ, mocked_os_environ)
+class TestTimeoutOption(unittest.TestCase):
+ @mock.patch('swiftclient.service.Connection')
+ def test_timeout_parsing(self, connection):
+ for timeout, expected in (
+ ("12", 12),
+ ("12.3", 12.3),
+ ("5s", 5),
+ ("25.6s", 25.6),
+ ("2m", 120),
+ ("2.5min", 150),
+ ("1h", 3600),
+ (".5hr", 1800),
+ ):
+ connection.reset_mock()
+ with self.subTest(timeout=timeout):
+ swiftclient.shell.main(["", "stat", "--timeout", timeout])
+ self.assertEqual(connection.mock_calls[0].kwargs['timeout'],
+ expected)
+
+
class TestBase(unittest.TestCase):
"""
Provide some common methods to subclasses