]> git.proxmox.com Git - libgit2.git/blame - tests/checkout/binaryunicode.c
New upstream version 1.4.3+dfsg.1
[libgit2.git] / tests / checkout / binaryunicode.c
CommitLineData
fcc48d1f
PK
1#include "clar_libgit2.h"
2#include "refs.h"
3#include "repo/repo_helpers.h"
4#include "path.h"
22a2d3d5 5#include "futils.h"
fcc48d1f
PK
6
7static git_repository *g_repo;
8
9void test_checkout_binaryunicode__initialize(void)
10{
11 g_repo = cl_git_sandbox_init("binaryunicode");
12}
13
14void test_checkout_binaryunicode__cleanup(void)
15{
16 cl_git_sandbox_cleanup();
17}
18
19static void execute_test(void)
20{
21 git_oid oid, check;
22 git_commit *commit;
23 git_tree *tree;
6affd71f 24 git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT;
fcc48d1f
PK
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"));
ac3d33df 39 cl_git_pass(git_odb_hashfile(&oid, "binaryunicode/lenna.jpg", GIT_OBJECT_BLOB));
0cee70eb 40 cl_assert_equal_oid(&oid, &check);
fcc48d1f
PK
41
42 /* Verify that the text file was checked out correctly */
43 cl_git_pass(git_oid_fromstr(&check, "965b223880dd4249e2c66a0cc0b4cffe1dc40f5a"));
ac3d33df 44 cl_git_pass(git_odb_hashfile(&oid, "binaryunicode/utf16_withbom_noeol_crlf.txt", GIT_OBJECT_BLOB));
0cee70eb 45 cl_assert_equal_oid(&oid, &check);
fcc48d1f
PK
46}
47
48void test_checkout_binaryunicode__noautocrlf(void)
49{
1323c6d1 50 cl_repo_set_bool(g_repo, "core.autocrlf", false);
fcc48d1f
PK
51 execute_test();
52}
53
54void test_checkout_binaryunicode__autocrlf(void)
55{
1323c6d1 56 cl_repo_set_bool(g_repo, "core.autocrlf", true);
fcc48d1f
PK
57 execute_test();
58}