Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding tests to orgs().secrets().create_or_update_secret() #590

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions tests/org_secrets_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,30 @@ async fn should_add_secret() {
let item = result.unwrap();
assert_eq!(item, CreateOrganizationSecretResponse::Created);
}

#[tokio::test]
async fn should_add_secret_204() {
let template = ResponseTemplate::new(204);
let mock_server = setup_put_api(template, "/GH_TOKEN").await;
let client = setup_octocrab(&mock_server.uri());
let org = client.orgs(ORG.to_owned());
let secrets = org.secrets();
let result = secrets
.create_or_update_secret(
"GH_TOKEN",
&CreateOrganizationSecret {
key_id: "123456",
encrypted_value: "some-b64-string",
visibility: Visibility::Selected,
selected_repository_ids: None,
},
)
.await;
assert!(
result.is_ok(),
"expected successful result, got error: {:#?}",
result
);
let item = result.unwrap();
assert_eq!(item, CreateOrganizationSecretResponse::Updated);
}
Loading