Merging upstream version 0.7.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
70e865f449
commit
da73d9f41d
11 changed files with 2459 additions and 3856 deletions
|
@ -34,7 +34,7 @@ async fn user() {
|
|||
"could not find new user"
|
||||
);
|
||||
let query = AdminGetAllEmailsQuery::default();
|
||||
let (_, users) = api
|
||||
let users = api
|
||||
.admin_get_all_emails(query)
|
||||
.await
|
||||
.expect("failed to search emails");
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
use forgejo_api::structs::*;
|
||||
use forgejo_api::Forgejo;
|
||||
|
||||
pub fn login() -> Forgejo {
|
||||
|
@ -15,3 +16,117 @@ pub fn login_pass(username: &str, password: &str) -> Forgejo {
|
|||
};
|
||||
Forgejo::new(auth, url).unwrap()
|
||||
}
|
||||
|
||||
pub struct Git {
|
||||
dir: &'static std::path::Path,
|
||||
}
|
||||
|
||||
impl Git {
|
||||
pub fn new<T: AsRef<std::path::Path> + ?Sized>(path: &'static T) -> Self {
|
||||
let dir = path.as_ref();
|
||||
std::fs::create_dir_all(dir).unwrap();
|
||||
Self { dir }
|
||||
}
|
||||
|
||||
pub fn run(&self, args: &[impl AsRef<std::ffi::OsStr>]) {
|
||||
let mut cmd = std::process::Command::new("git");
|
||||
cmd.current_dir(self.dir);
|
||||
let _ = cmd.args(args).status().unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn setup_local_repo(git: &Git) {
|
||||
git.run(&["config", "--global", "init.defaultBranch", "main"]);
|
||||
git.run(&["init"]);
|
||||
git.run(&["config", "user.name", "TestingAdmin"]);
|
||||
git.run(&["config", "user.email", "admin@noreply.example.org"]);
|
||||
tokio::fs::write(&git.dir.join("README.md"), "# Test\nThis is a test repo")
|
||||
.await
|
||||
.unwrap();
|
||||
git.run(&["add", "."]);
|
||||
git.run(&["commit", "-m", "initial commit"]);
|
||||
}
|
||||
|
||||
pub async fn basic_repo(api: &forgejo_api::Forgejo, git: &Git, name: &str) -> Repository {
|
||||
setup_local_repo(git).await;
|
||||
let repo_opt = CreateRepoOption {
|
||||
auto_init: Some(false),
|
||||
default_branch: Some("main".into()),
|
||||
description: Some("Test Repo".into()),
|
||||
gitignores: Some("".into()),
|
||||
issue_labels: Some("".into()),
|
||||
license: Some("".into()),
|
||||
name: name.into(),
|
||||
object_format_name: None,
|
||||
private: Some(false),
|
||||
readme: None,
|
||||
template: Some(false),
|
||||
trust_model: Some(CreateRepoOptionTrustModel::Default),
|
||||
};
|
||||
let remote_repo = api.create_current_user_repo(repo_opt).await.unwrap();
|
||||
assert!(
|
||||
remote_repo.has_pull_requests.unwrap(),
|
||||
"repo does not accept pull requests"
|
||||
);
|
||||
assert!(
|
||||
remote_repo.owner.as_ref().unwrap().login.as_ref().unwrap() == "TestingAdmin",
|
||||
"repo owner is not \"TestingAdmin\""
|
||||
);
|
||||
assert!(
|
||||
remote_repo.name.as_ref().unwrap() == name,
|
||||
"repo name is not \"{name}\""
|
||||
);
|
||||
|
||||
let mut remote_url = remote_repo.clone_url.clone().unwrap();
|
||||
remote_url.set_username("TestingAdmin").unwrap();
|
||||
remote_url.set_password(Some("password")).unwrap();
|
||||
git.run(&["remote", "add", "origin", remote_url.as_str()]);
|
||||
git.run(&["push", "-u", "origin", "main"]);
|
||||
|
||||
remote_repo
|
||||
}
|
||||
|
||||
pub async fn basic_org_repo(
|
||||
api: &forgejo_api::Forgejo,
|
||||
git: &Git,
|
||||
org: &str,
|
||||
name: &str,
|
||||
) -> Repository {
|
||||
setup_local_repo(git).await;
|
||||
|
||||
let repo_opt = CreateRepoOption {
|
||||
auto_init: Some(false),
|
||||
default_branch: Some("main".into()),
|
||||
description: Some("Test Repo".into()),
|
||||
gitignores: Some("".into()),
|
||||
issue_labels: Some("".into()),
|
||||
license: Some("".into()),
|
||||
name: name.into(),
|
||||
object_format_name: None,
|
||||
private: Some(false),
|
||||
readme: None,
|
||||
template: Some(false),
|
||||
trust_model: Some(CreateRepoOptionTrustModel::Default),
|
||||
};
|
||||
let remote_repo = api.create_org_repo(org, repo_opt).await.unwrap();
|
||||
assert!(
|
||||
remote_repo.has_pull_requests.unwrap(),
|
||||
"repo does not accept pull requests"
|
||||
);
|
||||
assert!(
|
||||
remote_repo.owner.as_ref().unwrap().login.as_ref().unwrap() == org,
|
||||
"repo owner is not \"TestingAdmin\""
|
||||
);
|
||||
assert!(
|
||||
remote_repo.name.as_ref().unwrap() == name,
|
||||
"repo name is not \"{name}\""
|
||||
);
|
||||
|
||||
let mut remote_url = remote_repo.clone_url.clone().unwrap();
|
||||
remote_url.set_username("TestingAdmin").unwrap();
|
||||
remote_url.set_password(Some("password")).unwrap();
|
||||
git.run(&["remote", "add", "origin", remote_url.as_str()]);
|
||||
git.run(&["push", "-u", "origin", "main"]);
|
||||
|
||||
remote_repo
|
||||
}
|
||||
|
|
385
tests/headers.rs
Normal file
385
tests/headers.rs
Normal file
|
@ -0,0 +1,385 @@
|
|||
mod common;
|
||||
use common::Git;
|
||||
use forgejo_api::structs::*;
|
||||
|
||||
macro_rules! test_header {
|
||||
($e:expr, $header:ident) => {
|
||||
let (headers, _) = $e.await.expect("api called failed");
|
||||
assert!(headers.$header.is_some());
|
||||
};
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn total_count() {
|
||||
// password login needed for user_get_tokens
|
||||
let api = common::login_pass("TestingAdmin", "password");
|
||||
|
||||
test_header!(
|
||||
api.user_get_tokens("TestingAdmin", UserGetTokensQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_list_activity_feeds("TestingAdmin", UserListActivityFeedsQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_current_list_gpg_keys(UserCurrentListGpgKeysQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_get_oauth2_applications(UserGetOAuth2ApplicationsQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_get_oauth2_applications(UserGetOAuth2ApplicationsQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_current_list_keys(UserCurrentListKeysQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_list_blocked_users(UserListBlockedUsersQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_current_list_repos(UserCurrentListReposQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_get_stop_watches(UserGetStopWatchesQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_current_tracked_times(UserCurrentTrackedTimesQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.user_list_followers("TestingAdmin", UserListFollowersQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.list_packages("TestingAdmin", ListPackagesQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.notify_get_list(NotifyGetListQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
|
||||
let git = Git::new("./test_repos/header_test");
|
||||
common::basic_repo(&api, &git, "header_test").await;
|
||||
let body = CreateIssueOption {
|
||||
assignee: None,
|
||||
assignees: None,
|
||||
body: None,
|
||||
closed: None,
|
||||
due_date: None,
|
||||
labels: None,
|
||||
milestone: None,
|
||||
r#ref: None,
|
||||
title: "Test".into(),
|
||||
};
|
||||
api.issue_create_issue("TestingAdmin", "header_test", body)
|
||||
.await
|
||||
.unwrap();
|
||||
let body = EditReactionOption {
|
||||
content: Some("+1".into()),
|
||||
};
|
||||
api.issue_post_issue_reaction("TestingAdmin", "header_test", 1, body)
|
||||
.await
|
||||
.unwrap();
|
||||
test_header!(
|
||||
api.issue_get_issue_reactions(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
1,
|
||||
IssueGetIssueReactionsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.issue_list_issues(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
IssueListIssuesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.issue_list_labels(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
IssueListLabelsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.issue_get_milestones_list(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
IssueGetMilestonesListQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
|
||||
git.run(&["switch", "-c", "pluey"]);
|
||||
tokio::fs::write("./test_repos/header_test/pluey.txt", "wahoo")
|
||||
.await
|
||||
.unwrap();
|
||||
git.run(&["add", "."]);
|
||||
git.run(&["commit", "-m", "\"We implemented pluey\""]);
|
||||
git.run(&["push"]);
|
||||
let body = CreatePullRequestOption {
|
||||
assignee: None,
|
||||
assignees: None,
|
||||
base: Some("main".into()),
|
||||
body: None,
|
||||
due_date: None,
|
||||
head: Some("pluey".into()),
|
||||
labels: None,
|
||||
milestone: None,
|
||||
title: Some("pluey".into()),
|
||||
};
|
||||
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
|
||||
let pr = api
|
||||
.repo_create_pull_request("TestingAdmin", "header_test", body)
|
||||
.await
|
||||
.unwrap();
|
||||
test_header!(
|
||||
api.repo_get_pull_request_files(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
2,
|
||||
RepoGetPullRequestFilesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.issue_get_comments(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
1,
|
||||
IssueGetCommentsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_get_pull_request_commits(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
2,
|
||||
RepoGetPullRequestCommitsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
let sha = pr.head.unwrap().sha.unwrap();
|
||||
test_header!(
|
||||
api.repo_list_pull_requests(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListPullRequestsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
let body = CreatePullReviewOptions {
|
||||
body: Some("woah".into()),
|
||||
comments: None,
|
||||
commit_id: None,
|
||||
event: None,
|
||||
};
|
||||
api.repo_create_pull_review("TestingAdmin", "header_test", 2, body)
|
||||
.await
|
||||
.unwrap();
|
||||
test_header!(
|
||||
api.repo_list_pull_reviews(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
2,
|
||||
RepoListPullReviewsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.issue_get_comments_and_timeline(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
2,
|
||||
IssueGetCommentsAndTimelineQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
|
||||
test_header!(
|
||||
api.repo_list_push_mirrors(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListPushMirrorsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
//tokio::time::sleep(std::time::Duration::from_secs(2)).await;
|
||||
test_header!(
|
||||
api.repo_list_branches(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListBranchesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_branches(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListBranchesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_statuses(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
&sha,
|
||||
RepoListStatusesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_keys("TestingAdmin", "header_test", RepoListKeysQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_hooks("TestingAdmin", "header_test", RepoListHooksQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_releases(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListReleasesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_actions_secrets(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoListActionsSecretsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_list_tags("TestingAdmin", "header_test", RepoListTagsQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.get_repo_variables_list(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
GetRepoVariablesListQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
let body = CreateWikiPageOptions {
|
||||
content_base64: Some(
|
||||
"WW91IGRlY29kZWQgdGhpcyB0byBzZWUgd2hhdCBpdCBzYXlzPyBZb3UncmUgcXVpdGUgYSBuZXJk".into(),
|
||||
),
|
||||
message: Some("wahoo".into()),
|
||||
title: Some("Home".into()),
|
||||
};
|
||||
api.repo_create_wiki_page("TestingAdmin", "header_test", body)
|
||||
.await
|
||||
.unwrap();
|
||||
test_header!(
|
||||
api.repo_get_wiki_page_revisions(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
"Home",
|
||||
RepoGetWikiPageRevisionsQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(
|
||||
api.repo_get_wiki_pages(
|
||||
"TestingAdmin",
|
||||
"header_test",
|
||||
RepoGetWikiPagesQuery::default()
|
||||
),
|
||||
x_total_count
|
||||
);
|
||||
|
||||
test_header!(
|
||||
api.admin_cron_list(AdminCronListQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
//test_header!(api.admin_list_quota_groups(), x_total_count);
|
||||
//test_header!(api.admin_list_quota_rules(), x_total_count);
|
||||
//test_header!(api.user_list_quota_artifacts(UserListQuotaArtifactsQuery::default()), x_total_count);
|
||||
//test_header!(api.user_list_quota_attachments(UserListQuotaAttachmentsQuery::default()), x_total_count);
|
||||
//test_header!(api.user_list_quota_packages(UserListQuotaPackagesQuery::default()), x_total_count);
|
||||
let body = CreateOrgOption {
|
||||
description: None,
|
||||
email: None,
|
||||
full_name: None,
|
||||
location: None,
|
||||
repo_admin_change_team_access: None,
|
||||
username: "header-test-org".into(),
|
||||
visibility: None,
|
||||
website: None,
|
||||
};
|
||||
api.org_create(body).await.unwrap();
|
||||
test_header!(
|
||||
api.org_list_teams("header-test-org", OrgListTeamsQuery::default()),
|
||||
x_total_count
|
||||
);
|
||||
test_header!(api.org_get_all(OrgGetAllQuery::default()), x_total_count);
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn has_more() {
|
||||
let api = common::login_pass("TestingAdmin", "password");
|
||||
|
||||
let git = Git::new("./test_repos/header_more_test");
|
||||
common::basic_repo(&api, &git, "header_more_test").await;
|
||||
|
||||
git.run(&["switch", "-c", "pluey"]);
|
||||
tokio::fs::write("./test_repos/header_more_test/pluey.txt", "wahoo")
|
||||
.await
|
||||
.unwrap();
|
||||
git.run(&["add", "."]);
|
||||
git.run(&["commit", "-m", "\"We implemented pluey\""]);
|
||||
git.run(&["push"]);
|
||||
let body = CreatePullRequestOption {
|
||||
assignee: None,
|
||||
assignees: None,
|
||||
base: Some("main".into()),
|
||||
body: None,
|
||||
due_date: None,
|
||||
head: Some("pluey".into()),
|
||||
labels: None,
|
||||
milestone: None,
|
||||
title: Some("pluey".into()),
|
||||
};
|
||||
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
|
||||
api.repo_create_pull_request("TestingAdmin", "header_more_test", body)
|
||||
.await
|
||||
.unwrap();
|
||||
test_header!(
|
||||
api.repo_get_pull_request_files(
|
||||
"TestingAdmin",
|
||||
"header_more_test",
|
||||
1,
|
||||
RepoGetPullRequestFilesQuery::default()
|
||||
),
|
||||
x_has_more
|
||||
);
|
||||
test_header!(
|
||||
api.repo_get_pull_request_commits(
|
||||
"TestingAdmin",
|
||||
"header_more_test",
|
||||
1,
|
||||
RepoGetPullRequestCommitsQuery::default()
|
||||
),
|
||||
x_has_more
|
||||
);
|
||||
}
|
116
tests/repo.rs
116
tests/repo.rs
|
@ -2,119 +2,7 @@ use forgejo_api::structs::*;
|
|||
|
||||
mod common;
|
||||
|
||||
struct Git {
|
||||
dir: &'static std::path::Path,
|
||||
}
|
||||
|
||||
impl Git {
|
||||
fn new<T: AsRef<std::path::Path> + ?Sized>(path: &'static T) -> Self {
|
||||
let dir = path.as_ref();
|
||||
std::fs::create_dir_all(dir).unwrap();
|
||||
Self { dir }
|
||||
}
|
||||
|
||||
fn run(&self, args: &[impl AsRef<std::ffi::OsStr>]) {
|
||||
let mut cmd = std::process::Command::new("git");
|
||||
cmd.current_dir(self.dir);
|
||||
let _ = cmd.args(args).status().unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
async fn setup_local_repo(git: &Git) {
|
||||
git.run(&["config", "--global", "init.defaultBranch", "main"]);
|
||||
git.run(&["init"]);
|
||||
git.run(&["config", "user.name", "TestingAdmin"]);
|
||||
git.run(&["config", "user.email", "admin@noreply.example.org"]);
|
||||
tokio::fs::write(&git.dir.join("README.md"), "# Test\nThis is a test repo")
|
||||
.await
|
||||
.unwrap();
|
||||
git.run(&["add", "."]);
|
||||
git.run(&["commit", "-m", "initial commit"]);
|
||||
}
|
||||
|
||||
async fn basic_repo(api: &forgejo_api::Forgejo, git: &Git, name: &str) -> Repository {
|
||||
setup_local_repo(git).await;
|
||||
let repo_opt = CreateRepoOption {
|
||||
auto_init: Some(false),
|
||||
default_branch: Some("main".into()),
|
||||
description: Some("Test Repo".into()),
|
||||
gitignores: Some("".into()),
|
||||
issue_labels: Some("".into()),
|
||||
license: Some("".into()),
|
||||
name: name.into(),
|
||||
object_format_name: None,
|
||||
private: Some(false),
|
||||
readme: None,
|
||||
template: Some(false),
|
||||
trust_model: Some(CreateRepoOptionTrustModel::Default),
|
||||
};
|
||||
let remote_repo = api.create_current_user_repo(repo_opt).await.unwrap();
|
||||
assert!(
|
||||
remote_repo.has_pull_requests.unwrap(),
|
||||
"repo does not accept pull requests"
|
||||
);
|
||||
assert!(
|
||||
remote_repo.owner.as_ref().unwrap().login.as_ref().unwrap() == "TestingAdmin",
|
||||
"repo owner is not \"TestingAdmin\""
|
||||
);
|
||||
assert!(
|
||||
remote_repo.name.as_ref().unwrap() == name,
|
||||
"repo name is not \"{name}\""
|
||||
);
|
||||
|
||||
let mut remote_url = remote_repo.clone_url.clone().unwrap();
|
||||
remote_url.set_username("TestingAdmin").unwrap();
|
||||
remote_url.set_password(Some("password")).unwrap();
|
||||
git.run(&["remote", "add", "origin", remote_url.as_str()]);
|
||||
git.run(&["push", "-u", "origin", "main"]);
|
||||
|
||||
remote_repo
|
||||
}
|
||||
|
||||
async fn basic_org_repo(
|
||||
api: &forgejo_api::Forgejo,
|
||||
git: &Git,
|
||||
org: &str,
|
||||
name: &str,
|
||||
) -> Repository {
|
||||
setup_local_repo(git).await;
|
||||
|
||||
let repo_opt = CreateRepoOption {
|
||||
auto_init: Some(false),
|
||||
default_branch: Some("main".into()),
|
||||
description: Some("Test Repo".into()),
|
||||
gitignores: Some("".into()),
|
||||
issue_labels: Some("".into()),
|
||||
license: Some("".into()),
|
||||
name: name.into(),
|
||||
object_format_name: None,
|
||||
private: Some(false),
|
||||
readme: None,
|
||||
template: Some(false),
|
||||
trust_model: Some(CreateRepoOptionTrustModel::Default),
|
||||
};
|
||||
let remote_repo = api.create_org_repo(org, repo_opt).await.unwrap();
|
||||
assert!(
|
||||
remote_repo.has_pull_requests.unwrap(),
|
||||
"repo does not accept pull requests"
|
||||
);
|
||||
assert!(
|
||||
remote_repo.owner.as_ref().unwrap().login.as_ref().unwrap() == org,
|
||||
"repo owner is not \"TestingAdmin\""
|
||||
);
|
||||
assert!(
|
||||
remote_repo.name.as_ref().unwrap() == name,
|
||||
"repo name is not \"{name}\""
|
||||
);
|
||||
|
||||
let mut remote_url = remote_repo.clone_url.clone().unwrap();
|
||||
remote_url.set_username("TestingAdmin").unwrap();
|
||||
remote_url.set_password(Some("password")).unwrap();
|
||||
git.run(&["remote", "add", "origin", remote_url.as_str()]);
|
||||
git.run(&["push", "-u", "origin", "main"]);
|
||||
|
||||
remote_repo
|
||||
}
|
||||
use common::{basic_org_repo, basic_repo, Git};
|
||||
|
||||
#[tokio::test]
|
||||
async fn pull_request() {
|
||||
|
@ -401,7 +289,7 @@ async fn tag_protection() {
|
|||
let git = Git::new("./test_repos/tag-protect");
|
||||
let _ = basic_repo(&api, &git, "tag-protect").await;
|
||||
|
||||
let (_, tag_protections) = api
|
||||
let tag_protections = api
|
||||
.repo_list_tag_protection("TestingAdmin", "tag-protect")
|
||||
.await
|
||||
.expect("failed to list tag protections");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue