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
194d077c
Commit
194d077c
authored
Jan 18, 2014
by
Graham Dennis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for pushing to a local file:// URL.
parent
4e974c97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
tests/network/remote/local.c
+40
-0
No files found.
tests/network/remote/local.c
View file @
194d077c
...
@@ -197,6 +197,46 @@ void test_network_remote_local__push_to_bare_remote(void)
...
@@ -197,6 +197,46 @@ void test_network_remote_local__push_to_bare_remote(void)
cl_fixture_cleanup
(
"localbare.git"
);
cl_fixture_cleanup
(
"localbare.git"
);
}
}
void
test_network_remote_local__push_to_bare_remote_with_file_url
(
void
)
{
/* Should be able to push to a bare remote */
git_remote
*
localremote
;
git_push
*
push
;
/* Get some commits */
connect_to_local_repository
(
cl_fixture
(
"testrepo.git"
));
cl_git_pass
(
git_remote_add_fetch
(
remote
,
"master:master"
));
cl_git_pass
(
git_remote_download
(
remote
));
cl_git_pass
(
git_remote_update_tips
(
remote
));
git_remote_disconnect
(
remote
);
/* Set up an empty bare repo to push into */
{
git_repository
*
localbarerepo
;
cl_git_pass
(
git_repository_init
(
&
localbarerepo
,
"./localbare.git"
,
1
));
git_repository_free
(
localbarerepo
);
}
/* Create a file URL */
char
*
url
=
cl_git_path_url
(
"./localbare.git"
);
/* Connect to the bare repo */
cl_git_pass
(
git_remote_create_inmemory
(
&
localremote
,
repo
,
NULL
,
url
));
cl_git_pass
(
git_remote_connect
(
localremote
,
GIT_DIRECTION_PUSH
));
/* Try to push */
cl_git_pass
(
git_push_new
(
&
push
,
localremote
));
cl_git_pass
(
git_push_add_refspec
(
push
,
"refs/heads/master:"
));
cl_git_pass
(
git_push_finish
(
push
));
cl_assert
(
git_push_unpack_ok
(
push
));
/* Clean up */
git_push_free
(
push
);
git_remote_free
(
localremote
);
cl_fixture_cleanup
(
"localbare.git"
);
}
void
test_network_remote_local__push_to_non_bare_remote
(
void
)
void
test_network_remote_local__push_to_non_bare_remote
(
void
)
{
{
/* Shouldn't be able to push to a non-bare remote */
/* Shouldn't be able to push to a non-bare remote */
...
...
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