[virt-tools-list] [virt-manager] [PATCH] tests: uriparse: Test for @ symbol in username
Radostin Stoyanov
rstoyanov1 at gmail.com
Wed Apr 18 06:31:26 UTC 2018
Add test case for URI that contains the @ symbol in username.
Signed-off-by: Radostin Stoyanov <rstoyanov1 at gmail.com>
---
tests/uriparse.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/uriparse.py b/tests/uriparse.py
index 5f733820..e2e713e7 100644
--- a/tests/uriparse.py
+++ b/tests/uriparse.py
@@ -49,3 +49,7 @@ class TestURI(unittest.TestCase):
"qemu+ssh://foo%5Cbar@hostname/system",
scheme="qemu", path="/system", transport="ssh",
hostname="hostname", username="foo\\bar")
+ self._compare(
+ "qemu+ssh://user%40domain.org@hostname/system",
+ scheme="qemu", path="/system", transport="ssh",
+ hostname="hostname", username="user at domain.org")
--
2.14.3
More information about the virt-tools-list
mailing list