head.c 13.3 KB
Newer Older
1 2
#include "clar_libgit2.h"
#include "refs.h"
3
#include "repo_helpers.h"
4
#include "posix.h"
5

nulltoken committed
6
static git_repository *repo;
7 8 9 10 11 12 13 14 15 16 17

void test_repo_head__initialize(void)
{
	repo = cl_git_sandbox_init("testrepo.git");
}

void test_repo_head__cleanup(void)
{
	cl_git_sandbox_cleanup();
}

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
static void check_last_reflog_entry(const char *email, const char *message)
{
	git_reflog *log;
	const git_reflog_entry *entry;

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	cl_assert(git_reflog_entrycount(log) > 0);
	entry = git_reflog_entry_byindex(log, 0);
	if (email)
		cl_assert_equal_s(email, git_reflog_entry_committer(entry)->email);
	if (message)
		cl_assert_equal_s(message, git_reflog_entry_message(entry));
	git_reflog_free(log);
}

33 34 35
void test_repo_head__head_detached(void)
{
	git_reference *ref;
36
	git_signature *sig;
37

38
	cl_git_pass(git_signature_now(&sig, "Foo Bar", "foo@example.com"));
39

40
	cl_assert_equal_i(false, git_repository_head_detached(repo));
41

42 43
	cl_git_pass(git_repository_detach_head(repo, sig, "CABLE DETACHED"));
	check_last_reflog_entry(sig->email, "CABLE DETACHED");
44
	cl_assert_equal_i(true, git_repository_head_detached(repo));
45

46 47 48
	/* take the repo back to it's original state */
	cl_git_pass(git_reference_symbolic_create(&ref, repo, "HEAD", "refs/heads/master",
				true, sig, "REATTACH"));
49
	git_reference_free(ref);
50

51
	check_last_reflog_entry(sig->email, "REATTACH");
52
	cl_assert_equal_i(false, git_repository_head_detached(repo));
53
	git_signature_free(sig);
54 55
}

56
void test_repo_head__unborn_head(void)
57 58 59
{
	git_reference *ref;

nulltoken committed
60
	cl_git_pass(git_repository_head_detached(repo));
61

62
	make_head_unborn(repo, NON_EXISTING_HEAD);
63

64
	cl_assert(git_repository_head_unborn(repo) == 1);
65

66 67

	/* take the repo back to it's original state */
68
	cl_git_pass(git_reference_symbolic_create(&ref, repo, "HEAD", "refs/heads/master", 1, NULL, NULL));
69
	cl_assert(git_repository_head_unborn(repo) == 0);
70 71 72

	git_reference_free(ref);
}
73

74 75 76 77
void test_repo_head__set_head_Attaches_HEAD_to_un_unborn_branch_when_the_branch_doesnt_exist(void)
{
	git_reference *head;

78
	cl_git_pass(git_repository_set_head(repo, "refs/heads/doesnt/exist/yet", NULL, NULL));
79 80 81

	cl_assert_equal_i(false, git_repository_head_detached(repo));

82
	cl_assert_equal_i(GIT_EUNBORNBRANCH, git_repository_head(&head, repo));
83 84 85 86
}

void test_repo_head__set_head_Returns_ENOTFOUND_when_the_reference_doesnt_exist(void)
{
87
	cl_assert_equal_i(GIT_ENOTFOUND, git_repository_set_head(repo, "refs/tags/doesnt/exist/yet", NULL, NULL));
88 89 90 91
}

void test_repo_head__set_head_Fails_when_the_reference_points_to_a_non_commitish(void)
{
92
	cl_git_fail(git_repository_set_head(repo, "refs/tags/point_to_blob", NULL, NULL));
93 94 95 96 97 98
}

void test_repo_head__set_head_Attaches_HEAD_when_the_reference_points_to_a_branch(void)
{
	git_reference *head;

99
	cl_git_pass(git_repository_set_head(repo, "refs/heads/br2", NULL, NULL));
100 101 102 103 104 105 106 107 108

	cl_assert_equal_i(false, git_repository_head_detached(repo));

	cl_git_pass(git_repository_head(&head, repo));
	cl_assert_equal_s("refs/heads/br2", git_reference_name(head));

	git_reference_free(head);
}

