worktree.c 41.4 KB
Newer Older
1
#include "clar_libgit2.h"
2
#include "futils.h"
3
#include "ignore.h"
4
#include "status_data.h"
5
#include "posix.h"
Russell Belfer committed
6 7
#include "util.h"
#include "path.h"
8
#include "../diff/diff_helpers.h"
9
#include "../checkout/checkout_helpers.h"
10
#include "git2/sys/diff.h"
11 12 13 14 15 16 17

/**
 * Cleanup
 *
 * This will be called once after each test finishes, even
 * if the test failed
 */
18
void test_status_worktree__cleanup(void)
19
{
20
	cl_git_sandbox_cleanup();
21 22 23 24 25
}

/**
 * Tests - Status determination on a working tree
 */
Russell Belfer committed
26
/* this test is equivalent to t18-status.c:statuscb0 */
Vicent Marti committed
27
void test_status_worktree__whole_repository(void)
28
{
29
	status_entry_counts counts;
30
	git_repository *repo = cl_git_sandbox_init("status");
31

32
	memset(&counts, 0x0, sizeof(status_entry_counts));
33 34 35 36
	counts.expected_entry_count = entry_count0;
	counts.expected_paths = entry_paths0;
	counts.expected_statuses = entry_statuses0;

37
	cl_git_pass(
38
		git_status_foreach(repo, cb_status__normal, &counts)
39
	);
40

41 42 43
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
44 45
}

46
static void assert_show(
47 48 49 50 51 52
	const int entry_counts,
	const char *entry_paths[],
	const unsigned int entry_statuses[],
	git_repository *repo,
	git_status_show_t show,
	unsigned int extra_flags)
53 54 55 56 57 58 59 60 61
{
	status_entry_counts counts;
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;

	memset(&counts, 0x0, sizeof(status_entry_counts));
	counts.expected_entry_count = entry_counts;
	counts.expected_paths = entry_paths;
	counts.expected_statuses = entry_statuses;

62
	opts.flags = GIT_STATUS_OPT_DEFAULTS | extra_flags;
63 64 65 66 67 68 69 70 71 72 73 74 75 76
	opts.show = show;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
	);

	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}

void test_status_worktree__show_index_and_workdir(void)
{
	assert_show(entry_count0, entry_paths0, entry_statuses0,
77
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_INDEX_AND_WORKDIR, 0);
78 79 80 81 82
}

void test_status_worktree__show_index_only(void)
{
	assert_show(entry_count5, entry_paths5, entry_statuses5,
83
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_INDEX_ONLY, 0);
84 85 86 87 88
}

void test_status_worktree__show_workdir_only(void)
{
	assert_show(entry_count6, entry_paths6, entry_statuses6,
89
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_WORKDIR_ONLY, 0);
90 91
}

Russell Belfer committed
92
/* this test is equivalent to t18-status.c:statuscb1 */
Vicent Marti committed
93
void test_status_worktree__empty_repository(void)
94 95
{
	int count = 0;
96 97 98
	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");

	cl_git_pass(git_status_foreach(repo, cb_status__count, &count));
99

100
	cl_assert_equal_i(0, count);
101
}
102

103
static int remove_file_cb(void *data, git_str *file)
Russell Belfer committed
104
{
105
	const char *filename = git_str_cstr(file);
Russell Belfer committed
106 107 108 109 110 111

	GIT_UNUSED(data);

	if (git__suffixcmp(filename, ".git") == 0)
		return 0;

112
	if (git_fs_path_isdir(filename))
113
		cl_git_pass(git_futils_rmdir_r(filename, NULL, GIT_RMDIR_REMOVE_FILES));
Russell Belfer committed
114
	else
115
		cl_git_pass(p_unlink(git_str_cstr(file)));
Russell Belfer committed
116 117 118 119 120 121 122

	return 0;
}

/* this test is equivalent to t18-status.c:statuscb2 */
void test_status_worktree__purged_worktree(void)
{
123
	status_entry_counts counts;
Russell Belfer committed
124
	git_repository *repo = cl_git_sandbox_init("status");
125
	git_str workdir = GIT_STR_INIT;
Russell Belfer committed
126 127

	/* first purge the contents of the worktree */
128
	cl_git_pass(git_str_sets(&workdir, git_repository_workdir(repo)));
129
	cl_git_pass(git_fs_path_direach(&workdir, 0, remove_file_cb, NULL));
130
	git_str_dispose(&workdir);
Russell Belfer committed
131 132

	/* now get status */
133
	memset(&counts, 0x0, sizeof(status_entry_counts));
Russell Belfer committed
134 135 136 137 138 139 140 141
	counts.expected_entry_count = entry_count2;
	counts.expected_paths = entry_paths2;
	counts.expected_statuses = entry_statuses2;

	cl_git_pass(
		git_status_foreach(repo, cb_status__normal, &counts)
	);

142 143 144
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
Russell Belfer committed
145 146
}

147
/* this test is similar to t18-status.c:statuscb3 */
Russell Belfer committed
148 149
void test_status_worktree__swap_subdir_and_file(void)
{
150
	status_entry_counts counts;
Russell Belfer committed
151
	git_repository *repo = cl_git_sandbox_init("status");
152
	git_index *index;
153
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
154 155 156
	bool ignore_case;

	cl_git_pass(git_repository_index(&index, repo));
157
	ignore_case = (git_index_caps(index) & GIT_INDEX_CAPABILITY_IGNORE_CASE) != 0;
158
	git_index_free(index);
Russell Belfer committed
159 160 161 162 163 164 165 166 167 168 169

	/* first alter the contents of the worktree */
	cl_git_pass(p_rename("status/current_file", "status/swap"));
	cl_git_pass(p_rename("status/subdir", "status/current_file"));
	cl_git_pass(p_rename("status/swap", "status/subdir"));

	cl_git_mkfile("status/.HEADER", "dummy");
	cl_git_mkfile("status/42-is-not-prime.sigh", "dummy");
	cl_git_mkfile("status/README.md", "dummy");

	/* now get status */
170
	memset(&counts, 0x0, sizeof(status_entry_counts));
Russell Belfer committed
171
	counts.expected_entry_count = entry_count3;
172 173
	counts.expected_paths = ignore_case ? entry_paths3_icase : entry_paths3;
	counts.expected_statuses = ignore_case ? entry_statuses3_icase : entry_statuses3;
Russell Belfer committed
174

175 176 177
	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_INCLUDE_IGNORED;

Russell Belfer committed
178
	cl_git_pass(
179
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
Russell Belfer committed
180 181
	);

182 183 184
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
Russell Belfer committed
185 186
}

