Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
2334e3d8
Commit
2334e3d8
authored
Apr 24, 2014
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test decomposed unicode renames work as expected
parent
87c9b741
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
37 deletions
+92
-37
tests/status/renames.c
+92
-37
No files found.
tests/status/renames.c
View file @
2334e3d8
...
...
@@ -20,40 +20,36 @@ void test_status_renames__cleanup(void)
cl_git_sandbox_cleanup
();
}
static
void
rename_file
(
git_repository
*
repo
,
const
char
*
oldname
,
const
char
*
newname
)
static
void
_rename_helper
(
git_repository
*
repo
,
const
char
*
from
,
const
char
*
to
,
const
char
*
extra
)
{
git_buf
oldpath
=
GIT_BUF_INIT
,
newpath
=
GIT_BUF_INIT
;
git_buf_joinpath
(
&
oldpath
,
git_repository_workdir
(
repo
),
oldname
);
git_buf_joinpath
(
&
newpath
,
git_repository_workdir
(
repo
),
newname
);
cl_git_pass
(
git_buf_joinpath
(
&
oldpath
,
git_repository_workdir
(
repo
),
from
));
cl_git_pass
(
git_buf_joinpath
(
&
newpath
,
git_repository_workdir
(
repo
),
to
));
cl_git_pass
(
p_rename
(
oldpath
.
ptr
,
newpath
.
ptr
));
git_buf_free
(
&
oldpath
);
git_buf_free
(
&
newpath
);
}
static
void
rename_and_edit_file
(
git_repository
*
repo
,
const
char
*
oldname
,
const
char
*
newname
)
{
git_buf
oldpath
=
GIT_BUF_INIT
,
newpath
=
GIT_BUF_INIT
;
git_buf_joinpath
(
&
oldpath
,
git_repository_workdir
(
repo
),
oldname
);
git_buf_joinpath
(
&
newpath
,
git_repository_workdir
(
repo
),
newname
);
cl_git_pass
(
p_rename
(
oldpath
.
ptr
,
newpath
.
ptr
));
cl_git_append2file
(
newpath
.
ptr
,
"Added at the end to keep similarity!"
);
if
(
extra
)
cl_git_append2file
(
newpath
.
ptr
,
extra
);
git_buf_free
(
&
oldpath
);
git_buf_free
(
&
newpath
);
}
#define rename_file(R,O,N) _rename_helper((R), (O), (N), NULL)
#define rename_and_edit_file(R,O,N) \
_rename_helper((R), (O), (N), "Added at the end to keep similarity!")
struct
status_entry
{
git_status_t
status
;
const
char
*
oldname
;
const
char
*
newname
;
};
static
void
test
_status
(
static
void
check
_status
(
git_status_list
*
status_list
,
struct
status_entry
*
expected_list
,
size_t
expected_len
)
...
...
@@ -61,9 +57,9 @@ static void test_status(
const
git_status_entry
*
actual
;
const
struct
status_entry
*
expected
;
const
char
*
oldname
,
*
newname
;
size_t
i
;
size_t
i
,
files_in_status
=
git_status_list_entrycount
(
status_list
)
;
cl_assert_equal_sz
(
expected_len
,
git_status_list_entrycount
(
status_list
)
);
cl_assert_equal_sz
(
expected_len
,
files_in_status
);
for
(
i
=
0
;
i
<
expected_len
;
i
++
)
{
actual
=
git_status_byindex
(
status_list
,
i
);
...
...
@@ -82,10 +78,12 @@ static void test_status(
else
cl_assert
(
expected
->
oldname
==
NULL
);
if
(
newname
)
cl_assert
(
git__strcmp
(
newname
,
expected
->
newname
)
==
0
);
else
cl_assert
(
expected
->
newname
==
NULL
);
if
(
actual
->
status
&
(
GIT_STATUS_INDEX_RENAMED
|
GIT_STATUS_WT_RENAMED
))
{
if
(
newname
)
cl_assert
(
git__strcmp
(
newname
,
expected
->
newname
)
==
0
);
else
cl_assert
(
expected
->
newname
==
NULL
);
}
}
}
...
...
@@ -109,7 +107,7 @@ void test_status_renames__head2index_one(void)
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
1
);
check
_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -149,7 +147,7 @@ void test_status_renames__head2index_two(void)
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
4
);
check
_status
(
statuslist
,
expected
,
4
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -178,7 +176,7 @@ void test_status_renames__head2index_no_rename_from_rewrite(void)
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
2
);
check
_status
(
statuslist
,
expected
,
2
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -208,7 +206,7 @@ void test_status_renames__head2index_rename_from_rewrite(void)
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
2
);
check
_status
(
statuslist
,
expected
,
2
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -228,7 +226,7 @@ void test_status_renames__index2workdir_one(void)
rename_file
(
g_repo
,
"ikeepsix.txt"
,
"newname.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
1
);
check
_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
}
...
...
@@ -254,7 +252,7 @@ void test_status_renames__index2workdir_two(void)
rename_and_edit_file
(
g_repo
,
"untimely.txt"
,
"bbb.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
4
);
check
_status
(
statuslist
,
expected
,
4
);
git_status_list_free
(
statuslist
);
}
...
...
@@ -278,7 +276,7 @@ void test_status_renames__index2workdir_rename_from_rewrite(void)
rename_file
(
g_repo
,
"_temp_.txt"
,
"sixserving.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
2
);
check
_status
(
statuslist
,
expected
,
2
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -309,7 +307,7 @@ void test_status_renames__both_one(void)
rename_file
(
g_repo
,
"newname-index.txt"
,
"newname-workdir.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
1
);
check
_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -355,7 +353,7 @@ void test_status_renames__both_two(void)
rename_file
(
g_repo
,
"untimely-index.txt"
,
"untimely-both.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
4
);
check
_status
(
statuslist
,
expected
,
4
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -399,7 +397,7 @@ void test_status_renames__both_rename_from_rewrite(void)
rename_file
(
g_repo
,
"_temp_.txt"
,
"sixserving.txt"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
3
);
check
_status
(
statuslist
,
expected
,
3
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -440,7 +438,7 @@ void test_status_renames__rewrites_only_for_renames(void)
"This is enough content for the file to be rewritten.
\n
"
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
1
);
check
_status
(
statuslist
,
expected
,
1
);
git_status_list_free
(
statuslist
);
git_index_free
(
index
);
...
...
@@ -481,7 +479,7 @@ void test_status_renames__both_casechange_one(void)
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
(
index_caps
&
GIT_INDEXCAP_IGNORE_CASE
)
?
check
_status
(
statuslist
,
(
index_caps
&
GIT_INDEXCAP_IGNORE_CASE
)
?
expected_icase
:
expected_case
,
1
);
git_status_list_free
(
statuslist
);
...
...
@@ -548,7 +546,7 @@ void test_status_renames__both_casechange_two(void)
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
(
index_caps
&
GIT_INDEXCAP_IGNORE_CASE
)
?
check
_status
(
statuslist
,
(
index_caps
&
GIT_INDEXCAP_IGNORE_CASE
)
?
expected_icase
:
expected_case
,
4
);
git_status_list_free
(
statuslist
);
...
...
@@ -579,6 +577,63 @@ void test_status_renames__zero_byte_file_does_not_fail(void)
cl_git_mkfile
(
"renames/zerobyte.txt"
,
""
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
test
_status
(
statuslist
,
expected
,
2
);
check
_status
(
statuslist
,
expected
,
2
);
git_status_list_free
(
statuslist
);
}
#ifdef GIT_USE_ICONV
static
char
*
nfc
=
"
\xC3\x85\x73\x74\x72\xC3\xB6\x6D
"
;
static
char
*
nfd
=
"
\x41\xCC\x8A\x73\x74\x72\x6F\xCC\x88\x6D
"
;
void
test_status_renames__precomposed_unicode_rename
(
void
)
{
git_status_list
*
statuslist
;
git_status_options
opts
=
GIT_STATUS_OPTIONS_INIT
;
struct
status_entry
expected0
[]
=
{
{
GIT_STATUS_WT_NEW
,
nfd
,
NULL
},
{
GIT_STATUS_WT_DELETED
,
"sixserving.txt"
,
NULL
},
};
struct
status_entry
expected1
[]
=
{
{
GIT_STATUS_WT_RENAMED
,
"sixserving.txt"
,
nfd
},
};
struct
status_entry
expected2
[]
=
{
{
GIT_STATUS_WT_DELETED
,
"sixserving.txt"
,
NULL
},
{
GIT_STATUS_WT_NEW
,
nfc
,
NULL
},
};
struct
status_entry
expected3
[]
=
{
{
GIT_STATUS_WT_RENAMED
,
"sixserving.txt"
,
nfc
},
};
rename_file
(
g_repo
,
"sixserving.txt"
,
nfc
);
opts
.
flags
|=
GIT_STATUS_OPT_INCLUDE_UNTRACKED
;
cl_repo_set_bool
(
g_repo
,
"core.precomposeunicode"
,
false
);
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected0
,
ARRAY_SIZE
(
expected0
));
git_status_list_free
(
statuslist
);
opts
.
flags
|=
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR
;
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected1
,
ARRAY_SIZE
(
expected1
));
git_status_list_free
(
statuslist
);
cl_repo_set_bool
(
g_repo
,
"core.precomposeunicode"
,
true
);
opts
.
flags
&=
~
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR
;
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected2
,
ARRAY_SIZE
(
expected2
));
git_status_list_free
(
statuslist
);
opts
.
flags
|=
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR
;
cl_git_pass
(
git_status_list_new
(
&
statuslist
,
g_repo
,
&
opts
));
check_status
(
statuslist
,
expected3
,
ARRAY_SIZE
(
expected3
));
git_status_list_free
(
statuslist
);
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment