diff options
Diffstat (limited to 'tests-clar/network/remotes.c')
| -rw-r--r-- | tests-clar/network/remotes.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests-clar/network/remotes.c b/tests-clar/network/remotes.c new file mode 100644 index 000000000..2abaccb07 --- /dev/null +++ b/tests-clar/network/remotes.c @@ -0,0 +1,50 @@ +#include "clar_libgit2.h" + +static git_remote *_remote; +static git_repository *_repo; +static const git_refspec *_refspec; + +void test_network_remotes__initialize(void) +{ + cl_fixture_sandbox("testrepo.git"); + + cl_git_pass(git_repository_open(&_repo, "testrepo.git")); + cl_git_pass(git_remote_load(&_remote, _repo, "test")); + + _refspec = git_remote_fetchspec(_remote); + cl_assert(_refspec != NULL); +} + +void test_network_remotes__cleanup(void) +{ + git_remote_free(_remote); + git_repository_free(_repo); + cl_fixture_cleanup("testrepo.git"); +} + +void test_network_remotes__parsing(void) +{ + cl_assert(!strcmp(git_remote_name(_remote), "test")); + cl_assert(!strcmp(git_remote_url(_remote), "git://github.com/libgit2/libgit2")); +} + +void test_network_remotes__refspec_parsing(void) +{ + cl_assert(!strcmp(git_refspec_src(_refspec), "refs/heads/*")); + cl_assert(!strcmp(git_refspec_dst(_refspec), "refs/remotes/test/*")); +} + +void test_network_remotes__fnmatch(void) +{ + cl_git_pass(git_refspec_src_match(_refspec, "refs/heads/master")); + cl_git_pass(git_refspec_src_match(_refspec, "refs/heads/multi/level/branch")); +} + +void test_network_remotes__transform(void) +{ + char ref[1024]; + + memset(ref, 0x0, sizeof(ref)); + cl_git_pass(git_refspec_transform(ref, sizeof(ref), _refspec, "refs/heads/master")); + cl_assert(!strcmp(ref, "refs/remotes/test/master")); +} |
