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
a030ae50
Commit
a030ae50
authored
Jun 20, 2011
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a test for remote parsing
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
parent
2dc31040
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
0 deletions
+53
-0
tests/resources/testrepo.git/config
+3
-0
tests/t16-remotes.c
+48
-0
tests/test_main.c
+2
-0
No files found.
tests/resources/testrepo.git/config
View file @
a030ae50
...
...
@@ -3,3 +3,6 @@
filemode = true
bare = true
logallrefupdates = true
[remote "test"]
url = git://github.com/libgit2/libgit2
fetch = +refs/heads/*:refs/remotes/test/*
tests/t16-remotes.c
0 → 100644
View file @
a030ae50
/*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* as published by the Free Software Foundation.
*
* In addition to the permissions in the GNU General Public License,
* the authors give you unlimited permission to link the compiled
* version of this file into combinations with other programs,
* and to distribute those combinations without any restriction
* coming from the use of this file. (The General Public License
* restrictions do apply in other respects; for example, they cover
* modification of the file, and distribution when not linked into
* a combined executable.)
*
* This file is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "test_lib.h"
#include "test_helpers.h"
#include <git2.h>
BEGIN_TEST
(
remotes0
,
"remote parsing works"
)
git_remote
*
remote
;
git_repository
*
repo
;
git_config
*
cfg
;
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
,
NULL
));
must_pass
(
git_remote_get
(
&
remote
,
cfg
,
"test"
));
must_be_true
(
!
strcmp
(
git_remote_name
(
remote
),
"test"
));
must_be_true
(
!
strcmp
(
git_remote_url
(
remote
),
"git://github.com/libgit2/libgit2"
));
git_remote_free
(
remote
);
git_config_free
(
cfg
);
git_repository_free
(
repo
);
END_TEST
BEGIN_SUITE
(
remotes
)
ADD_TEST
(
remotes0
)
END_SUITE
tests/test_main.c
View file @
a030ae50
...
...
@@ -43,6 +43,7 @@ DECLARE_SUITE(refs);
DECLARE_SUITE
(
repository
);
DECLARE_SUITE
(
threads
);
DECLARE_SUITE
(
config
);
DECLARE_SUITE
(
remotes
);
static
libgit2_suite
suite_methods
[]
=
{
SUITE_NAME
(
core
),
...
...
@@ -59,6 +60,7 @@ static libgit2_suite suite_methods[]= {
SUITE_NAME
(
repository
),
SUITE_NAME
(
threads
),
SUITE_NAME
(
config
),
SUITE_NAME
(
remotes
),
};
#define GIT_SUITE_COUNT (ARRAY_SIZE(suite_methods))
...
...
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