]> git.proxmox.com Git - libgit2.git/blob - tests/submodule/submodule_helpers.c
submodule: test updating a submodule w/ a path
[libgit2.git] / tests / submodule / submodule_helpers.c
1 #include "clar_libgit2.h"
2 #include "buffer.h"
3 #include "path.h"
4 #include "util.h"
5 #include "posix.h"
6 #include "submodule_helpers.h"
7 #include "git2/sys/repository.h"
8
9 /* rewrite gitmodules -> .gitmodules
10 * rewrite the empty or relative urls inside each module
11 * rename the .gitted directory inside any submodule to .git
12 */
13 void rewrite_gitmodules(const char *workdir)
14 {
15 git_buf in_f = GIT_BUF_INIT, out_f = GIT_BUF_INIT, path = GIT_BUF_INIT;
16 FILE *in, *out;
17 char line[256];
18
19 cl_git_pass(git_buf_joinpath(&in_f, workdir, "gitmodules"));
20 cl_git_pass(git_buf_joinpath(&out_f, workdir, ".gitmodules"));
21
22 cl_assert((in = fopen(in_f.ptr, "rb")) != NULL);
23 cl_assert((out = fopen(out_f.ptr, "wb")) != NULL);
24
25 while (fgets(line, sizeof(line), in) != NULL) {
26 char *scan = line;
27
28 while (*scan == ' ' || *scan == '\t') scan++;
29
30 /* rename .gitted -> .git in submodule directories */
31 if (git__prefixcmp(scan, "path =") == 0) {
32 scan += strlen("path =");
33 while (*scan == ' ') scan++;
34
35 git_buf_joinpath(&path, workdir, scan);
36 git_buf_rtrim(&path);
37 git_buf_joinpath(&path, path.ptr, ".gitted");
38
39 if (!git_buf_oom(&path) && p_access(path.ptr, F_OK) == 0) {
40 git_buf_joinpath(&out_f, workdir, scan);
41 git_buf_rtrim(&out_f);
42 git_buf_joinpath(&out_f, out_f.ptr, ".git");
43
44 if (!git_buf_oom(&out_f))
45 p_rename(path.ptr, out_f.ptr);
46 }
47 }
48
49 /* copy non-"url =" lines verbatim */
50 if (git__prefixcmp(scan, "url =") != 0) {
51 fputs(line, out);
52 continue;
53 }
54
55 /* convert relative URLs in "url =" lines */
56 scan += strlen("url =");
57 while (*scan == ' ') scan++;
58
59 if (*scan == '.') {
60 git_buf_joinpath(&path, workdir, scan);
61 git_buf_rtrim(&path);
62 } else if (!*scan || *scan == '\n') {
63 git_buf_joinpath(&path, workdir, "../testrepo.git");
64 } else {
65 fputs(line, out);
66 continue;
67 }
68
69 git_path_prettify(&path, path.ptr, NULL);
70 git_buf_putc(&path, '\n');
71 cl_assert(!git_buf_oom(&path));
72
73 fwrite(line, scan - line, sizeof(char), out);
74 fputs(path.ptr, out);
75 }
76
77 fclose(in);
78 fclose(out);
79
80 cl_must_pass(p_unlink(in_f.ptr));
81
82 git_buf_free(&in_f);
83 git_buf_free(&out_f);
84 git_buf_free(&path);
85 }
86
87 static void cleanup_fixture_submodules(void *payload)
88 {
89 cl_git_sandbox_cleanup(); /* either "submodules" or "submod2" */
90
91 if (payload)
92 cl_fixture_cleanup(payload);
93 }
94
95 git_repository *setup_fixture_submodules(void)
96 {
97 git_repository *repo = cl_git_sandbox_init("submodules");
98
99 cl_fixture_sandbox("testrepo.git");
100
101 rewrite_gitmodules(git_repository_workdir(repo));
102 p_rename("submodules/testrepo/.gitted", "submodules/testrepo/.git");
103
104 cl_set_cleanup(cleanup_fixture_submodules, "testrepo.git");
105
106 cl_git_pass(git_repository_reinit_filesystem(repo, 1));
107
108 return repo;
109 }
110
111 git_repository *setup_fixture_submod2(void)
112 {
113 git_repository *repo = cl_git_sandbox_init("submod2");
114
115 cl_fixture_sandbox("submod2_target");
116 p_rename("submod2_target/.gitted", "submod2_target/.git");
117
118 rewrite_gitmodules(git_repository_workdir(repo));
119 p_rename("submod2/not-submodule/.gitted", "submod2/not-submodule/.git");
120 p_rename("submod2/not/.gitted", "submod2/not/.git");
121
122 cl_set_cleanup(cleanup_fixture_submodules, "submod2_target");
123
124 cl_git_pass(git_repository_reinit_filesystem(repo, 1));
125
126 return repo;
127 }
128
129 git_repository *setup_fixture_super(void)
130 {
131 git_repository *repo = cl_git_sandbox_init("super");
132
133 cl_fixture_sandbox("sub.git");
134 p_mkdir("super/sub", 0777);
135
136 rewrite_gitmodules(git_repository_workdir(repo));
137
138 cl_set_cleanup(cleanup_fixture_submodules, "sub.git");
139
140 cl_git_pass(git_repository_reinit_filesystem(repo, 1));
141
142 return repo;
143 }
144
145 git_repository *setup_fixture_submodule_simple(void)
146 {
147 git_repository *repo = cl_git_sandbox_init("submodule_simple");
148
149 cl_fixture_sandbox("testrepo.git");
150 p_mkdir("submodule_simple/testrepo", 0777);
151
152 cl_set_cleanup(cleanup_fixture_submodules, "testrepo.git");
153
154 cl_git_pass(git_repository_reinit_filesystem(repo, 1));
155
156 return repo;
157 }
158
159 git_repository *setup_fixture_submodule_with_path(void)
160 {
161 git_repository *repo = cl_git_sandbox_init("submodule_with_path");
162
163 cl_fixture_sandbox("testrepo.git");
164 p_mkdir("submodule_with_path/lib", 0777);
165 p_mkdir("submodule_with_path/lib/testrepo", 0777);
166
167 cl_set_cleanup(cleanup_fixture_submodules, "testrepo.git");
168
169 cl_git_pass(git_repository_reinit_filesystem(repo, 1));
170
171 return repo;
172 }
173
174 void assert__submodule_exists(
175 git_repository *repo, const char *name,
176 const char *msg, const char *file, int line)
177 {
178 git_submodule *sm;
179 int error = git_submodule_lookup(&sm, repo, name);
180 if (error)
181 cl_git_report_failure(error, file, line, msg);
182 cl_assert_at_line(sm != NULL, file, line);
183 git_submodule_free(sm);
184 }
185
186 void refute__submodule_exists(
187 git_repository *repo, const char *name, int expected_error,
188 const char *msg, const char *file, int line)
189 {
190 clar__assert_equal(
191 file, line, msg, 1, "%i",
192 expected_error, (int)(git_submodule_lookup(NULL, repo, name)));
193 }
194
195 unsigned int get_submodule_status(git_repository *repo, const char *name)
196 {
197 unsigned int status = 0;
198
199 assert(repo && name);
200
201 cl_git_pass(git_submodule_status(&status, repo, name, GIT_SUBMODULE_IGNORE_UNSPECIFIED));
202
203 return status;
204 }
205
206 static int print_submodules(git_submodule *sm, const char *name, void *p)
207 {
208 unsigned int loc = 0;
209 GIT_UNUSED(p);
210 git_submodule_location(&loc, sm);
211 fprintf(stderr, "# submodule %s (at %s) flags %x\n",
212 name, git_submodule_path(sm), loc);
213 return 0;
214 }
215
216 void dump_submodules(git_repository *repo)
217 {
218 git_submodule_foreach(repo, print_submodules, NULL);
219 }
220