diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2014-11-12 13:52:28 +0000 |
---|---|---|
committer | Daniel Watkins <daniel.watkins@canonical.com> | 2014-11-12 13:52:28 +0000 |
commit | 4ecca95e5973707f08fefc43448fec9e0f984966 (patch) | |
tree | d80e2776352759c954fdc2a39ad3ddfcc3f09114 /tests | |
parent | bd462bc68506d7da4d7e04b05e947e0cf3f8e19d (diff) | |
download | vyos-cloud-init-4ecca95e5973707f08fefc43448fec9e0f984966.tar.gz vyos-cloud-init-4ecca95e5973707f08fefc43448fec9e0f984966.zip |
Handle = used as config delimiter in SSH config.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/test_sshutil.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/unittests/test_sshutil.py b/tests/unittests/test_sshutil.py index 2a496418..cd576e8f 100644 --- a/tests/unittests/test_sshutil.py +++ b/tests/unittests/test_sshutil.py @@ -154,4 +154,18 @@ class TestParseSSHConfig(TestCase): self.assertEqual('foo', ret[0].key) self.assertEqual('Bar', ret[0].value) + def test_lower_case_with_equals(self): + self.load_file.return_value = 'foo=bar' + ret = ssh_util.parse_ssh_config('some real file') + self.assertEqual(1, len(ret)) + self.assertEqual('foo', ret[0].key) + self.assertEqual('bar', ret[0].value) + + def test_upper_case_with_equals(self): + self.load_file.return_value = 'Foo=bar' + ret = ssh_util.parse_ssh_config('some real file') + self.assertEqual(1, len(ret)) + self.assertEqual('foo', ret[0].key) + self.assertEqual('bar', ret[0].value) + # vi: ts=4 expandtab |