187 188
void test_status_worktree__swap_subdir_with_recurse_and_pathspec(void)
{
189
	status_entry_counts counts;
190
	git_repository *repo = cl_git_sandbox_init("status");
191
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
192 193 194 195 196 197

	/* first alter the contents of the worktree */
	cl_git_pass(p_rename("status/current_file", "status/swap"));
	cl_git_pass(p_rename("status/subdir", "status/current_file"));
	cl_git_pass(p_rename("status/swap", "status/subdir"));
	cl_git_mkfile("status/.new_file", "dummy");
198
	cl_git_pass(git_futils_mkdir_r("status/zzz_new_dir", 0777));
199 200 201 202
	cl_git_mkfile("status/zzz_new_dir/new_file", "dummy");
	cl_git_mkfile("status/zzz_new_file", "dummy");

	/* now get status */
203
	memset(&counts, 0x0, sizeof(status_entry_counts));
204 205 206 207 208 209 210 211 212 213 214 215
	counts.expected_entry_count = entry_count4;
	counts.expected_paths = entry_paths4;
	counts.expected_statuses = entry_statuses4;

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS;
	/* TODO: set pathspec to "current_file" eventually */

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
	);

216 217 218
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
219 220
}

joshaber committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
static void stage_and_commit(git_repository *repo, const char *path)
{
	git_index *index;

	cl_git_pass(git_repository_index(&index, repo));
	cl_git_pass(git_index_add_bypath(index, path));
	cl_repo_commit_from_index(NULL, repo, NULL, 1323847743, "Initial commit\n");
	git_index_free(index);
}

void test_status_worktree__within_subdir(void)
{
	status_entry_counts counts;
	git_repository *repo = cl_git_sandbox_init("status");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	char *paths[] = { "zzz_new_dir" };
	git_strarray pathsArray;

	/* first alter the contents of the worktree */
	cl_git_mkfile("status/.new_file", "dummy");
	cl_git_pass(git_futils_mkdir_r("status/zzz_new_dir", 0777));
	cl_git_mkfile("status/zzz_new_dir/new_file", "dummy");
	cl_git_mkfile("status/zzz_new_file", "dummy");
	cl_git_mkfile("status/wut", "dummy");

	stage_and_commit(repo, "zzz_new_dir/new_file");

	/* now get status */
	memset(&counts, 0x0, sizeof(status_entry_counts));
	counts.expected_entry_count = entry_count4;
	counts.expected_paths = entry_paths4;
	counts.expected_statuses = entry_statuses4;
	counts.debug = true;

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS |
		GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH;

	pathsArray.count = 1;
	pathsArray.strings = paths;
	opts.pathspec = pathsArray;

263
	/* We committed zzz_new_dir/new_file above. It shouldn't be reported. */
joshaber committed
264 265 266 267 268 269 270 271 272
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
	);

	cl_assert_equal_i(0, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}

Russell Belfer committed
273
/* this test is equivalent to t18-status.c:singlestatus0 */
274 275 276 277
void test_status_worktree__single_file(void)
{
	int i;
	unsigned int status_flags;
278
	git_repository *repo = cl_git_sandbox_init("status");
279 280 281

	for (i = 0; i < (int)entry_count0; i++) {
		cl_git_pass(
282
			git_status_file(&status_flags, repo, entry_paths0[i])
283 284 285 286
		);
		cl_assert(entry_statuses0[i] == status_flags);
	}
}
287

Russell Belfer committed
288 289 290 291 292 293 294 295 296 297 298 299
/* this test is equivalent to t18-status.c:singlestatus1 */
void test_status_worktree__single_nonexistent_file(void)
{
	int error;
	unsigned int status_flags;
	git_repository *repo = cl_git_sandbox_init("status");

	error = git_status_file(&status_flags, repo, "nonexistent");
	cl_git_fail(error);
	cl_assert(error == GIT_ENOTFOUND);
}

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
/* this test is equivalent to t18-status.c:singlestatus2 */
void test_status_worktree__single_nonexistent_file_empty_repo(void)
{
	int error;
	unsigned int status_flags;
	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");

	error = git_status_file(&status_flags, repo, "nonexistent");
	cl_git_fail(error);
	cl_assert(error == GIT_ENOTFOUND);
}

/* this test is equivalent to t18-status.c:singlestatus3 */
void test_status_worktree__single_file_empty_repo(void)
{
	unsigned int status_flags;
	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");

	cl_git_mkfile("empty_standard_repo/new_file", "new_file\n");

	cl_git_pass(git_status_file(&status_flags, repo, "new_file"));
	cl_assert(status_flags == GIT_STATUS_WT_NEW);
}

/* this test is equivalent to t18-status.c:singlestatus4 */
void test_status_worktree__single_folder(void)
{
	int error;
	unsigned int status_flags;
	git_repository *repo = cl_git_sandbox_init("status");

	error = git_status_file(&status_flags, repo, "subdir");
	cl_git_fail(error);
333
	cl_assert(error != GIT_ENOTFOUND);
334 335
}

Russell Belfer committed
336

337 338 339
void test_status_worktree__ignores(void)
{
	int i, ignored;
340
	git_repository *repo = cl_git_sandbox_init("status");
341 342

	for (i = 0; i < (int)entry_count0; i++) {
343
		cl_git_pass(
344
			git_status_should_ignore(&ignored, repo, entry_paths0[i])
345
		);
346
		cl_assert(ignored == (entry_statuses0[i] == GIT_STATUS_IGNORED));
347 348
	}

349
	cl_git_pass(
350
		git_status_should_ignore(&ignored, repo, "nonexistent_file")
351
	);
352 353
	cl_assert(!ignored);

354
	cl_git_pass(
355
		git_status_should_ignore(&ignored, repo, "ignored_nonexistent_file")
356
	);
357 358
	cl_assert(ignored);
}
359 360 361