109 110 111 112 113 114 115 116 117
static void assert_head_is_correctly_detached(void)
{
	git_reference *head;
	git_object *commit;

	cl_assert_equal_i(true, git_repository_head_detached(repo));

	cl_git_pass(git_repository_head(&head, repo));

118
	cl_git_pass(git_object_lookup(&commit, repo, git_reference_target(head), GIT_OBJ_COMMIT));
119 120 121 122 123

	git_object_free(commit);
	git_reference_free(head);
}

124 125
void test_repo_head__set_head_Detaches_HEAD_when_the_reference_doesnt_point_to_a_branch(void)
{
126
	cl_git_pass(git_repository_set_head(repo, "refs/tags/test", NULL, NULL));
127 128 129 130 131 132

	cl_assert_equal_i(true, git_repository_head_detached(repo));

	assert_head_is_correctly_detached();
}

133 134 135 136 137 138
void test_repo_head__set_head_detached_Return_ENOTFOUND_when_the_object_doesnt_exist(void)
{
	git_oid oid;

	cl_git_pass(git_oid_fromstr(&oid, "deadbeefdeadbeefdeadbeefdeadbeefdeadbeef"));

139
	cl_assert_equal_i(GIT_ENOTFOUND, git_repository_set_head_detached(repo, &oid, NULL, NULL));
140 141 142 143 144 145 146 147
}

void test_repo_head__set_head_detached_Fails_when_the_object_isnt_a_commitish(void)
{
	git_object *blob;

	cl_git_pass(git_revparse_single(&blob, repo, "point_to_blob"));

148
	cl_git_fail(git_repository_set_head_detached(repo, git_object_id(blob), NULL, NULL));
149 150 151 152 153 154 155 156 157 158 159

	git_object_free(blob);
}

void test_repo_head__set_head_detached_Detaches_HEAD_and_make_it_point_to_the_peeled_commit(void)
{
	git_object *tag;

	cl_git_pass(git_revparse_single(&tag, repo, "tags/test"));
	cl_assert_equal_i(GIT_OBJ_TAG, git_object_type(tag));

160
	cl_git_pass(git_repository_set_head_detached(repo, git_object_id(tag), NULL, NULL));
161 162 163 164 165 166

	assert_head_is_correctly_detached();

	git_object_free(tag);
}

167 168 169 170
void test_repo_head__detach_head_Detaches_HEAD_and_make_it_point_to_the_peeled_commit(void)
{
	cl_assert_equal_i(false, git_repository_head_detached(repo));

171
	cl_git_pass(git_repository_detach_head(repo, NULL, NULL));
172 173 174 175 176 177 178 179

	assert_head_is_correctly_detached();
}

void test_repo_head__detach_head_Fails_if_HEAD_and_point_to_a_non_commitish(void)
{
	git_reference *head;

180
	cl_git_pass(git_reference_symbolic_create(&head, repo, GIT_HEAD_FILE, "refs/tags/point_to_blob", 1, NULL, NULL));
181

182
	cl_git_fail(git_repository_detach_head(repo, NULL, NULL));
183 184 185

	git_reference_free(head);
}
186

187
void test_repo_head__detaching_an_unborn_branch_returns_GIT_EUNBORNBRANCH(void)
188
{
189
	make_head_unborn(repo, NON_EXISTING_HEAD);
190

191
	cl_assert_equal_i(GIT_EUNBORNBRANCH, git_repository_detach_head(repo, NULL, NULL));
192 193
}

194
void test_repo_head__retrieving_an_unborn_branch_returns_GIT_EUNBORNBRANCH(void)
195 196 197
{
	git_reference *head;

198
	make_head_unborn(repo, NON_EXISTING_HEAD);
199

200
	cl_assert_equal_i(GIT_EUNBORNBRANCH, git_repository_head(&head, repo));
201
}
202

203 204 205 206 207 208 209 210 211
void test_repo_head__retrieving_a_missing_head_returns_GIT_ENOTFOUND(void)
{
	git_reference *head;

	delete_head(repo);

	cl_assert_equal_i(GIT_ENOTFOUND, git_repository_head(&head, repo));
}

