Files
octokit.net/Octokit.Tests.Integration/Clients/RespositorySecretsClientTests.cs
Keegan Campbell 131ba87e3f Replay #2221: Implement GitHub Actions Secrets API for both Organization and Repository (#2598)
* created the interface and models for the repository secrets client

* created a repository actions client to sit between repository and secrets for future extensibility

* created the repository secret client and supporting objects to enable data transfer

* created object for create or update secret body and made fixes to pass unit tests

* created repository action unit tests

* created unit tests for RepositorySecretsClient

* removed set from secrets interface

* fixed docs and added observable actions client

* added Actions to repository client

* created IObservable repository secrets client

* fixed property in wrong interface
fixed wrong Ctor unit test

* created repository decrets reactive tests and clients

* created organization actions and scerets classes and made them available through the oprganizations client

* fixed intellisense text

* removed uneeded getall call after return type change

* created organization secret client and classes to support it

* created the observable org secrets client and fixed a typo in a method name

* added more ensure checks

* removed unused xml doc setting

* created the unit tests for the organization secrets client
fixed broken unit test for repository secrets client

* created observable organization actions and secrets client unit tests

* added sodium.core to the integration tests to test secret creation

* fixed keyid type

* added actions client integration test classes (empty since the class currently doesn't have any native methods)

* fixed deserialization issue

* changed property name for deserialization issues

* added doc for repoid on orginzation secrets url generator

* created integration tests for repository and organization secrets

* changed how return occurs for setting list of repos for secret

* fixed some names and removed reset org name

* created integration tests for observable org secrets client

* removed  default org value

* created the integration tests for the observable repository secrets client

* removed default owner project value

* fixed unit tests

* Update links to new docs site

* Update doc links to new docs site

* Update docs links to new docs site

* Fix doc link to point to new docs site

* Update links to new docs site

* Update doc links to new docs site

* Update docs links

* Update docs

* Update docs

* Update doc links

* Update docs

* Update doc links

* Update doc links

* Update doc links

* updated documentation links in actions and secrets clients

* Update Octokit/Models/Response/SecretsPublicKey.cs

Removing line for consistency.

Co-authored-by: Thomas Hughes <iamhughes@github.com>

* Update Octokit/Models/Response/RepositorySecret.cs

Removing line for consistency.

Co-authored-by: Thomas Hughes <iamhughes@github.com>

* set default owner and repo

* switched to using the Helper.Organization from a ORG constant set at the top of the file

* swapped out variable at top of file for the Helper.Organization property

* switched to helper method to create new repositories

* Protected setters --> private setters in response models

* RepositorySecret needs protected setters

Co-authored-by: Mike Tolly <mike.tolly@takeda.com>
Co-authored-by: Thomas Hughes <iamhughes@github.com>
Co-authored-by: mptolly-takeda <61791994+mptolly-takeda@users.noreply.github.com>
2022-10-20 14:59:31 -07:00

129 lines
3.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Runtime.Versioning;
using System.Text;
using System.Threading.Tasks;
using Octokit;
using Octokit.Tests.Integration;
using Octokit.Tests.Integration.Helpers;
using Xunit;
#if SODIUM_CORE_AVAILABLE
using Sodium;
#endif
namespace Octokit.Tests.Integration.Clients
{
/// <summary>
/// Access to view and update secrets is required for the following tests
/// </summary>
public class RespositorySecretsClientTests
{
/// <summary>
/// Fill these in for tests to work
/// </summary>
internal const string OWNER = "octokit";
internal const string REPO = "octokit.net";
public class GetPublicKeyMethod
{
[IntegrationTest]
public async Task GetPublicKey()
{
var github = Helper.GetAuthenticatedClient();
var key = await github.Repository.Actions.Secrets.GetPublicKey(OWNER, REPO);
Assert.True(!string.IsNullOrWhiteSpace(key.KeyId));
}
}
public class GetAllMethod
{
[IntegrationTest]
public async Task GetSecrets()
{
var github = Helper.GetAuthenticatedClient();
var secrets = await github.Repository.Actions.Secrets.GetAll(OWNER, REPO);
Assert.NotEmpty(secrets.Secrets);
}
}
/// <summary>
/// Please create a secret in your specific repo called TEST
/// </summary>
public class GetMethod
{
[IntegrationTest]
public async Task GetSecret()
{
var github = Helper.GetAuthenticatedClient();
var secret = await github.Repository.Actions.Secrets.Get(OWNER, REPO, "TEST");
Assert.NotNull(secret);
Assert.True(secret.Name == "TEST");
}
}
public class CreateOrUpdateMethod
{
#if SODIUM_CORE_AVAILABLE
[IntegrationTest]
public async Task UpsertSecret()
{
var github = Helper.GetAuthenticatedClient();
var now = DateTime.Now;
var publicKey = await github.Repository.Actions.Secrets.GetPublicKey(OWNER, REPO);
var upsertValue = GetSecretForCreate("value", publicKey);
var secret = await github.Repository.Actions.Secrets.CreateOrUpdate(OWNER, REPO, "UPSERT_TEST", upsertValue);
Assert.NotNull(secret);
Assert.True(secret.UpdatedAt > now);
}
#endif
}
public class DeleteMethod
{
#if SODIUM_CORE_AVAILABLE
[IntegrationTest]
public async Task DeleteSecret()
{
var github = Helper.GetAuthenticatedClient();
var secretName = "DELETE_TEST";
var publicKey = await github.Repository.Actions.Secrets.GetPublicKey(OWNER, REPO);
var upsertValue = GetSecretForCreate("value", publicKey);
await github.Repository.Actions.Secrets.CreateOrUpdate(OWNER, REPO, secretName, upsertValue);
await github.Repository.Actions.Secrets.Delete(OWNER, REPO, secretName);
}
#endif
}
#if SODIUM_CORE_AVAILABLE
private static UpsertRepositorySecret GetSecretForCreate(string secretValue, SecretsPublicKey key)
{
var secretBytes = Encoding.UTF8.GetBytes(secretValue);
var publicKey = Convert.FromBase64String(key.Key);
var sealedPublicKeyBox = SealedPublicKeyBox.Create(secretBytes, publicKey);
var upsertValue = new UpsertRepositorySecret
{
EncryptedValue = Convert.ToBase64String(sealedPublicKeyBox),
KeyId = key.KeyId
};
return upsertValue;
}
#endif
}
}