Blame tests/network/matchhost.c

Packit Service 20376f
#include "clar_libgit2.h"
Packit Service 20376f
#include "netops.h"
Packit Service 20376f
Packit Service 20376f
void test_network_matchhost__match(void)
Packit Service 20376f
{
Packit Service 20376f
	cl_git_pass(gitno__match_host("*.example.org", "www.example.org"));
Packit Service 20376f
	cl_git_pass(gitno__match_host("*.foo.example.org", "www.foo.example.org"));
Packit Service 20376f
	cl_git_fail(gitno__match_host("*.foo.example.org", "foo.example.org"));
Packit Service 20376f
	cl_git_fail(gitno__match_host("*.foo.example.org", "www.example.org"));
Packit Service 20376f
	cl_git_fail(gitno__match_host("*.example.org", "example.org"));
Packit Service 20376f
	cl_git_fail(gitno__match_host("*.example.org", "www.foo.example.org"));
Packit Service 20376f
	cl_git_fail(gitno__match_host("*.example.org", "blah.www.www.example.org"));
Packit Service 20376f
}