mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-16 19:54:38 +01:00
added test for ws/wss schemes
This commit is contained in:
parent
4bc95aaedf
commit
b3e2bdede9
@ -437,6 +437,13 @@ void URITest::testParse()
|
||||
assert (uri.getFragment().empty());
|
||||
assert (uri.isRelative());
|
||||
|
||||
uri = "ws://www.appinf.com/ws";
|
||||
assert (uri.getScheme() == "ws");
|
||||
assert (uri.getPort() == 80);
|
||||
|
||||
uri = "wss://www.appinf.com/ws";
|
||||
assert (uri.getScheme() == "wss");
|
||||
assert (uri.getPort() == 443);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user