summaryrefslogtreecommitdiff
path: root/tests/libgit2/refs/branches/upstreamname.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libgit2/refs/branches/upstreamname.c')
-rw-r--r--tests/libgit2/refs/branches/upstreamname.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/libgit2/refs/branches/upstreamname.c b/tests/libgit2/refs/branches/upstreamname.c
new file mode 100644
index 000000000..5bae154d2
--- /dev/null
+++ b/tests/libgit2/refs/branches/upstreamname.c
@@ -0,0 +1,35 @@
+#include "clar_libgit2.h"
+#include "branch.h"
+
+static git_repository *repo;
+static git_buf upstream_name;
+
+void test_refs_branches_upstreamname__initialize(void)
+{
+ cl_git_pass(git_repository_open(&repo, cl_fixture("testrepo.git")));
+
+}
+
+void test_refs_branches_upstreamname__cleanup(void)
+{
+ git_buf_dispose(&upstream_name);
+
+ git_repository_free(repo);
+ repo = NULL;
+}
+
+void test_refs_branches_upstreamname__can_retrieve_the_remote_tracking_reference_name_of_a_local_branch(void)
+{
+ cl_git_pass(git_branch_upstream_name(
+ &upstream_name, repo, "refs/heads/master"));
+
+ cl_assert_equal_s("refs/remotes/test/master", upstream_name.ptr);
+}
+
+void test_refs_branches_upstreamname__can_retrieve_the_local_upstream_reference_name_of_a_local_branch(void)
+{
+ cl_git_pass(git_branch_upstream_name(
+ &upstream_name, repo, "refs/heads/track-local"));
+
+ cl_assert_equal_s("refs/heads/master", upstream_name.ptr);
+}