summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2018-11-12 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2018-11-15 23:43:53 +0100
commitd9748d753f34a030ee483e7723037ec4d335fae3 (patch)
treea317e2a0a7350285118bbee04e13e4a1108bc797 /tests
parent7a033fa8b762c2a247e32317ffd436dd6403c942 (diff)
downloaddconf-d9748d753f34a030ee483e7723037ec4d335fae3.tar.gz
bin: Consistently validate the number of arguments
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test-dconf.py91
1 files changed, 91 insertions, 0 deletions
diff --git a/tests/test-dconf.py b/tests/test-dconf.py
index cc31ef2..e7ff747 100755
--- a/tests/test-dconf.py
+++ b/tests/test-dconf.py
@@ -147,6 +147,97 @@ class DBusTest(unittest.TestCase):
self.temporary_dir.cleanup()
+ def test_invalid_usage(self):
+ """Invalid dconf usage results in non-zero exit code and help message.
+ """
+ cases = [
+ # No command:
+ [],
+
+ # Invalid command:
+ ['no-such-command'],
+
+ # Too many arguments:
+ ['blame', 'a'],
+
+ # Missing arguments:
+ ['compile'],
+ ['compile', 'output'],
+ # Too many arguments:
+ ['compile', 'output', 'dir1', 'dir2'],
+
+ # Missing arguments:
+ ['_complete'],
+ ['_complete', ''],
+ # Too many arguments:
+ ['_complete', '', '/', '/'],
+
+ # Missing argument:
+ ['dump'],
+ # Dir is required:
+ ['dump', '/key'],
+ # Too many arguments:
+ ['dump', '/a/', '/b/'],
+
+ # Missing argument:
+ ['list'],
+ # Dir is required:
+ ['list', '/foo/bar'],
+ # Too many arguments:
+ ['list', '/foo', '/bar'],
+
+ # Missing argument:
+ ['list-locks'],
+ # Dir is required:
+ ['list-locks', '/key'],
+ # Too many arguments:
+ ['list-locks', '/a/', '/b/'],
+
+ # Missing argument:
+ ['load'],
+ # Dir is required:
+ ['load', '/key'],
+ # Too many arguments:
+ ['load', '/a/', '/b/'],
+
+ # Missing argument:
+ ['read'],
+ # Key is required:
+ ['read', '/dir/'],
+ # Too many arguments:
+ ['read', '/a', '/b'],
+ ['read', '-d', '/a', '/b'],
+
+ # Missing arguments:
+ ['reset'],
+ # Invalid path:
+ ['reset', 'test/test'],
+ # Too many arguments:
+ ['reset', '/test', '/test'],
+ ['reset', '-f', '/', '/'],
+
+ # Missing arguments:
+ ['watch'],
+ # Invalid path:
+ ['watch', 'foo'],
+ # Too many arguments:
+ ['watch', '/a', '/b'],
+
+ # Missing arguments:
+ ['write'],
+ ['write', '/key'],
+ # Invalid value:
+ ['write', '/key', 'not-a-gvariant-value'],
+ # Too many arguments:
+ ['write', '/key', '1', '2'],
+ ]
+
+ for args in cases:
+ with self.subTest(args=args):
+ with self.assertRaises(subprocess.CalledProcessError) as cm:
+ dconf(*args, stderr=subprocess.PIPE)
+ self.assertRegex(cm.exception.stderr, 'Usage:')
+
def test_read_nonexisiting(self):
"""Reading missing key produces no output. """