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

Added a test #577

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
24 changes: 24 additions & 0 deletions tests/repo_secrets_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,30 @@ async fn should_add_secret() {
assert_eq!(item, CreateRepositorySecretResponse::Created);
}

#[tokio::test]
async fn should_update_secret_204() {
let template = ResponseTemplate::new(204);
let mock_server = setup_put_api(template, "/GH_TOKEN").await;
let result = setup_octocrab(&mock_server.uri())
.repos(OWNER.to_owned(), REPO.to_owned())
.secrets()
.create_or_update_secret(
"GH_TOKEN",
&CreateRepositorySecret {
key_id: "123456",
encrypted_value: "some-b64-string",
},
)
.await;
assert!(
result.is_ok(),
"expected successful result, got error: {:#?}",
result
);
let item = result.unwrap();
assert_eq!(item, CreateRepositorySecretResponse::Updated);
}

#[tokio::test]
async fn should_delete_secret() {
let template = ResponseTemplate::new(204);
Expand Down
Loading