Lines Matching refs:test_parse
43 static void test_parse( in test_parse() function
106 test_parse("hostname", "hostname", NULL, NULL);
107 test_parse("user:password", "user", "password", NULL);
108 test_parse("user:password;options", "user", "password", "options");
109 test_parse("user:password;options;more", "user", "password", "options;more");
110 test_parse("", "", NULL, NULL);
111 test_parse(":", "", "", NULL);
112 test_parse(":;", "", "", NULL);
113 test_parse(":password", "", "password", NULL);
114 test_parse(":password;", "", "password", NULL);
115 test_parse(";options", "", NULL, "options");
116 test_parse("user;options", "user", NULL, "options");
117 test_parse("user:;options", "user", "", "options");
118 test_parse("user;options:password", "user", "password", "options");
119 test_parse("user;options:", "user", "", "options");