Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-03-14 15:13:03 +0400
committernulltoken <emeric.fermas@gmail.com>2012-04-01 16:33:32 +0400
commit09719c500ca798fea989867f50cf29d4dbed0c89 (patch)
tree8934ccfc5ca281cf3b05fa1d0955ddd03c39d21f /tests-clar/refs/unicode.c
parent9273399bdb8f17ba6561de193fd1e518b9691a9a (diff)
reference: Fix creation of references with extended ASCII characters in their name
Diffstat (limited to 'tests-clar/refs/unicode.c')
-rw-r--r--tests-clar/refs/unicode.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests-clar/refs/unicode.c b/tests-clar/refs/unicode.c
new file mode 100644
index 000000000..16d77a4b7
--- /dev/null
+++ b/tests-clar/refs/unicode.c
@@ -0,0 +1,41 @@
+#include "clar_libgit2.h"
+
+static git_repository *repo;
+
+void test_refs_unicode__initialize(void)
+{
+ cl_fixture_sandbox("testrepo.git");
+
+ cl_git_pass(git_repository_open(&repo, "testrepo.git"));
+}
+
+void test_refs_unicode__cleanup(void)
+{
+ git_repository_free(repo);
+ cl_fixture_cleanup("testrepo.git");
+}
+
+void test_refs_unicode__create_and_lookup(void)
+{
+ git_reference *ref, *ref2;
+ git_repository *repo2;
+
+ const char *REFNAME = "refs/heads/" "\305" "ngstr" "\366" "m";
+ const char *master = "refs/heads/master";
+
+ /* Create the reference */
+ cl_git_pass(git_reference_lookup(&ref, repo, master));
+ cl_git_pass(git_reference_create_oid(&ref, repo, REFNAME, git_reference_oid(ref), 0));
+ cl_assert(strcmp(REFNAME, git_reference_name(ref)) == 0);
+
+ /* Lookup the reference in a different instance of the repository */
+ cl_git_pass(git_repository_open(&repo2, "testrepo.git"));
+ cl_git_pass(git_reference_lookup(&ref2, repo2, REFNAME));
+
+ cl_assert(git_oid_cmp(git_reference_oid(ref), git_reference_oid(ref2)) == 0);
+ cl_assert(strcmp(REFNAME, git_reference_name(ref2)) == 0);
+
+ git_reference_free(ref);
+ git_reference_free(ref2);
+ git_repository_free(repo2);
+}