212
void test_repo_head__can_tell_if_an_unborn_head_is_detached(void)
213
{
214
	make_head_unborn(repo, NON_EXISTING_HEAD);
215 216 217

	cl_assert_equal_i(false, git_repository_head_detached(repo));
}
218

Ben Straub committed
219 220 221
static void test_reflog(git_repository *repo, size_t idx,
		const char *old_spec, const char *new_spec,
		const char *email, const char *message)
222 223
{
	git_reflog *log;
Ben Straub committed
224
	const git_reflog_entry *entry;
Ben Straub committed
225 226 227 228 229 230 231

	cl_git_pass(git_reflog_read(&log, repo, "HEAD"));
	entry = git_reflog_entry_byindex(log, idx);

	if (old_spec) {
		git_object *obj;
		cl_git_pass(git_revparse_single(&obj, repo, old_spec));
232
		cl_assert_equal_oid(git_object_id(obj), git_reflog_entry_id_old(entry));
Ben Straub committed
233 234 235 236 237
		git_object_free(obj);
	}
	if (new_spec) {
		git_object *obj;
		cl_git_pass(git_revparse_single(&obj, repo, new_spec));
238
		cl_assert_equal_oid(git_object_id(obj), git_reflog_entry_id_new(entry));
Ben Straub committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
		git_object_free(obj);
	}

	if (email) {
		cl_assert_equal_s(email, git_reflog_entry_committer(entry)->email);
	}
	if (message) {
		cl_assert_equal_s(message, git_reflog_entry_message(entry));
	}

	git_reflog_free(log);
}

void test_repo_head__setting_head_updates_reflog(void)
{
254
	git_object *tag;
255
	git_signature *sig;
256

257 258 259 260
	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, "message1"));
	cl_git_pass(git_repository_set_head(repo, "refs/heads/unborn", sig, "message2"));
261
	cl_git_pass(git_revparse_single(&tag, repo, "tags/test"));
262
	cl_git_pass(git_repository_set_head_detached(repo, git_object_id(tag), sig, "message3"));
Ben Straub committed
263
	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, "message4"));
264

265
	test_reflog(repo, 2, NULL, "refs/heads/haacked", "foo@example.com", "message1");
Ben Straub committed
266 267
	test_reflog(repo, 1, NULL, "tags/test^{commit}", "foo@example.com", "message3");
	test_reflog(repo, 0, "tags/test^{commit}", "refs/heads/haacked", "foo@example.com", "message4");
268 269

	git_object_free(tag);
270
	git_signature_free(sig);
271
}
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343

static void assert_head_reflog(git_repository *repo, size_t idx,
			       const char *old_id, const char *new_id, const char *message)
{
	git_reflog *log;
	const git_reflog_entry *entry;
	char id_str[GIT_OID_HEXSZ + 1] = {0};

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	entry = git_reflog_entry_byindex(log, idx);

	git_oid_fmt(id_str, git_reflog_entry_id_old(entry));
	cl_assert_equal_s(old_id, id_str);

	git_oid_fmt(id_str, git_reflog_entry_id_new(entry));
	cl_assert_equal_s(new_id, id_str);

	cl_assert_equal_s(message, git_reflog_entry_message(entry));

	git_reflog_free(log);
}

void test_repo_head__detaching_writes_reflog(void)
{
	git_signature *sig;
	git_oid id;
	const char *msg;

	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	msg = "message1";
	git_oid_fromstr(&id, "e90810b8df3e80c413d903f631643c716887138d");
	cl_git_pass(git_repository_set_head_detached(repo, &id, sig, msg));
	assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
			   "e90810b8df3e80c413d903f631643c716887138d", msg);

	msg = "message2";
	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, msg));
	assert_head_reflog(repo, 0, "e90810b8df3e80c413d903f631643c716887138d",
			   "258f0e2a959a364e40ed6603d5d44fbb24765b10", msg);

	git_signature_free(sig);
}

