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
2e75e156
Commit
2e75e156
authored
Feb 07, 2011
by
Vicent Marti
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refs-handling-tests' of
https://github.com/nulltoken/libgit2
parents
e85c705f
1af8c748
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
4 deletions
+47
-4
tests/resources/testrepo.git/head-tracker
+1
-0
tests/t10-refs.c
+46
-4
No files found.
tests/resources/testrepo.git/head-tracker
0 → 100644
View file @
2e75e156
ref: HEAD
tests/t10-refs.c
View file @
2e75e156
...
...
@@ -60,6 +60,7 @@ BEGIN_TEST("readtag", non_existing_tag_reference_looking_up)
END_TEST
static
const
char
*
head_ref_name
=
"HEAD"
;
static
const
char
*
head_tracker_sym_ref_name
=
"head-tracker"
;
static
const
char
*
current_head_target
=
"refs/heads/master"
;
static
const
char
*
current_master_tip
=
"be3563ae3f795b2b4353bcce3a527ad0a4f7f644"
;
...
...
@@ -89,25 +90,65 @@ BEGIN_TEST("readsymref", symbolic_reference_looking_up)
git_repository_free
(
repo
);
END_TEST
BEGIN_TEST
(
"readsymref"
,
nested_symbolic_reference_looking_up
)
git_repository
*
repo
;
git_reference
*
reference
,
*
resolved_ref
;
git_object
*
object
;
git_oid
id
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
head_tracker_sym_ref_name
));
must_be_true
(
reference
->
type
==
GIT_REF_SYMBOLIC
);
must_be_true
(
reference
->
packed
==
0
);
must_be_true
(
strcmp
(
reference
->
name
,
head_tracker_sym_ref_name
)
==
0
);
must_pass
(
git_reference_resolve
(
&
resolved_ref
,
reference
));
must_be_true
(
resolved_ref
->
type
==
GIT_REF_OID
);
must_pass
(
git_repository_lookup
(
&
object
,
repo
,
git_reference_oid
(
resolved_ref
),
GIT_OBJ_ANY
));
must_be_true
(
object
!=
NULL
);
must_be_true
(
git_object_type
(
object
)
==
GIT_OBJ_COMMIT
);
git_oid_mkstr
(
&
id
,
current_master_tip
);
must_be_true
(
git_oid_cmp
(
&
id
,
git_object_id
(
object
))
==
0
);
git_repository_free
(
repo
);
END_TEST
BEGIN_TEST
(
"readsymref"
,
looking_up_head_then_master
)
git_repository
*
repo
;
git_reference
*
reference
;
git_reference
*
reference
,
*
resolved_ref
,
*
comp_base_ref
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
head_ref_name
));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
current_head_target
));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
head_tracker_sym_ref_name
));
must_pass
(
git_reference_resolve
(
&
resolved_ref
,
reference
));
comp_base_ref
=
resolved_ref
;
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
head_ref_name
));
must_pass
(
git_reference_resolve
(
&
resolved_ref
,
reference
));
must_pass
(
git_oid_cmp
(
git_reference_oid
(
comp_base_ref
),
git_reference_oid
(
resolved_ref
)));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
current_head_target
));
must_pass
(
git_reference_resolve
(
&
resolved_ref
,
reference
));
must_pass
(
git_oid_cmp
(
git_reference_oid
(
comp_base_ref
),
git_reference_oid
(
resolved_ref
)));
git_repository_free
(
repo
);
END_TEST
BEGIN_TEST
(
"readsymref"
,
looking_up_master_then_head
)
git_repository
*
repo
;
git_reference
*
reference
,
*
master_ref
;
git_reference
*
reference
,
*
master_ref
,
*
resolved_ref
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_lookup_ref
(
&
master_ref
,
repo
,
current_head_target
));
must_pass
(
git_repository_lookup_ref
(
&
reference
,
repo
,
head_ref_name
));
must_pass
(
git_reference_resolve
(
&
resolved_ref
,
reference
));
must_pass
(
git_oid_cmp
(
git_reference_oid
(
master_ref
),
git_reference_oid
(
resolved_ref
)));
git_repository_free
(
repo
);
END_TEST
...
...
@@ -154,6 +195,7 @@ git_testsuite *libgit2_suite_refs(void)
ADD_TEST
(
suite
,
"readtag"
,
loose_tag_reference_looking_up
);
ADD_TEST
(
suite
,
"readtag"
,
non_existing_tag_reference_looking_up
);
ADD_TEST
(
suite
,
"readsymref"
,
symbolic_reference_looking_up
);
ADD_TEST
(
suite
,
"readsymref"
,
nested_symbolic_reference_looking_up
);
ADD_TEST
(
suite
,
"readsymref"
,
looking_up_head_then_master
);
ADD_TEST
(
suite
,
"readsymref"
,
looking_up_master_then_head
);
ADD_TEST
(
suite
,
"readpackedref"
,
packed_reference_looking_up
);
...
...
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