static int cb_status__check_592(const char *p, unsigned int s, void *payload)
{
362 363
	if (s != GIT_STATUS_WT_DELETED ||
		(payload != NULL && strcmp(p, (const char *)payload) != 0))
364 365 366 367 368 369 370 371
		return -1;

	return 0;
}

void test_status_worktree__issue_592(void)
{
	git_repository *repo;
372
	git_str path = GIT_STR_INIT;
373 374

	repo = cl_git_sandbox_init("issue_592");
375 376
	cl_git_pass(git_str_joinpath(&path, git_repository_workdir(repo), "l.txt"));
	cl_git_pass(p_unlink(git_str_cstr(&path)));
377
	cl_assert(!git_fs_path_exists("issue_592/l.txt"));
378 379 380

	cl_git_pass(git_status_foreach(repo, cb_status__check_592, "l.txt"));

381
	git_str_dispose(&path);
382 383 384 385 386
}

void test_status_worktree__issue_592_2(void)
{
	git_repository *repo;
387
	git_str path = GIT_STR_INIT;
388 389

	repo = cl_git_sandbox_init("issue_592");
390 391
	cl_git_pass(git_str_joinpath(&path, git_repository_workdir(repo), "c/a.txt"));
	cl_git_pass(p_unlink(git_str_cstr(&path)));
392
	cl_assert(!git_fs_path_exists("issue_592/c/a.txt"));
393 394 395

	cl_git_pass(git_status_foreach(repo, cb_status__check_592, "c/a.txt"));

396
	git_str_dispose(&path);
397 398 399 400 401
}

void test_status_worktree__issue_592_3(void)
{
	git_repository *repo;
402
	git_str path = GIT_STR_INIT;
403 404 405

	repo = cl_git_sandbox_init("issue_592");

406 407
	cl_git_pass(git_str_joinpath(&path, git_repository_workdir(repo), "c"));
	cl_git_pass(git_futils_rmdir_r(git_str_cstr(&path), NULL, GIT_RMDIR_REMOVE_FILES));
408
	cl_assert(!git_fs_path_exists("issue_592/c/a.txt"));
409 410 411

	cl_git_pass(git_status_foreach(repo, cb_status__check_592, "c/a.txt"));

412
	git_str_dispose(&path);
413 414 415 416 417
}

void test_status_worktree__issue_592_4(void)
{
	git_repository *repo;
418
	git_str path = GIT_STR_INIT;
419 420 421

	repo = cl_git_sandbox_init("issue_592");

422 423
	cl_git_pass(git_str_joinpath(&path, git_repository_workdir(repo), "t/b.txt"));
	cl_git_pass(p_unlink(git_str_cstr(&path)));
424 425 426

	cl_git_pass(git_status_foreach(repo, cb_status__check_592, "t/b.txt"));

427
	git_str_dispose(&path);
428 429 430 431 432
}