void test_repo_head__orphan_branch_does_not_count(void)
{
	git_signature *sig;
	git_oid id;
	const char *msg;

	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	/* Have something known */
	msg = "message1";
	git_oid_fromstr(&id, "e90810b8df3e80c413d903f631643c716887138d");
	cl_git_pass(git_repository_set_head_detached(repo, &id, sig, msg));
	assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
			   "e90810b8df3e80c413d903f631643c716887138d", msg);

	/* Switching to an orphan branch does not write tot he reflog */
	cl_git_pass(git_repository_set_head(repo, "refs/heads/orphan", sig, "ignored message"));
	assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
			   "e90810b8df3e80c413d903f631643c716887138d", msg);

	/* And coming back, we set the source to zero */
	msg = "message2";
	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, msg));
	assert_head_reflog(repo, 0, "0000000000000000000000000000000000000000",
			   "258f0e2a959a364e40ed6603d5d44fbb24765b10", msg);

	git_signature_free(sig);
}
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370

void test_repo_head__set_to_current_target(void)
{
	git_signature *sig;
	const char *msg;
	git_reflog *log;
	size_t nentries, nentries_after;

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	nentries = git_reflog_entrycount(log);
	git_reflog_free(log);

	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	msg = "message 1";
	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, msg));
	cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked", sig, msg));

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	nentries_after = git_reflog_entrycount(log);
	git_reflog_free(log);

	cl_assert_equal_i(nentries + 1, nentries_after);

	git_signature_free(sig);

}
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418

void test_repo_head__branch_birth(void)
{
	git_signature *sig;
	git_oid id;
	git_tree *tree;
	git_reference *ref;
	const char *msg;
	git_reflog *log;
	size_t nentries, nentries_after;

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	nentries = git_reflog_entrycount(log);
	git_reflog_free(log);

	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	cl_git_pass(git_repository_head(&ref, repo));
	cl_git_pass(git_reference_peel((git_object **) &tree, ref, GIT_OBJ_TREE));
	git_reference_free(ref);

	msg = "message 1";
	cl_git_pass(git_repository_set_head(repo, "refs/heads/orphan", sig, msg));

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	nentries_after = git_reflog_entrycount(log);
	git_reflog_free(log);

	cl_assert_equal_i(nentries, nentries_after);

	msg = "message 2";
	cl_git_pass(git_commit_create(&id, repo, "HEAD", sig, sig, NULL, msg, tree, 0, NULL));

	git_tree_free(tree);

	cl_git_pass(git_reflog_read(&log, repo, "refs/heads/orphan"));
	cl_assert_equal_i(1, git_reflog_entrycount(log));
	git_reflog_free(log);

	cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
	nentries_after = git_reflog_entrycount(log);
	git_reflog_free(log);

	cl_assert_equal_i(nentries + 1, nentries_after);

	git_signature_free(sig);

}
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469

static size_t entrycount(git_repository *repo, const char *name)
{
	git_reflog *log;
	size_t ret;

	cl_git_pass(git_reflog_read(&log, repo, name));
	ret = git_reflog_entrycount(log);
	git_reflog_free(log);

	return ret;
}

void test_repo_head__symref_chain(void)
{
	git_signature *sig;
	git_oid id;
	git_tree *tree;
	git_reference *ref;
	const char *msg;
	size_t nentries, nentries_master;

	nentries = entrycount(repo, GIT_HEAD_FILE);

	cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));

	cl_git_pass(git_repository_head(&ref, repo));
	cl_git_pass(git_reference_peel((git_object **) &tree, ref, GIT_OBJ_TREE));
	git_reference_free(ref);

	nentries_master = entrycount(repo, "refs/heads/master");

	msg = "message 1";
	cl_git_pass(git_reference_symbolic_create(&ref, repo, "refs/heads/master", "refs/heads/foo", 1, sig, msg));
	git_reference_free(ref);

	cl_assert_equal_i(0, entrycount(repo, "refs/heads/foo"));
	cl_assert_equal_i(nentries, entrycount(repo, GIT_HEAD_FILE));
	cl_assert_equal_i(nentries_master, entrycount(repo, "refs/heads/master"));

	msg = "message 2";
	cl_git_pass(git_commit_create(&id, repo, "HEAD", sig, sig, NULL, msg, tree, 0, NULL));
	git_tree_free(tree);

	cl_assert_equal_i(1, entrycount(repo, "refs/heads/foo"));
	cl_assert_equal_i(nentries +1, entrycount(repo, GIT_HEAD_FILE));
	cl_assert_equal_i(nentries_master, entrycount(repo, "refs/heads/master"));

	git_signature_free(sig);

}