]> git.proxmox.com Git - libgit2.git/blob - tests/network/refspecs.c
Fix memory leak in tests/network/refspecs.c
[libgit2.git] / tests / network / refspecs.c
1 #include "clar_libgit2.h"
2 #include "refspec.h"
3 #include "remote.h"
4
5 static void assert_refspec(unsigned int direction, const char *input, bool is_expected_to_be_valid)
6 {
7 git_refspec refspec;
8 int error;
9
10 error = git_refspec__parse(&refspec, input, direction == GIT_DIRECTION_FETCH);
11 git_refspec__free(&refspec);
12
13 if (is_expected_to_be_valid)
14 cl_assert_equal_i(0, error);
15 else
16 cl_assert_equal_i(GIT_ERROR, error);
17 }
18
19 void test_network_refspecs__parsing(void)
20 {
21 // Ported from https://github.com/git/git/blob/abd2bde78bd994166900290434a2048e660dabed/t/t5511-refspec.sh
22
23 assert_refspec(GIT_DIRECTION_PUSH, "", false);
24 assert_refspec(GIT_DIRECTION_PUSH, ":", true);
25 assert_refspec(GIT_DIRECTION_PUSH, "::", false);
26 assert_refspec(GIT_DIRECTION_PUSH, "+:", true);
27
28 assert_refspec(GIT_DIRECTION_FETCH, "", true);
29 assert_refspec(GIT_DIRECTION_PUSH, ":", true);
30 assert_refspec(GIT_DIRECTION_FETCH, "::", false);
31
32 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/*:refs/remotes/frotz/*", true);
33 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/*:refs/remotes/frotz", false);
34 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads:refs/remotes/frotz/*", false);
35 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/master:refs/remotes/frotz/xyzzy", true);
36
37 /*
38 * These have invalid LHS, but we do not have a formal "valid sha-1
39 * expression syntax checker" so they are not checked with the current
40 * code. They will be caught downstream anyway, but we may want to
41 * have tighter check later...
42 */
43 //assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/master::refs/remotes/frotz/xyzzy", false);
44 //assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/maste :refs/remotes/frotz/xyzzy", false);
45
46 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/*:refs/remotes/frotz/*", true);
47 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/*:refs/remotes/frotz", false);
48 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads:refs/remotes/frotz/*", false);
49 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/master:refs/remotes/frotz/xyzzy", true);
50 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/master::refs/remotes/frotz/xyzzy", false);
51 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/maste :refs/remotes/frotz/xyzzy", false);
52
53 assert_refspec(GIT_DIRECTION_PUSH, "master~1:refs/remotes/frotz/backup", true);
54 assert_refspec(GIT_DIRECTION_FETCH, "master~1:refs/remotes/frotz/backup", false);
55 assert_refspec(GIT_DIRECTION_PUSH, "HEAD~4:refs/remotes/frotz/new", true);
56 assert_refspec(GIT_DIRECTION_FETCH, "HEAD~4:refs/remotes/frotz/new", false);
57
58 assert_refspec(GIT_DIRECTION_PUSH, "HEAD", true);
59 assert_refspec(GIT_DIRECTION_FETCH, "HEAD", true);
60 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/ nitfol", false);
61 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/ nitfol", false);
62
63 assert_refspec(GIT_DIRECTION_PUSH, "HEAD:", false);
64 assert_refspec(GIT_DIRECTION_FETCH, "HEAD:", true);
65 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/ nitfol:", false);
66 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/ nitfol:", false);
67
68 assert_refspec(GIT_DIRECTION_PUSH, ":refs/remotes/frotz/deleteme", true);
69 assert_refspec(GIT_DIRECTION_FETCH, ":refs/remotes/frotz/HEAD-to-me", true);
70 assert_refspec(GIT_DIRECTION_PUSH, ":refs/remotes/frotz/delete me", false);
71 assert_refspec(GIT_DIRECTION_FETCH, ":refs/remotes/frotz/HEAD to me", false);
72
73 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/*/for-linus:refs/remotes/mine/*-blah", false);
74 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/*/for-linus:refs/remotes/mine/*-blah", false);
75
76 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads*/for-linus:refs/remotes/mine/*", false);
77 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads*/for-linus:refs/remotes/mine/*", false);
78
79 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/*/*/for-linus:refs/remotes/mine/*", false);
80 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/*/*/for-linus:refs/remotes/mine/*", false);
81
82 assert_refspec(GIT_DIRECTION_FETCH, "refs/heads/*/for-linus:refs/remotes/mine/*", true);
83 assert_refspec(GIT_DIRECTION_PUSH, "refs/heads/*/for-linus:refs/remotes/mine/*", true);
84
85 assert_refspec(GIT_DIRECTION_FETCH, "master", true);
86 assert_refspec(GIT_DIRECTION_PUSH, "master", true);
87
88 assert_refspec(GIT_DIRECTION_FETCH, "refs/pull/*/head:refs/remotes/origin/pr/*", true);
89 }
90
91 static void assert_valid_transform(const char *refspec, const char *name, const char *result)
92 {
93 git_refspec spec;
94 git_buf buf = GIT_BUF_INIT;
95
96 git_refspec__parse(&spec, refspec, true);
97 cl_git_pass(git_refspec_transform(&buf, &spec, name));
98 cl_assert_equal_s(result, buf.ptr);
99
100 git_buf_free(&buf);
101 git_refspec__free(&spec);
102 }
103
104 void test_network_refspecs__transform_mid_star(void)
105 {
106 assert_valid_transform("refs/pull/*/head:refs/remotes/origin/pr/*", "refs/pull/23/head", "refs/remotes/origin/pr/23");
107 assert_valid_transform("refs/heads/*:refs/remotes/origin/*", "refs/heads/master", "refs/remotes/origin/master");
108 assert_valid_transform("refs/heads/*:refs/remotes/origin/*", "refs/heads/user/feature", "refs/remotes/origin/user/feature");
109 assert_valid_transform("refs/heads/*:refs/heads/*", "refs/heads/master", "refs/heads/master");
110 assert_valid_transform("refs/heads/*:refs/heads/*", "refs/heads/user/feature", "refs/heads/user/feature");
111 assert_valid_transform("refs/*:refs/*", "refs/heads/master", "refs/heads/master");
112 }
113
114 static void assert_invalid_transform(const char *refspec, const char *name)
115 {
116 git_refspec spec;
117 git_buf buf = GIT_BUF_INIT;
118
119 git_refspec__parse(&spec, refspec, true);
120 cl_git_fail(git_refspec_transform(&buf, &spec, name));
121
122 git_buf_free(&buf);
123 git_refspec__free(&spec);
124 }
125
126 void test_network_refspecs__invalid(void)
127 {
128 assert_invalid_transform("refs/heads/*:refs/remotes/origin/*", "master");
129 assert_invalid_transform("refs/heads/*:refs/remotes/origin/*", "refs/headz/master");
130 }
131
132 static void assert_invalid_rtransform(const char *refspec, const char *name)
133 {
134 git_refspec spec;
135 git_buf buf = GIT_BUF_INIT;
136
137 git_refspec__parse(&spec, refspec, true);
138 cl_git_fail(git_refspec_rtransform(&buf, &spec, name));
139
140 git_buf_free(&buf);
141 git_refspec__free(&spec);
142 }
143
144 void test_network_refspecs__invalid_reverse(void)
145 {
146 assert_invalid_rtransform("refs/heads/*:refs/remotes/origin/*", "master");
147 assert_invalid_rtransform("refs/heads/*:refs/remotes/origin/*", "refs/remotes/o/master");
148 }
149
150 void test_network_refspecs__matching(void)
151 {
152 git_refspec spec;
153
154 cl_git_pass(git_refspec__parse(&spec, ":", false));
155 cl_assert_equal_s(":", spec.string);
156 cl_assert_equal_s("", spec.src);
157 cl_assert_equal_s("", spec.dst);
158
159 git_refspec__free(&spec);
160 }