mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* Run `build -Target FormatCode` to fixup whitespace etc * Fix delete release asset integration test * Fix repository fork test * Fix pagination test for PR Review Request * First cut of release notes * update release notes * Update release notes * include links to contributors * Add breaking changes/advisories section * Tidy up formatting * Tidy up wording
288 lines
11 KiB
C#
288 lines
11 KiB
C#
using System;
|
|
using System.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
using Octokit;
|
|
using Octokit.Reactive;
|
|
using Octokit.Tests.Integration;
|
|
using Xunit;
|
|
using Octokit.Tests.Integration.Helpers;
|
|
|
|
public class ObservableRepositoryCollaboratorClientTests
|
|
{
|
|
public class TheGetAllMethod
|
|
{
|
|
[IntegrationTest]
|
|
public async Task ReturnsAllCollaborators()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add a collaborator
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
var collaborators = await fixture.GetAll(context.RepositoryOwner, context.RepositoryName).ToList();
|
|
Assert.NotNull(collaborators);
|
|
Assert.Equal(2, collaborators.Count);
|
|
Assert.NotNull(collaborators[0].Permissions);
|
|
Assert.NotNull(collaborators[1].Permissions);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsCorrectCountOfCollaboratorsWithoutStart()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add some collaborators
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageSize = 1,
|
|
PageCount = 1
|
|
};
|
|
|
|
var collaborators = await fixture.GetAll(context.RepositoryOwner, context.RepositoryName, options).ToList();
|
|
Assert.NotNull(collaborators);
|
|
Assert.Equal(1, collaborators.Count);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsCorrectCountOfCollaboratorsWithStart()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add some collaborators
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageSize = 1,
|
|
PageCount = 1,
|
|
StartPage = 2
|
|
};
|
|
|
|
var collaborators = await fixture.GetAll(context.RepositoryOwner, context.RepositoryName, options).ToList();
|
|
Assert.NotNull(collaborators);
|
|
Assert.Equal(1, collaborators.Count);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsDistinctResultsBasedOnStartPage()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add some collaborators
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
var startOptions = new ApiOptions
|
|
{
|
|
PageSize = 1,
|
|
PageCount = 1
|
|
};
|
|
|
|
var firstPage = await fixture.GetAll(context.RepositoryOwner, context.RepositoryName, startOptions).ToList();
|
|
|
|
var skipStartOptions = new ApiOptions
|
|
{
|
|
PageSize = 1,
|
|
PageCount = 1,
|
|
StartPage = 2
|
|
};
|
|
|
|
var secondPage = await fixture.GetAll(context.RepositoryOwner, context.RepositoryName, skipStartOptions).ToList();
|
|
|
|
Assert.NotEqual(firstPage[0].Id, secondPage[0].Id);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class TheIsCollaboratorMethod
|
|
{
|
|
[IntegrationTest]
|
|
public async Task ReturnsTrueIfUserIsCollaborator()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add a collaborator
|
|
fixture.Add(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
var isCollab = await fixture.IsCollaborator(context.RepositoryOwner, context.RepositoryName, "m-zuber-octokit-integration-tests");
|
|
|
|
Assert.True(isCollab);
|
|
}
|
|
}
|
|
}
|
|
public class TheReviewPermissionMethod
|
|
{
|
|
[IntegrationTest]
|
|
public async Task ReturnsReadPermissionForNonCollaborator()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryOwner, context.RepositoryName, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.Read, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsReadPermissionForNonCollaboratorWithRepositoryId()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryId, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.Read, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsWritePermissionForCollaborator()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add a collaborator
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "octokitnet-test1");
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryOwner, context.RepositoryName, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.Write, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsWritePermissionForCollaboratorWithRepositoryId()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
// add a collaborator
|
|
await fixture.Add(context.RepositoryOwner, context.RepositoryName, "octokitnet-test1");
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryId, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.Write, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsAdminPermissionForOwner()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryOwner, context.RepositoryName, context.RepositoryOwner);
|
|
|
|
Assert.Equal(PermissionLevel.Admin, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[IntegrationTest]
|
|
public async Task ReturnsAdminPermissionForOwnerWithRepositoryId()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var repoName = Helper.MakeNameWithTimestamp("public-repo");
|
|
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName)))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryId, context.RepositoryOwner);
|
|
|
|
Assert.Equal(PermissionLevel.Admin, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[PaidAccountTest]
|
|
public async Task ReturnsNonePermissionForPrivateRepository()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var userDetails = await github.User.Current();
|
|
if (userDetails.Plan.PrivateRepos == 0)
|
|
{
|
|
throw new Exception("Test cannot complete, account is on free plan");
|
|
}
|
|
|
|
var repoName = Helper.MakeNameWithTimestamp("private-repo");
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName) { Private = true }))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryOwner, context.RepositoryName, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.None, permission.Permission);
|
|
}
|
|
}
|
|
|
|
[PaidAccountTest]
|
|
public async Task ReturnsNonePermissionForPrivateRepositoryWithRepositoryId()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
var userDetails = await github.User.Current();
|
|
if (userDetails.Plan.PrivateRepos == 0)
|
|
{
|
|
throw new Exception("Test cannot complete, account is on free plan");
|
|
}
|
|
|
|
var repoName = Helper.MakeNameWithTimestamp("private-repo");
|
|
using (var context = await github.CreateRepositoryContext(new NewRepository(repoName) { Private = true }))
|
|
{
|
|
var fixture = new ObservableRepoCollaboratorsClient(github);
|
|
|
|
var permission = await fixture.ReviewPermission(context.RepositoryId, "octokitnet-test1");
|
|
|
|
Assert.Equal(PermissionLevel.None, permission.Permission);
|
|
}
|
|
}
|
|
}
|
|
} |