void test_status_worktree__issue_592_5(void)
{
	git_repository *repo;
433
	git_str path = GIT_STR_INIT;
434 435 436

	repo = cl_git_sandbox_init("issue_592");

437 438 439
	cl_git_pass(git_str_joinpath(&path, git_repository_workdir(repo), "t"));
	cl_git_pass(git_futils_rmdir_r(git_str_cstr(&path), NULL, GIT_RMDIR_REMOVE_FILES));
	cl_git_pass(p_mkdir(git_str_cstr(&path), 0777));
440 441 442

	cl_git_pass(git_status_foreach(repo, cb_status__check_592, NULL));

443
	git_str_dispose(&path);
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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
void test_status_worktree__issue_592_ignores_0(void)
{
	int count = 0;
	status_entry_single st;
	git_repository *repo = cl_git_sandbox_init("issue_592");

	cl_git_pass(git_status_foreach(repo, cb_status__count, &count));
	cl_assert_equal_i(0, count);

	cl_git_rewritefile("issue_592/.gitignore",
		".gitignore\n*.txt\nc/\n[tT]*/\n");

	cl_git_pass(git_status_foreach(repo, cb_status__count, &count));
	cl_assert_equal_i(1, count);

	/* This is a situation where the behavior of libgit2 is
	 * different from core git.  Core git will show ignored.txt
	 * in the list of ignored files, even though the directory
	 * "t" is ignored and the file is untracked because we have
	 * the explicit "*.txt" ignore rule.  Libgit2 just excludes
	 * all untracked files that are contained within ignored
	 * directories without explicitly listing them.
	 */
	cl_git_rewritefile("issue_592/t/ignored.txt", "ping");

	memset(&st, 0, sizeof(st));
	cl_git_pass(git_status_foreach(repo, cb_status__single, &st));
	cl_assert_equal_i(1, st.count);
	cl_assert(st.status == GIT_STATUS_IGNORED);

	cl_git_rewritefile("issue_592/c/ignored_by_dir", "ping");

	memset(&st, 0, sizeof(st));
	cl_git_pass(git_status_foreach(repo, cb_status__single, &st));
	cl_assert_equal_i(1, st.count);
	cl_assert(st.status == GIT_STATUS_IGNORED);

	cl_git_rewritefile("issue_592/t/ignored_by_dir_pattern", "ping");

	memset(&st, 0, sizeof(st));
	cl_git_pass(git_status_foreach(repo, cb_status__single, &st));
	cl_assert_equal_i(1, st.count);
	cl_assert(st.status == GIT_STATUS_IGNORED);
}

void test_status_worktree__issue_592_ignored_dirs_with_tracked_content(void)
{
	int count = 0;
	git_repository *repo = cl_git_sandbox_init("issue_592b");

	cl_git_pass(git_status_foreach(repo, cb_status__count, &count));
	cl_assert_equal_i(1, count);

	/* if we are really mimicking core git, then only ignored1.txt
	 * at the top level will show up in the ignores list here.
	 * everything else will be unmodified or skipped completely.
	 */
}

Vicent Marti committed
505
void test_status_worktree__conflict_with_diff3(void)
506
{
Vicent Marti committed
507
	git_repository *repo = cl_git_sandbox_init("status");
508
	git_index *index;
Vicent Marti committed
509 510
	unsigned int status;
	git_index_entry ancestor_entry, our_entry, their_entry;
511

Vicent Marti committed
512 513 514
	memset(&ancestor_entry, 0x0, sizeof(git_index_entry));
	memset(&our_entry, 0x0, sizeof(git_index_entry));
	memset(&their_entry, 0x0, sizeof(git_index_entry));
515

Vicent Marti committed
516
	ancestor_entry.path = "modified_file";
517
	ancestor_entry.mode = 0100644;
518
	git_oid__fromstr(&ancestor_entry.id,
Edward Thomson committed
519 520
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
521

Vicent Marti committed
522
	our_entry.path = "modified_file";
523
	our_entry.mode = 0100644;
524
	git_oid__fromstr(&our_entry.id,
Edward Thomson committed
525 526
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
527

Vicent Marti committed
528
	their_entry.path = "modified_file";
529
	their_entry.mode = 0100644;
530
	git_oid__fromstr(&their_entry.id,
Edward Thomson committed
531 532
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
533

Vicent Marti committed
534 535
	cl_git_pass(git_status_file(&status, repo, "modified_file"));
	cl_assert_equal_i(GIT_STATUS_WT_MODIFIED, status);
536 537

	cl_git_pass(git_repository_index(&index, repo));
Vicent Marti committed
538
	cl_git_pass(git_index_remove(index, "modified_file", 0));
539 540 541 542
	cl_git_pass(git_index_conflict_add(
		index, &ancestor_entry, &our_entry, &their_entry));
	cl_git_pass(git_index_write(index));
	git_index_free(index);
543

Vicent Marti committed
544
	cl_git_pass(git_status_file(&status, repo, "modified_file"));
545

546
	cl_assert_equal_i(GIT_STATUS_CONFLICTED, status);
547
}
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570

static const char *filemode_paths[] = {
	"exec_off",
	"exec_off2on_staged",
	"exec_off2on_workdir",
	"exec_off_untracked",
	"exec_on",
	"exec_on2off_staged",
	"exec_on2off_workdir",
	"exec_on_untracked",
};

static unsigned int filemode_statuses[] = {
	GIT_STATUS_CURRENT,
	GIT_STATUS_INDEX_MODIFIED,
	GIT_STATUS_WT_MODIFIED,
	GIT_STATUS_WT_NEW,
	GIT_STATUS_CURRENT,
	GIT_STATUS_INDEX_MODIFIED,
	GIT_STATUS_WT_MODIFIED,
	GIT_STATUS_WT_NEW
};

571
static const int filemode_count = 8;
572 573 574 575 576

void test_status_worktree__filemode_changes(void)
{
	git_repository *repo = cl_git_sandbox_init("filemodes");
	status_entry_counts counts;
577
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
578 579 580

	/* overwrite stored filemode with platform appropriate value */
	if (cl_is_chmod_supported())
581
		cl_repo_set_bool(repo, "core.filemode", true);
582
	else {
583
		int i;
584 585

		cl_repo_set_bool(repo, "core.filemode", false);
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609

		/* won't trust filesystem mode diffs, so these will appear unchanged */
		for (i = 0; i < filemode_count; ++i)
			if (filemode_statuses[i] == GIT_STATUS_WT_MODIFIED)
				filemode_statuses[i] = GIT_STATUS_CURRENT;
	}

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_INCLUDE_IGNORED |
		GIT_STATUS_OPT_INCLUDE_UNMODIFIED;

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = filemode_count;
	counts.expected_paths = filemode_paths;
	counts.expected_statuses = filemode_statuses;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
	);

	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}
610

611 612 613 614 615
void test_status_worktree__filemode_non755(void)
{
	git_repository *repo = cl_git_sandbox_init("filemodes");
	status_entry_counts counts;
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
616 617
	git_str executable_path = GIT_STR_INIT;
	git_str nonexecutable_path = GIT_STR_INIT;
618 619 620 621 622 623 624 625

	if (!cl_is_chmod_supported())
		return;

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_INCLUDE_IGNORED |
		GIT_STATUS_OPT_INCLUDE_UNMODIFIED;

626 627 628
	git_str_joinpath(&executable_path, git_repository_workdir(repo), "exec_on");
	cl_must_pass(p_chmod(git_str_cstr(&executable_path), 0744));
	git_str_dispose(&executable_path);
629

630
	git_str_joinpath(&nonexecutable_path, git_repository_workdir(repo), "exec_off");
631

632 633
	cl_must_pass(p_chmod(git_str_cstr(&nonexecutable_path), 0655));
	git_str_dispose(&nonexecutable_path);
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = filemode_count;
	counts.expected_paths = filemode_paths;
	counts.expected_statuses = filemode_statuses;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts)
	);

	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}


650 651 652 653 654 655 656 657 658
static int cb_status__interrupt(const char *p, unsigned int s, void *payload)
{
	volatile int *count = (int *)payload;

	GIT_UNUSED(p);
	GIT_UNUSED(s);

	(*count)++;

659
	return (*count == 8) ? -111 : 0;
660 661 662 663 664 665 666 667
}

void test_status_worktree__interruptable_foreach(void)
{
	int count = 0;
	git_repository *repo = cl_git_sandbox_init("status");

	cl_assert_equal_i(
668
		-111, git_status_foreach(repo, cb_status__interrupt, &count)
669 670 671 672
	);

	cl_assert_equal_i(8, count);
}
673

674 675 676 677 678
void test_status_worktree__line_endings_dont_count_as_changes_with_autocrlf(void)
{
	git_repository *repo = cl_git_sandbox_init("status");
	unsigned int status;

679
	cl_repo_set_bool(repo, "core.autocrlf", true);
680 681 682 683 684

	cl_git_rewritefile("status/current_file", "current_file\r\n");

	cl_git_pass(git_status_file(&status, repo, "current_file"));

685 686 687 688 689
	/* stat data on file should no longer match stat cache, even though
	 * file diff will be empty because of line-ending conversion - matches
	 * the Git command-line behavior here.
	 */
	cl_assert_equal_i(GIT_STATUS_WT_MODIFIED, status);
690
}
691

692 693 694 695 696
void test_status_worktree__line_endings_dont_count_as_changes_with_autocrlf_issue_1397(void)
{
	git_repository *repo = cl_git_sandbox_init("issue_1397");
	unsigned int status;

Russell Belfer committed
697
	cl_repo_set_bool(repo, "core.autocrlf", true);
698 699 700 701 702 703

	cl_git_pass(git_status_file(&status, repo, "crlf_file.txt"));

	cl_assert_equal_i(GIT_STATUS_CURRENT, status);
}

704 705 706 707 708 709 710 711 712 713 714
void test_status_worktree__conflicted_item(void)
{
	git_repository *repo = cl_git_sandbox_init("status");
	git_index *index;
	unsigned int status;
	git_index_entry ancestor_entry, our_entry, their_entry;

	memset(&ancestor_entry, 0x0, sizeof(git_index_entry));
	memset(&our_entry, 0x0, sizeof(git_index_entry));
	memset(&their_entry, 0x0, sizeof(git_index_entry));

715
	ancestor_entry.mode = 0100644;
716
	ancestor_entry.path = "modified_file";
717
	git_oid__fromstr(&ancestor_entry.id,
Edward Thomson committed
718 719
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
720

721
	our_entry.mode = 0100644;
722
	our_entry.path = "modified_file";
723
	git_oid__fromstr(&our_entry.id,
Edward Thomson committed
724 725
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
726

727
	their_entry.mode = 0100644;
728
	their_entry.path = "modified_file";
729
	git_oid__fromstr(&their_entry.id,
Edward Thomson committed
730 731
		"452e4244b5d083ddf0460acf1ecc74db9dcfa11a",
		GIT_OID_SHA1);
732 733 734 735 736 737 738 739 740

	cl_git_pass(git_status_file(&status, repo, "modified_file"));
	cl_assert_equal_i(GIT_STATUS_WT_MODIFIED, status);

	cl_git_pass(git_repository_index(&index, repo));
	cl_git_pass(git_index_conflict_add(index, &ancestor_entry,
		&our_entry, &their_entry));

	cl_git_pass(git_status_file(&status, repo, "modified_file"));
741
	cl_assert_equal_i(GIT_STATUS_CONFLICTED, status);
742 743 744 745

	git_index_free(index);
}

746 747 748 749
void test_status_worktree__conflict_has_no_oid(void)
{
	git_repository *repo = cl_git_sandbox_init("status");
	git_index *index;
750
	git_index_entry entry = {{0}};
751 752
	git_status_list *statuslist;
	const git_status_entry *status;
753
	git_oid zero_id = GIT_OID_SHA1_ZERO;
754 755 756

	entry.mode = 0100644;
	entry.path = "modified_file";
757
	git_oid__fromstr(&entry.id, "452e4244b5d083ddf0460acf1ecc74db9dcfa11a", GIT_OID_SHA1);
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791

	cl_git_pass(git_repository_index(&index, repo));
	cl_git_pass(git_index_conflict_add(index, &entry, &entry, &entry));

	git_status_list_new(&statuslist, repo, NULL);

	cl_assert_equal_i(16, git_status_list_entrycount(statuslist));

	status = git_status_byindex(statuslist, 2);

	cl_assert_equal_i(GIT_STATUS_CONFLICTED, status->status);
	cl_assert_equal_s("modified_file", status->head_to_index->old_file.path);
	cl_assert(!git_oid_equal(&zero_id, &status->head_to_index->old_file.id));
	cl_assert(0 != status->head_to_index->old_file.mode);
	cl_assert_equal_s("modified_file", status->head_to_index->new_file.path);
	cl_assert_equal_oid(&zero_id, &status->head_to_index->new_file.id);
	cl_assert_equal_i(0, status->head_to_index->new_file.mode);
	cl_assert_equal_i(0, status->head_to_index->new_file.size);

	cl_assert_equal_s("modified_file", status->index_to_workdir->old_file.path);
	cl_assert_equal_oid(&zero_id, &status->index_to_workdir->old_file.id);
	cl_assert_equal_i(0, status->index_to_workdir->old_file.mode);
	cl_assert_equal_i(0, status->index_to_workdir->old_file.size);
	cl_assert_equal_s("modified_file", status->index_to_workdir->new_file.path);
	cl_assert(
		!git_oid_equal(&zero_id, &status->index_to_workdir->new_file.id) ||
		!(status->index_to_workdir->new_file.flags & GIT_DIFF_FLAG_VALID_ID));
	cl_assert(0 != status->index_to_workdir->new_file.mode);
	cl_assert(0 != status->index_to_workdir->new_file.size);

	git_index_free(index);
	git_status_list_free(statuslist);
}

792 793 794 795 796 797
static void assert_ignore_case(
	bool should_ignore_case,
	int expected_lower_cased_file_status,
	int expected_camel_cased_file_status)
{
	unsigned int status;
798
	git_str lower_case_path = GIT_STR_INIT, camel_case_path = GIT_STR_INIT;
799
	git_repository *repo, *repo2;
800

801 802 803
	repo = cl_git_sandbox_init("empty_standard_repo");
	cl_git_remove_placeholders(git_repository_path(repo), "dummy-marker.txt");

804
	cl_repo_set_bool(repo, "core.ignorecase", should_ignore_case);
805

806
	cl_git_pass(git_str_joinpath(&lower_case_path,
807 808
		git_repository_workdir(repo), "plop"));

809
	cl_git_mkfile(git_str_cstr(&lower_case_path), "");
810 811 812 813 814 815 816 817

	stage_and_commit(repo, "plop");

	cl_git_pass(git_repository_open(&repo2, "./empty_standard_repo"));

	cl_git_pass(git_status_file(&status, repo2, "plop"));
	cl_assert_equal_i(GIT_STATUS_CURRENT, status);

818
	cl_git_pass(git_str_joinpath(&camel_case_path,
819 820
		git_repository_workdir(repo), "Plop"));

821
	cl_git_pass(p_rename(git_str_cstr(&lower_case_path), git_str_cstr(&camel_case_path)));
822 823 824 825 826 827 828 829

	cl_git_pass(git_status_file(&status, repo2, "plop"));
	cl_assert_equal_i(expected_lower_cased_file_status, status);

	cl_git_pass(git_status_file(&status, repo2, "Plop"));
	cl_assert_equal_i(expected_camel_cased_file_status, status);

	git_repository_free(repo2);
830 831
	git_str_dispose(&lower_case_path);
	git_str_dispose(&camel_case_path);
832 833
}

834
void test_status_worktree__file_status_honors_core_ignorecase_true(void)
835 836 837 838
{
	assert_ignore_case(true, GIT_STATUS_CURRENT, GIT_STATUS_CURRENT);
}

839
void test_status_worktree__file_status_honors_core_ignorecase_false(void)
840 841 842
{
	assert_ignore_case(false, GIT_STATUS_WT_DELETED, GIT_STATUS_WT_NEW);
}
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865

void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracked_files(void)
{
    git_repository *repo = cl_git_sandbox_init("status");
    unsigned int status;
    git_index *index;

    cl_repo_set_bool(repo, "core.ignorecase", false);

	repo = cl_git_sandbox_reopen();

    /* Actually returns GIT_STATUS_IGNORED on Windows */
    cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);

    cl_git_pass(git_repository_index(&index, repo));

    cl_git_pass(git_index_add_bypath(index, "new_file"));
    cl_git_pass(git_index_write(index));
    git_index_free(index);

    /* Actually returns GIT_STATUS_IGNORED on Windows */
    cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
}
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913

void test_status_worktree__simple_delete(void)
{
    git_repository *repo = cl_git_sandbox_init("renames");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	int count;

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH |
		GIT_STATUS_OPT_EXCLUDE_SUBMODULES |
		GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS;

	count = 0;
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__count, &count) );
	cl_assert_equal_i(0, count);

	cl_must_pass(p_unlink("renames/untimely.txt"));

	count = 0;
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__count, &count) );
	cl_assert_equal_i(1, count);
}

void test_status_worktree__simple_delete_indexed(void)
{
	git_repository *repo = cl_git_sandbox_init("renames");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	git_status_list *status;

	opts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
		GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH |
		GIT_STATUS_OPT_EXCLUDE_SUBMODULES |
		GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS;

	cl_git_pass(git_status_list_new(&status, repo, &opts));
	cl_assert_equal_sz(0, git_status_list_entrycount(status));
	git_status_list_free(status);

	cl_must_pass(p_unlink("renames/untimely.txt"));

	cl_git_pass(git_status_list_new(&status, repo, &opts));
	cl_assert_equal_sz(1, git_status_list_entrycount(status));
	cl_assert_equal_i(
		GIT_STATUS_WT_DELETED, git_status_byindex(status, 0)->status);
	git_status_list_free(status);
}
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936

static const char *icase_paths[] = { "B", "c", "g", "H" };
static unsigned int icase_statuses[] = {
	GIT_STATUS_WT_MODIFIED, GIT_STATUS_WT_DELETED,
	GIT_STATUS_WT_MODIFIED, GIT_STATUS_WT_DELETED,
};

static const char *case_paths[] = { "B", "H", "c", "g" };
static unsigned int case_statuses[] = {
	GIT_STATUS_WT_MODIFIED, GIT_STATUS_WT_DELETED,
	GIT_STATUS_WT_DELETED, GIT_STATUS_WT_MODIFIED,
};

void test_status_worktree__sorting_by_case(void)
{
	git_repository *repo = cl_git_sandbox_init("icase");
	git_index *index;
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	bool native_ignore_case;
	status_entry_counts counts;

	cl_git_pass(git_repository_index(&index, repo));
	native_ignore_case =
937
		(git_index_caps(index) & GIT_INDEX_CAPABILITY_IGNORE_CASE) != 0;
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
	git_index_free(index);

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = 0;
	counts.expected_paths = NULL;
	counts.expected_statuses = NULL;
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts));
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);

	cl_git_rewritefile("icase/B", "new stuff");
	cl_must_pass(p_unlink("icase/c"));
	cl_git_rewritefile("icase/g", "new stuff");
	cl_must_pass(p_unlink("icase/H"));

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = 4;
	if (native_ignore_case) {
		counts.expected_paths = icase_paths;
		counts.expected_statuses = icase_statuses;
	} else {
		counts.expected_paths = case_paths;
		counts.expected_statuses = case_statuses;
	}
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts));
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);

	opts.flags = GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = 4;
	counts.expected_paths = case_paths;
	counts.expected_statuses = case_statuses;
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts));
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);

	opts.flags = GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY;

	memset(&counts, 0, sizeof(counts));
	counts.expected_entry_count = 4;
	counts.expected_paths = icase_paths;
	counts.expected_statuses = icase_statuses;
	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts));
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}
994 995 996

void test_status_worktree__long_filenames(void)
{
997
	char path[260*4+1] = {0};
998 999 1000 1001 1002 1003 1004
	const char *expected_paths[] = {path};
	const unsigned int expected_statuses[] = {GIT_STATUS_WT_NEW};

	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	status_entry_counts counts = {0};

1005
	/* Create directory with amazingly long filename */
1006
	sprintf(path, "empty_standard_repo/%s", longname);
1007
	cl_git_pass(git_futils_mkdir_r(path, 0777));
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
	sprintf(path, "empty_standard_repo/%s/foo", longname);
	cl_git_mkfile(path, "dummy");

	sprintf(path, "%s/foo", longname);
	counts.expected_entry_count = 1;
	counts.expected_paths = expected_paths;
	counts.expected_statuses = expected_statuses;

	opts.show = GIT_STATUS_SHOW_WORKDIR_ONLY;
	opts.flags = GIT_STATUS_OPT_DEFAULTS;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts) );
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}

1026 1027 1028 1029 1030
/* The update stat cache tests mostly just mirror other tests and try
 * to make sure that updating the stat cache doesn't change the results
 * while reducing the amount of work that needs to be done
 */

1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
static void check_status0(git_status_list *status)
{
	size_t i, max_i = git_status_list_entrycount(status);
	cl_assert_equal_sz(entry_count0, max_i);
	for (i = 0; i < max_i; ++i) {
		const git_status_entry *entry = git_status_byindex(status, i);
		cl_assert_equal_i(entry_statuses0[i], entry->status);
	}
}

1041 1042 1043
void test_status_worktree__update_stat_cache_0(void)
{
	git_repository *repo = cl_git_sandbox_init("status");
1044 1045 1046
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	git_status_list *status;
	git_diff_perfdata perf = GIT_DIFF_PERFDATA_INIT;
1047
	git_index *index;
1048

1049
	opts.flags = GIT_STATUS_OPT_DEFAULTS;
1050

1051 1052 1053 1054 1055
	cl_git_pass(git_status_list_new(&status, repo, &opts));
	check_status0(status);
	cl_git_pass(git_status_list_get_perfdata(&perf, status));
	cl_assert_equal_sz(13 + 3, perf.stat_calls);
	cl_assert_equal_sz(5, perf.oid_calculations);
1056

1057
	git_status_list_free(status);
1058

1059 1060 1061 1062
	/* tick the index so we avoid recalculating racily-clean entries */
	cl_git_pass(git_repository_index__weakptr(&index, repo));
	tick_index(index);

1063 1064 1065 1066 1067 1068 1069
	opts.flags |= GIT_STATUS_OPT_UPDATE_INDEX;

	cl_git_pass(git_status_list_new(&status, repo, &opts));
	check_status0(status);
	cl_git_pass(git_status_list_get_perfdata(&perf, status));
	cl_assert_equal_sz(13 + 3, perf.stat_calls);
	cl_assert_equal_sz(5, perf.oid_calculations);
1070

1071
	git_status_list_free(status);
1072

1073
	opts.flags &= ~GIT_STATUS_OPT_UPDATE_INDEX;
1074

1075 1076
	/* tick again as the index updating from the previous diff might have reset the timestamp */
	tick_index(index);
1077 1078 1079 1080 1081
	cl_git_pass(git_status_list_new(&status, repo, &opts));
	check_status0(status);
	cl_git_pass(git_status_list_get_perfdata(&perf, status));
	cl_assert_equal_sz(13 + 3, perf.stat_calls);
	cl_assert_equal_sz(0, perf.oid_calculations);
1082

1083
	git_status_list_free(status);
1084
}
1085

1086
void test_status_worktree__unreadable(void)
1087
{
1088
#ifndef GIT_WIN32
1089
	const char *expected_paths[] = { "no_permission/foo" };
1090
	const unsigned int expected_statuses[] = {GIT_STATUS_WT_UNREADABLE};
1091 1092 1093 1094 1095

	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	status_entry_counts counts = {0};

1096 1097 1098
	if (geteuid() == 0)
		cl_skip();

1099
	/* Create directory with no read permission */
1100
	cl_git_pass(git_futils_mkdir_r("empty_standard_repo/no_permission", 0777));
Alan Rogers committed
1101 1102
	cl_git_mkfile("empty_standard_repo/no_permission/foo", "dummy");
	p_chmod("empty_standard_repo/no_permission", 0644);
1103 1104 1105 1106 1107 1108

	counts.expected_entry_count = 1;
	counts.expected_paths = expected_paths;
	counts.expected_statuses = expected_statuses;

	opts.show = GIT_STATUS_SHOW_WORKDIR_ONLY;
1109
	opts.flags = GIT_STATUS_OPT_DEFAULTS | GIT_STATUS_OPT_INCLUDE_UNREADABLE;
1110 1111 1112

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts) );
1113

1114
	/* Restore permissions so we can cleanup :) */
1115 1116
	p_chmod("empty_standard_repo/no_permission", 0777);

1117 1118 1119
	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
1120 1121
#else
	cl_skip();
1122
#endif
1123
}
1124

1125 1126
void test_status_worktree__unreadable_not_included(void)
{
1127
#ifndef GIT_WIN32
1128 1129 1130 1131 1132 1133 1134 1135
	const char *expected_paths[] = { "no_permission/" };
	const unsigned int expected_statuses[] = {GIT_STATUS_WT_NEW};

	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	status_entry_counts counts = {0};

	/* Create directory with no read permission */
1136
	cl_git_pass(git_futils_mkdir_r("empty_standard_repo/no_permission", 0777));
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
	cl_git_mkfile("empty_standard_repo/no_permission/foo", "dummy");
	p_chmod("empty_standard_repo/no_permission", 0644);

	counts.expected_entry_count = 1;
	counts.expected_paths = expected_paths;
	counts.expected_statuses = expected_statuses;

	opts.show = GIT_STATUS_SHOW_WORKDIR_ONLY;
	opts.flags = (GIT_STATUS_OPT_INCLUDE_IGNORED | GIT_STATUS_OPT_INCLUDE_UNTRACKED);

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts) );

	/* Restore permissions so we can cleanup :) */
	p_chmod("empty_standard_repo/no_permission", 0777);

	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
1156 1157
#else
	cl_skip();
