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
21e0d297
Commit
21e0d297
authored
Oct 09, 2012
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #967 from arrbee/diff-submodule-tests-and-fixes
Diff submodule tests and fixes
parents
aa4437f6
5d1308f2
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
229 additions
and
40 deletions
+229
-40
include/git2/diff.h
+2
-1
include/git2/submodule.h
+9
-2
src/diff.c
+48
-11
src/diff_output.c
+36
-15
src/iterator.c
+12
-0
src/iterator.h
+8
-0
tests-clar/diff/diff_helpers.c
+27
-2
tests-clar/diff/diff_helpers.h
+4
-0
tests-clar/diff/tree.c
+9
-9
tests-clar/diff/workdir.c
+74
-0
No files found.
include/git2/diff.h
View file @
21e0d297
...
@@ -47,7 +47,8 @@ enum {
...
@@ -47,7 +47,8 @@ enum {
GIT_DIFF_INCLUDE_UNMODIFIED
=
(
1
<<
9
),
GIT_DIFF_INCLUDE_UNMODIFIED
=
(
1
<<
9
),
GIT_DIFF_RECURSE_UNTRACKED_DIRS
=
(
1
<<
10
),
GIT_DIFF_RECURSE_UNTRACKED_DIRS
=
(
1
<<
10
),
GIT_DIFF_DISABLE_PATHSPEC_MATCH
=
(
1
<<
11
),
GIT_DIFF_DISABLE_PATHSPEC_MATCH
=
(
1
<<
11
),
GIT_DIFF_DELTAS_ARE_ICASE
=
(
1
<<
12
)
GIT_DIFF_DELTAS_ARE_ICASE
=
(
1
<<
12
),
GIT_DIFF_INCLUDE_UNTRACKED_CONTENT
=
(
1
<<
13
),
};
};
/**
/**
...
...
include/git2/submodule.h
View file @
21e0d297
...
@@ -120,8 +120,15 @@ typedef enum {
...
@@ -120,8 +120,15 @@ typedef enum {
}
git_submodule_status_t
;
}
git_submodule_status_t
;
#define GIT_SUBMODULE_STATUS_IS_UNMODIFIED(S) \
#define GIT_SUBMODULE_STATUS_IS_UNMODIFIED(S) \
(((S) & ~(GIT_SUBMODULE_STATUS_IN_HEAD | GIT_SUBMODULE_STATUS_IN_INDEX | \
(((S) & ~(GIT_SUBMODULE_STATUS_IN_HEAD | \
GIT_SUBMODULE_STATUS_IN_CONFIG | GIT_SUBMODULE_STATUS_IN_WD)) == 0)
GIT_SUBMODULE_STATUS_IN_INDEX | \
GIT_SUBMODULE_STATUS_IN_CONFIG | \
GIT_SUBMODULE_STATUS_IN_WD)) == 0)
#define GIT_SUBMODULE_STATUS_IS_WD_DIRTY(S) \
(((S) & (GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED | \
GIT_SUBMODULE_STATUS_WD_WD_MODIFIED | \
GIT_SUBMODULE_STATUS_WD_UNTRACKED)) != 0)
/**
/**
* Lookup submodule information by name or path.
* Lookup submodule information by name or path.
...
...
src/diff.c
View file @
21e0d297
...
@@ -224,7 +224,10 @@ static int diff_delta__from_one(
...
@@ -224,7 +224,10 @@ static int diff_delta__from_one(
}
}
delta
->
old_file
.
flags
|=
GIT_DIFF_FILE_VALID_OID
;
delta
->
old_file
.
flags
|=
GIT_DIFF_FILE_VALID_OID
;
delta
->
new_file
.
flags
|=
GIT_DIFF_FILE_VALID_OID
;
if
(
delta
->
status
==
GIT_DELTA_DELETED
||
!
git_oid_iszero
(
&
delta
->
new_file
.
oid
))
delta
->
new_file
.
flags
|=
GIT_DIFF_FILE_VALID_OID
;
if
(
git_vector_insert
(
&
diff
->
deltas
,
delta
)
<
0
)
{
if
(
git_vector_insert
(
&
diff
->
deltas
,
delta
)
<
0
)
{
git__free
(
delta
);
git__free
(
delta
);
...
@@ -441,17 +444,28 @@ static int oid_for_workdir_item(
...
@@ -441,17 +444,28 @@ static int oid_for_workdir_item(
const
git_index_entry
*
item
,
const
git_index_entry
*
item
,
git_oid
*
oid
)
git_oid
*
oid
)
{
{
int
result
;
int
result
=
0
;
git_buf
full_path
=
GIT_BUF_INIT
;
git_buf
full_path
=
GIT_BUF_INIT
;
if
(
git_buf_joinpath
(
&
full_path
,
git_repository_workdir
(
repo
),
item
->
path
)
<
0
)
if
(
git_buf_joinpath
(
&
full_path
,
git_repository_workdir
(
repo
),
item
->
path
)
<
0
)
return
-
1
;
return
-
1
;
/* calculate OID for file if possible*/
/* calculate OID for file if possible
*/
if
(
S_ISGITLINK
(
item
->
mode
))
{
if
(
S_ISGITLINK
(
item
->
mode
))
{
/* Don't bother to figure out an oid for a submodule. We won't use it anyway. */
git_submodule
*
sm
;
memset
(
oid
,
0
,
sizeof
(
*
oid
));
const
git_oid
*
sm_oid
;
result
=
0
;
if
(
!
git_submodule_lookup
(
&
sm
,
repo
,
item
->
path
)
&&
(
sm_oid
=
git_submodule_wd_oid
(
sm
))
!=
NULL
)
git_oid_cpy
(
oid
,
sm_oid
);
else
{
/* if submodule lookup failed probably just in an intermediate
* state where some init hasn't happened, so ignore the error
*/
giterr_clear
();
memset
(
oid
,
0
,
sizeof
(
*
oid
));
}
}
else
if
(
S_ISLNK
(
item
->
mode
))
}
else
if
(
S_ISLNK
(
item
->
mode
))
result
=
git_odb__hashlink
(
oid
,
full_path
.
ptr
);
result
=
git_odb__hashlink
(
oid
,
full_path
.
ptr
);
else
if
(
!
git__is_sizet
(
item
->
file_size
))
{
else
if
(
!
git__is_sizet
(
item
->
file_size
))
{
...
@@ -570,6 +584,15 @@ static int maybe_modified(
...
@@ -570,6 +584,15 @@ static int maybe_modified(
return
-
1
;
return
-
1
;
status
=
GIT_SUBMODULE_STATUS_IS_UNMODIFIED
(
sm_status
)
status
=
GIT_SUBMODULE_STATUS_IS_UNMODIFIED
(
sm_status
)
?
GIT_DELTA_UNMODIFIED
:
GIT_DELTA_MODIFIED
;
?
GIT_DELTA_UNMODIFIED
:
GIT_DELTA_MODIFIED
;
/* grab OID while we are here */
if
(
git_oid_iszero
(
&
nitem
->
oid
))
{
const
git_oid
*
sm_oid
=
git_submodule_wd_oid
(
sub
);
if
(
sub
!=
NULL
)
{
git_oid_cpy
(
&
noid
,
sm_oid
);
use_noid
=
&
noid
;
}
}
}
}
}
}
}
}
...
@@ -669,7 +692,8 @@ static int diff_from_iterators(
...
@@ -669,7 +692,8 @@ static int diff_from_iterators(
/* check if contained in ignored parent directory */
/* check if contained in ignored parent directory */
if
(
git_buf_len
(
&
ignore_prefix
)
&&
if
(
git_buf_len
(
&
ignore_prefix
)
&&
ITERATOR_PREFIXCMP
(
*
old_iter
,
nitem
->
path
,
git_buf_cstr
(
&
ignore_prefix
))
==
0
)
ITERATOR_PREFIXCMP
(
*
old_iter
,
nitem
->
path
,
git_buf_cstr
(
&
ignore_prefix
))
==
0
)
delta_type
=
GIT_DELTA_IGNORED
;
delta_type
=
GIT_DELTA_IGNORED
;
if
(
S_ISDIR
(
nitem
->
mode
))
{
if
(
S_ISDIR
(
nitem
->
mode
))
{
...
@@ -677,10 +701,23 @@ static int diff_from_iterators(
...
@@ -677,10 +701,23 @@ static int diff_from_iterators(
* it or if the user requested the contents of untracked
* it or if the user requested the contents of untracked
* directories and it is not under an ignored directory.
* directories and it is not under an ignored directory.
*/
*/
if
((
oitem
&&
ITERATOR_PREFIXCMP
(
*
old_iter
,
oitem
->
path
,
nitem
->
path
)
==
0
)
||
bool
contains_tracked
=
(
oitem
&&
!
ITERATOR_PREFIXCMP
(
*
old_iter
,
oitem
->
path
,
nitem
->
path
));
bool
recurse_untracked
=
(
delta_type
==
GIT_DELTA_UNTRACKED
&&
(
delta_type
==
GIT_DELTA_UNTRACKED
&&
(
diff
->
opts
.
flags
&
GIT_DIFF_RECURSE_UNTRACKED_DIRS
)
!=
0
))
(
diff
->
opts
.
flags
&
GIT_DIFF_RECURSE_UNTRACKED_DIRS
)
!=
0
);
{
/* do not advance into directories that contain a .git file */
if
(
!
contains_tracked
&&
recurse_untracked
)
{
git_buf
*
full
=
NULL
;
if
(
git_iterator_current_workdir_path
(
new_iter
,
&
full
)
<
0
)
goto
fail
;
if
(
git_path_contains_dir
(
full
,
DOT_GIT
))
recurse_untracked
=
false
;
}
if
(
contains_tracked
||
recurse_untracked
)
{
/* if this directory is ignored, remember it as the
/* if this directory is ignored, remember it as the
* "ignore_prefix" for processing contained items
* "ignore_prefix" for processing contained items
*/
*/
...
...
src/diff_output.c
View file @
21e0d297
...
@@ -275,30 +275,34 @@ static int get_workdir_sm_content(
...
@@ -275,30 +275,34 @@ static int get_workdir_sm_content(
int
error
=
0
;
int
error
=
0
;
git_buf
content
=
GIT_BUF_INIT
;
git_buf
content
=
GIT_BUF_INIT
;
git_submodule
*
sm
=
NULL
;
git_submodule
*
sm
=
NULL
;
const
git_oid
*
sm_head
=
NULL
;
unsigned
int
sm_status
=
0
;
unsigned
int
sm_status
=
0
;
const
char
*
sm_status_text
=
""
;
const
char
*
sm_status_text
=
""
;
char
oidstr
[
GIT_OID_HEXSZ
+
1
];
char
oidstr
[
GIT_OID_HEXSZ
+
1
];
if
((
error
=
git_submodule_lookup
(
&
sm
,
ctxt
->
repo
,
file
->
path
))
<
0
)
{
if
((
error
=
git_submodule_lookup
(
&
sm
,
ctxt
->
repo
,
file
->
path
))
<
0
||
(
error
=
git_submodule_status
(
&
sm_status
,
sm
))
<
0
)
return
error
;
return
error
;
}
if
((
sm_head
=
git_submodule_head_oid
(
sm
))
==
NULL
)
{
/* update OID if we didn't have it previously */
giterr_set
(
GITERR_SUBMODULE
,
"Cannot find head of submodule '%s'"
,
file
->
path
);
if
((
file
->
flags
&
GIT_DIFF_FILE_VALID_OID
)
==
0
)
{
return
-
1
;
const
git_oid
*
sm_head
;
}
if
((
error
=
git_submodule_status
(
&
sm_status
,
sm
))
<
0
)
{
if
((
sm_head
=
git_submodule_wd_oid
(
sm
))
!=
NULL
||
return
-
1
;
(
sm_head
=
git_submodule_head_oid
(
sm
))
!=
NULL
)
{
git_oid_cpy
(
&
file
->
oid
,
sm_head
);
file
->
flags
|=
GIT_DIFF_FILE_VALID_OID
;
}
}
}
if
(
!
GIT_SUBMODULE_STATUS_IS_UNMODIFIED
(
sm_status
))
{
git_oid_fmt
(
oidstr
,
&
file
->
oid
);
oidstr
[
GIT_OID_HEXSZ
]
=
'\0'
;
if
(
GIT_SUBMODULE_STATUS_IS_WD_DIRTY
(
sm_status
))
sm_status_text
=
"-dirty"
;
sm_status_text
=
"-dirty"
;
}
git_oid_fmt
(
oidstr
,
sm_head
);
git_buf_printf
(
&
content
,
"Subproject commit %s%s
\n
"
,
oidstr
[
GIT_OID_HEXSZ
]
=
0
;
oidstr
,
sm_status_text
);
git_buf_printf
(
&
content
,
"Subproject commit %s%s
\n
"
,
oidstr
,
sm_status_text
);
map
->
data
=
git_buf_detach
(
&
content
);
map
->
data
=
git_buf_detach
(
&
content
);
map
->
len
=
strlen
(
map
->
data
);
map
->
len
=
strlen
(
map
->
data
);
...
@@ -318,9 +322,12 @@ static int get_workdir_content(
...
@@ -318,9 +322,12 @@ static int get_workdir_content(
git_buf
path
=
GIT_BUF_INIT
;
git_buf
path
=
GIT_BUF_INIT
;
const
char
*
wd
=
git_repository_workdir
(
ctxt
->
repo
);
const
char
*
wd
=
git_repository_workdir
(
ctxt
->
repo
);
if
(
file
->
mode
==
GIT_FILEMODE_COMMIT
)
if
(
S_ISGITLINK
(
file
->
mode
)
)
return
get_workdir_sm_content
(
ctxt
,
file
,
map
);
return
get_workdir_sm_content
(
ctxt
,
file
,
map
);
if
(
S_ISDIR
(
file
->
mode
))
return
0
;
if
(
git_buf_joinpath
(
&
path
,
wd
,
file
->
path
)
<
0
)
if
(
git_buf_joinpath
(
&
path
,
wd
,
file
->
path
)
<
0
)
return
-
1
;
return
-
1
;
...
@@ -535,6 +542,11 @@ static int diff_patch_load(
...
@@ -535,6 +542,11 @@ static int diff_patch_load(
break
;
break
;
case
GIT_DELTA_MODIFIED
:
case
GIT_DELTA_MODIFIED
:
break
;
break
;
case
GIT_DELTA_UNTRACKED
:
delta
->
old_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
if
((
ctxt
->
opts
->
flags
&
GIT_DIFF_INCLUDE_UNTRACKED_CONTENT
)
==
0
)
delta
->
new_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
break
;
default:
default:
delta
->
new_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
delta
->
new_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
delta
->
old_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
delta
->
old_file
.
flags
|=
GIT_DIFF_FILE_NO_DATA
;
...
@@ -1070,6 +1082,9 @@ static int print_patch_file(
...
@@ -1070,6 +1082,9 @@ static int print_patch_file(
GIT_UNUSED
(
progress
);
GIT_UNUSED
(
progress
);
if
(
S_ISDIR
(
delta
->
new_file
.
mode
))
return
0
;
if
(
!
oldpfx
)
if
(
!
oldpfx
)
oldpfx
=
DIFF_OLD_PREFIX_DEFAULT
;
oldpfx
=
DIFF_OLD_PREFIX_DEFAULT
;
...
@@ -1134,6 +1149,9 @@ static int print_patch_hunk(
...
@@ -1134,6 +1149,9 @@ static int print_patch_hunk(
{
{
diff_print_info
*
pi
=
data
;
diff_print_info
*
pi
=
data
;
if
(
S_ISDIR
(
d
->
new_file
.
mode
))
return
0
;
git_buf_clear
(
pi
->
buf
);
git_buf_clear
(
pi
->
buf
);
if
(
git_buf_printf
(
pi
->
buf
,
"%.*s"
,
(
int
)
header_len
,
header
)
<
0
)
if
(
git_buf_printf
(
pi
->
buf
,
"%.*s"
,
(
int
)
header_len
,
header
)
<
0
)
return
-
1
;
return
-
1
;
...
@@ -1158,6 +1176,9 @@ static int print_patch_line(
...
@@ -1158,6 +1176,9 @@ static int print_patch_line(
{
{
diff_print_info
*
pi
=
data
;
diff_print_info
*
pi
=
data
;
if
(
S_ISDIR
(
delta
->
new_file
.
mode
))
return
0
;
git_buf_clear
(
pi
->
buf
);
git_buf_clear
(
pi
->
buf
);
if
(
line_origin
==
GIT_DIFF_LINE_ADDITION
||
if
(
line_origin
==
GIT_DIFF_LINE_ADDITION
||
...
...
src/iterator.c
View file @
21e0d297
...
@@ -905,3 +905,15 @@ int git_iterator_cmp(
...
@@ -905,3 +905,15 @@ int git_iterator_cmp(
return
ITERATOR_PREFIXCMP
(
*
iter
,
entry
->
path
,
path_prefix
);
return
ITERATOR_PREFIXCMP
(
*
iter
,
entry
->
path
,
path_prefix
);
}
}
int
git_iterator_current_workdir_path
(
git_iterator
*
iter
,
git_buf
**
path
)
{
workdir_iterator
*
wi
=
(
workdir_iterator
*
)
iter
;
if
(
iter
->
type
!=
GIT_ITERATOR_WORKDIR
||
!
wi
->
entry
.
path
)
*
path
=
NULL
;
else
*
path
=
&
wi
->
path
;
return
0
;
}
src/iterator.h
View file @
21e0d297
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "common.h"
#include "common.h"
#include "git2/index.h"
#include "git2/index.h"
#include "vector.h"
#include "vector.h"
#include "buffer.h"
#define ITERATOR_PREFIXCMP(ITER, STR, PREFIX) (((ITER).ignore_case) ? \
#define ITERATOR_PREFIXCMP(ITER, STR, PREFIX) (((ITER).ignore_case) ? \
git__prefixcmp_icase((STR), (PREFIX)) : \
git__prefixcmp_icase((STR), (PREFIX)) : \
...
@@ -166,4 +167,11 @@ extern int git_iterator_advance_into_directory(
...
@@ -166,4 +167,11 @@ extern int git_iterator_advance_into_directory(
extern
int
git_iterator_cmp
(
extern
int
git_iterator_cmp
(
git_iterator
*
iter
,
const
char
*
path_prefix
);
git_iterator
*
iter
,
const
char
*
path_prefix
);
/**
* Get the full path of the current item from a workdir iterator.
* This will return NULL for a non-workdir iterator.
*/
extern
int
git_iterator_current_workdir_path
(
git_iterator
*
iter
,
git_buf
**
path
);
#endif
#endif
tests-clar/diff/diff_helpers.c
View file @
21e0d297
...
@@ -30,10 +30,13 @@ int diff_file_fn(
...
@@ -30,10 +30,13 @@ int diff_file_fn(
GIT_UNUSED
(
progress
);
GIT_UNUSED
(
progress
);
if
(
delta
->
binary
)
e
->
files
++
;
if
(
delta
->
binary
)
{
e
->
at_least_one_of_them_is_binary
=
true
;
e
->
at_least_one_of_them_is_binary
=
true
;
e
->
files_binary
++
;
}
e
->
files
++
;
switch
(
delta
->
status
)
{
switch
(
delta
->
status
)
{
case
GIT_DELTA_ADDED
:
e
->
file_adds
++
;
break
;
case
GIT_DELTA_ADDED
:
e
->
file_adds
++
;
break
;
case
GIT_DELTA_DELETED
:
e
->
file_dels
++
;
break
;
case
GIT_DELTA_DELETED
:
e
->
file_dels
++
;
break
;
...
@@ -180,3 +183,25 @@ abort:
...
@@ -180,3 +183,25 @@ abort:
giterr_clear
();
giterr_clear
();
return
GIT_EUSER
;
return
GIT_EUSER
;
}
}
static
int
diff_print_cb
(
void
*
cb_data
,
const
git_diff_delta
*
delta
,
const
git_diff_range
*
range
,
char
line_origin
,
/**< GIT_DIFF_LINE_... value from above */
const
char
*
content
,
size_t
content_len
)
{
GIT_UNUSED
(
cb_data
);
GIT_UNUSED
(
delta
);
GIT_UNUSED
(
range
);
GIT_UNUSED
(
line_origin
);
GIT_UNUSED
(
content_len
);
fputs
(
content
,
(
FILE
*
)
cb_data
);
return
0
;
}
void
diff_print
(
FILE
*
fp
,
git_diff_list
*
diff
)
{
cl_git_pass
(
git_diff_print_patch
(
diff
,
fp
?
fp
:
stderr
,
diff_print_cb
));
}
tests-clar/diff/diff_helpers.h
View file @
21e0d297
...
@@ -6,6 +6,8 @@ extern git_tree *resolve_commit_oid_to_tree(
...
@@ -6,6 +6,8 @@ extern git_tree *resolve_commit_oid_to_tree(
typedef
struct
{
typedef
struct
{
int
files
;
int
files
;
int
files_binary
;
int
file_adds
;
int
file_adds
;
int
file_dels
;
int
file_dels
;
int
file_mods
;
int
file_mods
;
...
@@ -51,3 +53,5 @@ extern int diff_foreach_via_iterator(
...
@@ -51,3 +53,5 @@ extern int diff_foreach_via_iterator(
git_diff_file_fn
file_cb
,
git_diff_file_fn
file_cb
,
git_diff_hunk_fn
hunk_cb
,
git_diff_hunk_fn
hunk_cb
,
git_diff_data_fn
line_cb
);
git_diff_data_fn
line_cb
);
extern
void
diff_print
(
FILE
*
fp
,
git_diff_list
*
diff
);
tests-clar/diff/tree.c
View file @
21e0d297
...
@@ -113,16 +113,16 @@ void test_diff_tree__options(void)
...
@@ -113,16 +113,16 @@ void test_diff_tree__options(void)
*/
*/
diff_expects
test_expects
[]
=
{
diff_expects
test_expects
[]
=
{
/* a vs b tests */
/* a vs b tests */
{
5
,
3
,
0
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
51
,
2
,
46
,
3
},
{
5
,
0
,
3
,
0
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
51
,
2
,
46
,
3
},
{
5
,
3
,
0
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
53
,
4
,
46
,
3
},
{
5
,
0
,
3
,
0
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
53
,
4
,
46
,
3
},
{
5
,
0
,
3
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
52
,
3
,
3
,
46
},
{
5
,
0
,
0
,
3
,
2
,
0
,
0
,
0
,
4
,
0
,
0
,
52
,
3
,
3
,
46
},
{
5
,
3
,
0
,
2
,
0
,
0
,
0
,
5
,
0
,
0
,
54
,
3
,
47
,
4
},
{
5
,
0
,
3
,
0
,
2
,
0
,
0
,
0
,
5
,
0
,
0
,
54
,
3
,
47
,
4
},
/* c vs d tests */
/* c vs d tests */
{
1
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
22
,
9
,
10
,
3
},
{
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
22
,
9
,
10
,
3
},
{
1
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
19
,
12
,
7
,
0
},
{
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
19
,
12
,
7
,
0
},
{
1
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
20
,
11
,
8
,
1
},
{
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
20
,
11
,
8
,
1
},
{
1
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
20
,
11
,
8
,
1
},
{
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
20
,
11
,
8
,
1
},
{
1
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
18
,
11
,
0
,
7
},
{
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
,
0
,
0
,
18
,
11
,
0
,
7
},
{
0
},
{
0
},
};
};
diff_expects
*
expected
;
diff_expects
*
expected
;
...
...
tests-clar/diff/workdir.c
View file @
21e0d297
...
@@ -744,3 +744,77 @@ void test_diff_workdir__larger_hunks(void)
...
@@ -744,3 +744,77 @@ void test_diff_workdir__larger_hunks(void)
git_tree_free
(
a
);
git_tree_free
(
a
);
git_tree_free
(
b
);
git_tree_free
(
b
);
}
}
/* Set up a test that exercises this code. The easiest test using existing
* test data is probably to create a sandbox of submod2 and then run a
* git_diff_workdir_to_tree against tree
* 873585b94bdeabccea991ea5e3ec1a277895b698. As for what you should actually
* test, you can start by just checking that the number of lines of diff
* content matches the actual output of git diff. That will at least
* demonstrate that the submodule content is being used to generate somewhat
* comparable outputs. It is a test that would fail without this code and
* will succeed with it.
*/
#include "../submodule/submodule_helpers.h"
void
test_diff_workdir__submodules
(
void
)
{
const
char
*
a_commit
=
"873585b94bdeabccea991ea5e3ec1a277895b698"
;
git_tree
*
a
;
git_diff_options
opts
=
{
0
};
git_diff_list
*
diff
=
NULL
;
diff_expects
exp
;
g_repo
=
cl_git_sandbox_init
(
"submod2"
);
cl_fixture_sandbox
(
"submod2_target"
);
p_rename
(
"submod2_target/.gitted"
,
"submod2_target/.git"
);
rewrite_gitmodules
(
git_repository_workdir
(
g_repo
));
p_rename
(
"submod2/not_submodule/.gitted"
,
"submod2/not_submodule/.git"
);
cl_fixture_cleanup
(
"submod2_target"
);
a
=
resolve_commit_oid_to_tree
(
g_repo
,
a_commit
);
opts
.
flags
=
GIT_DIFF_INCLUDE_UNTRACKED
|
GIT_DIFF_RECURSE_UNTRACKED_DIRS
|
GIT_DIFF_INCLUDE_UNTRACKED_CONTENT
;
cl_git_pass
(
git_diff_workdir_to_tree
(
g_repo
,
&
opts
,
a
,
&
diff
));
/* diff_print(stderr, diff); */
/* essentially doing: git diff 873585b94bdeabccea991ea5e3ec1a277895b698 */
memset
(
&
exp
,
0
,
sizeof
(
exp
));
cl_git_pass
(
git_diff_foreach
(
diff
,
&
exp
,
diff_file_fn
,
diff_hunk_fn
,
diff_line_fn
));
/* the following differs from "git diff 873585" by one "untracked" file
* because the diff list includes the "not_submodule/" directory which
* is not displayed in the text diff.
*/
cl_assert_equal_i
(
10
,
exp
.
files
);
cl_assert_equal_i
(
0
,
exp
.
file_adds
);
cl_assert_equal_i
(
0
,
exp
.
file_dels
);
cl_assert_equal_i
(
1
,
exp
.
file_mods
);
cl_assert_equal_i
(
0
,
exp
.
file_ignored
);
cl_assert_equal_i
(
9
,
exp
.
file_untracked
);
/* the following numbers match "git diff 873585" exactly */
cl_assert_equal_i
(
9
,
exp
.
hunks
);
cl_assert_equal_i
(
33
,
exp
.
lines
);
cl_assert_equal_i
(
2
,
exp
.
line_ctxt
);
cl_assert_equal_i
(
30
,
exp
.
line_adds
);
cl_assert_equal_i
(
1
,
exp
.
line_dels
);
git_diff_list_free
(
diff
);
git_tree_free
(
a
);
}
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