]> git.proxmox.com Git - libgit2.git/blob - tests/checkout/binaryunicode.c
5ba79213a7064fa96dbd0bec71f3abb0a343c646
[libgit2.git] / tests / checkout / binaryunicode.c
1 #include "clar_libgit2.h"
2 #include "refs.h"
3 #include "repo/repo_helpers.h"
4 #include "path.h"
5 #include "fileops.h"
6
7 static git_repository *g_repo;
8
9 void test_checkout_binaryunicode__initialize(void)
10 {
11 g_repo = cl_git_sandbox_init("binaryunicode");
12 }
13
14 void test_checkout_binaryunicode__cleanup(void)
15 {
16 cl_git_sandbox_cleanup();
17 }
18
19 static void execute_test(void)
20 {
21 git_oid oid, check;
22 git_commit *commit;
23 git_tree *tree;
24 git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT;
25
26 cl_git_pass(git_reference_name_to_id(&oid, g_repo, "refs/heads/branch1"));
27 cl_git_pass(git_commit_lookup(&commit, g_repo, &oid));
28 cl_git_pass(git_commit_tree(&tree, commit));
29
30 opts.checkout_strategy = GIT_CHECKOUT_SAFE;
31
32 cl_git_pass(git_checkout_tree(g_repo, (git_object *)tree, &opts));
33
34 git_tree_free(tree);
35 git_commit_free(commit);
36
37 /* Verify that the lenna.jpg file was checked out correctly */
38 cl_git_pass(git_oid_fromstr(&check, "8ab005d890fe53f65eda14b23672f60d9f4ec5a1"));
39 cl_git_pass(git_odb_hashfile(&oid, "binaryunicode/lenna.jpg", GIT_OBJECT_BLOB));
40 cl_assert_equal_oid(&oid, &check);
41
42 /* Verify that the text file was checked out correctly */
43 cl_git_pass(git_oid_fromstr(&check, "965b223880dd4249e2c66a0cc0b4cffe1dc40f5a"));
44 cl_git_pass(git_odb_hashfile(&oid, "binaryunicode/utf16_withbom_noeol_crlf.txt", GIT_OBJECT_BLOB));
45 cl_assert_equal_oid(&oid, &check);
46 }
47
48 void test_checkout_binaryunicode__noautocrlf(void)
49 {
50 cl_repo_set_bool(g_repo, "core.autocrlf", false);
51 execute_test();
52 }
53
54 void test_checkout_binaryunicode__autocrlf(void)
55 {
56 cl_repo_set_bool(g_repo, "core.autocrlf", true);
57 execute_test();
58 }