1158
#endif
1159 1160
}

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
void test_status_worktree__unreadable_as_untracked(void)
{
	const char *expected_paths[] = { "no_permission/foo" };
	const unsigned int expected_statuses[] = {GIT_STATUS_WT_NEW};

	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	status_entry_counts counts = {0};

	/* Create directory with no read permission */
1171
	cl_git_pass(git_futils_mkdir_r("empty_standard_repo/no_permission", 0777));
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
	cl_git_mkfile("empty_standard_repo/no_permission/foo", "dummy");
	p_chmod("empty_standard_repo/no_permission", 0644);

	counts.expected_entry_count = 1;
	counts.expected_paths = expected_paths;
	counts.expected_statuses = expected_statuses;

	opts.show = GIT_STATUS_SHOW_WORKDIR_ONLY;
	opts.flags = GIT_STATUS_OPT_DEFAULTS |
		GIT_STATUS_OPT_INCLUDE_UNREADABLE |
		GIT_STATUS_OPT_INCLUDE_UNREADABLE_AS_UNTRACKED;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts) );

	/* Restore permissions so we can cleanup :) */
	p_chmod("empty_standard_repo/no_permission", 0777);

	cl_assert_equal_i(counts.expected_entry_count, counts.entry_count);
	cl_assert_equal_i(0, counts.wrong_status_flags_count);
	cl_assert_equal_i(0, counts.wrong_sorted_path);
}

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
void test_status_worktree__update_index_with_symlink_doesnt_change_mode(void)
{
	git_repository *repo = cl_git_sandbox_init("testrepo");
	git_reference *head;
	git_object *head_object;
	git_index *index;
	const git_index_entry *idx_entry;
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	status_entry_counts counts = {0};
	const char *expected_paths[] = { "README" };
	const unsigned int expected_statuses[] = {GIT_STATUS_WT_NEW};

	opts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
	opts.flags = GIT_STATUS_OPT_DEFAULTS | GIT_STATUS_OPT_UPDATE_INDEX;

	cl_git_pass(git_repository_head(&head, repo));
1211
	cl_git_pass(git_reference_peel(&head_object, head, GIT_OBJECT_COMMIT));
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242

	cl_git_pass(git_reset(repo, head_object, GIT_RESET_HARD, NULL));

	cl_git_rewritefile("testrepo/README", "This was rewritten.");

	/* this status rewrites the index because we have changed the
	 * contents of a tracked file
	 */
	counts.expected_entry_count = 1;
	counts.expected_paths = expected_paths;
	counts.expected_statuses = expected_statuses;

	cl_git_pass(
		git_status_foreach_ext(repo, &opts, cb_status__normal, &counts));
	cl_assert_equal_i(1, counts.entry_count);

	/* now ensure that the status's rewrite of the index did not screw
	 * up the mode of the symlink `link_to_new.txt`, particularly
	 * on platforms that don't support symlinks
	 */
	cl_git_pass(git_repository_index(&index, repo));
	cl_git_pass(git_index_read(index, true));

	cl_assert(idx_entry = git_index_get_bypath(index, "link_to_new.txt", 0));
	cl_assert(S_ISLNK(idx_entry->mode));

	git_index_free(index);
	git_object_free(head_object);
	git_reference_free(head);
}

1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
static const char *testrepo2_subdir_paths[] = {
		"subdir/README",
		"subdir/new.txt",
		"subdir/subdir2/README",
		"subdir/subdir2/new.txt",
};

static const char *testrepo2_subdir_paths_icase[] = {
		"subdir/new.txt",
		"subdir/README",
		"subdir/subdir2/new.txt",
		"subdir/subdir2/README"
};

void test_status_worktree__with_directory_in_pathlist(void)
{
	git_repository *repo = cl_git_sandbox_init("testrepo2");
	git_index *index;
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	git_status_list *statuslist;
	const git_status_entry *status;
	size_t i, entrycount;
	bool native_ignore_case;
1266
	char *subdir_path = "subdir";
1267 1268 1269

	cl_git_pass(git_repository_index(&index, repo));
	native_ignore_case =
1270
			(git_index_caps(index) & GIT_INDEX_CAPABILITY_IGNORE_CASE) != 0;
1271 1272
	git_index_free(index);

1273
	opts.pathspec.strings = &subdir_path;
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
	opts.pathspec.count = 1;
	opts.flags =
			GIT_STATUS_OPT_DEFAULTS |
			GIT_STATUS_OPT_INCLUDE_UNMODIFIED |
			GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH;

	opts.show = GIT_STATUS_SHOW_WORKDIR_ONLY;
	git_status_list_new(&statuslist, repo, &opts);

	entrycount = git_status_list_entrycount(statuslist);
	cl_assert_equal_i(4, entrycount);

	for (i = 0; i < entrycount; i++) {
		status = git_status_byindex(statuslist, i);
		cl_assert_equal_i(0, status->status);
		cl_assert_equal_s(native_ignore_case ?
			testrepo2_subdir_paths_icase[i] :
			testrepo2_subdir_paths[i],
			status->index_to_workdir->old_file.path);
	}

1295 1296
	git_status_list_free(statuslist);

1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
	opts.show = GIT_STATUS_SHOW_INDEX_ONLY;
	git_status_list_new(&statuslist, repo, &opts);

	entrycount = git_status_list_entrycount(statuslist);
	cl_assert_equal_i(4, entrycount);

	for (i = 0; i < entrycount; i++) {
		status = git_status_byindex(statuslist, i);
		cl_assert_equal_i(0, status->status);
		cl_assert_equal_s(native_ignore_case ?
			testrepo2_subdir_paths_icase[i] :
			testrepo2_subdir_paths[i],
			status->head_to_index->old_file.path);
	}

1312 1313
	git_status_list_free(statuslist);

1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
	opts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
	git_status_list_new(&statuslist, repo, &opts);

	entrycount = git_status_list_entrycount(statuslist);
	cl_assert_equal_i(4, entrycount);

	for (i = 0; i < entrycount; i++) {
		status = git_status_byindex(statuslist, i);
		cl_assert_equal_i(0, status->status);
		cl_assert_equal_s(native_ignore_case ?
			testrepo2_subdir_paths_icase[i] :
			testrepo2_subdir_paths[i],
			status->index_to_workdir->old_file.path);
	}
1328 1329

	git_status_list_free(statuslist);
1330
}
joshaber committed
1331

1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
void test_status_worktree__at_head_parent(void)
{
	git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
	git_status_options opts = GIT_STATUS_OPTIONS_INIT;
	git_status_list *statuslist;
	git_tree *parent_tree;
	const git_status_entry *status;

	cl_git_mkfile("empty_standard_repo/file1", "ping");
	stage_and_commit(repo, "file1");

	cl_git_pass(git_repository_head_tree(&parent_tree, repo));

	cl_git_mkfile("empty_standard_repo/file2", "pong");
	stage_and_commit(repo, "file2");

	cl_git_rewritefile("empty_standard_repo/file2", "pyng");

	opts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
	opts.baseline = parent_tree;
	cl_git_pass(git_status_list_new(&statuslist, repo, &opts));

	cl_assert_equal_sz(1, git_status_list_entrycount(statuslist));
	status = git_status_byindex(statuslist, 0);
	cl_assert(status != NULL);
	cl_assert_equal_s("file2", status->index_to_workdir->old_file.path);
	cl_assert_equal_i(GIT_STATUS_WT_MODIFIED | GIT_STATUS_INDEX_NEW, status->status);

	git_tree_free(parent_tree);
	git_status_list_free(statuslist);
}