]> git.proxmox.com Git - libgit2.git/blobdiff - tests/libgit2/remote/list.c
Merge https://salsa.debian.org/debian/libgit2 into proxmox/bullseye
[libgit2.git] / tests / libgit2 / remote / list.c
diff --git a/tests/libgit2/remote/list.c b/tests/libgit2/remote/list.c
new file mode 100644 (file)
index 0000000..4a6be3d
--- /dev/null
@@ -0,0 +1,43 @@
+#include "clar_libgit2.h"
+#include "config/config_helpers.h"
+
+static git_repository *_repo;
+
+#define TEST_URL "http://github.com/libgit2/libgit2.git"
+
+void test_remote_list__initialize(void)
+{
+       _repo = cl_git_sandbox_init("testrepo");
+}
+
+void test_remote_list__cleanup(void)
+{
+       cl_git_sandbox_cleanup();
+}
+
+void test_remote_list__always_checks_disk_config(void)
+{
+       git_repository *repo;
+       git_strarray remotes;
+       git_remote *remote;
+
+       cl_git_pass(git_repository_open(&repo, git_repository_path(_repo)));
+
+       cl_git_pass(git_remote_list(&remotes, _repo));
+       cl_assert_equal_sz(remotes.count, 1);
+       git_strarray_dispose(&remotes);
+
+       cl_git_pass(git_remote_create(&remote, _repo, "valid-name", TEST_URL));
+
+       cl_git_pass(git_remote_list(&remotes, _repo));
+       cl_assert_equal_sz(remotes.count, 2);
+       git_strarray_dispose(&remotes);
+
+       cl_git_pass(git_remote_list(&remotes, repo));
+       cl_assert_equal_sz(remotes.count, 2);
+       git_strarray_dispose(&remotes);
+
+       git_repository_free(repo);
+       git_remote_free(remote);
+}
+