mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Fix sip_uri_parse test comparison.
Part of the change with the IPv6 changes is to treat a host:port as a single 'domain' entity. This test was not updated to have the correct expectation after calling parse_uri(). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@274984 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -593,7 +593,7 @@ AST_TEST_DEFINE(sip_parse_uri_test)
|
||||
if (parse_uri(uri9, "sip:,sips:", &name, &pass, &domain, &transport) ||
|
||||
!ast_strlen_zero(name) ||
|
||||
!ast_strlen_zero(pass) ||
|
||||
strcmp(domain, "host") ||
|
||||
strcmp(domain, "host:port") ||
|
||||
strcmp(transport, "tcp")) {
|
||||
ast_test_status_update(test, "Test 9: domain only uri failed \n");
|
||||
res = AST_TEST_FAIL;
|
||||
@@ -606,7 +606,7 @@ AST_TEST_DEFINE(sip_parse_uri_test)
|
||||
if (!parse_uri(uri10, "sip:,sips:", &name, &pass, &domain, &transport) ||
|
||||
!ast_strlen_zero(name) ||
|
||||
!ast_strlen_zero(pass) ||
|
||||
strcmp(domain, "host") ||
|
||||
strcmp(domain, "host:port") ||
|
||||
strcmp(transport, "tcp")) {
|
||||
ast_test_status_update(test, "Test 10: missing \"sip:sips:\" scheme failed\n");
|
||||
res = AST_TEST_FAIL;
|
||||
|
Reference in New Issue
Block a user