mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
176 lines
6.0 KiB
C#
176 lines
6.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reactive.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
using NSubstitute;
|
|
using Octokit.Reactive;
|
|
using Xunit;
|
|
|
|
namespace Octokit.Tests.Reactive
|
|
{
|
|
public class ObservableProjectCardsClientTests
|
|
{
|
|
public class TheCtor
|
|
{
|
|
[Fact]
|
|
public void EnsuresNonNullArguments()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(
|
|
() => new ObservableProjectCardsClient(null));
|
|
}
|
|
}
|
|
|
|
public class TheGetAllMethod
|
|
{
|
|
[Fact]
|
|
public void RequestCorrectURL()
|
|
{
|
|
var connection = Substitute.For<IConnection>();
|
|
var gitHubClient = new GitHubClient(connection);
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
|
|
client.GetAll(1);
|
|
|
|
connection.Received().Get<List<ProjectCard>>(
|
|
Arg.Is<Uri>(u => u.ToString() == "projects/columns/1/cards"),
|
|
Args.EmptyDictionary);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SendsAppropriateParameters()
|
|
{
|
|
var connection = Substitute.For<IConnection>();
|
|
var gitHubClient = new GitHubClient(connection);
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
|
|
client.GetAll(1, new ProjectCardRequest(ProjectCardArchivedStateFilter.NotArchived));
|
|
|
|
connection.Received().Get<List<ProjectCard>>(
|
|
Arg.Is<Uri>(u => u.ToString() == "projects/columns/1/cards"),
|
|
Arg.Is<Dictionary<string, string>>(x =>
|
|
x.Count == 1
|
|
&& x["archived_state"] == "not_archived"));
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
var request = new ProjectCardRequest();
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll(1, (ProjectCardRequest)null).ToTask());
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll(1, (ApiOptions)null).ToTask());
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll(1, null, ApiOptions.None).ToTask());
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll(1, request, null).ToTask());
|
|
}
|
|
}
|
|
|
|
public class TheGetMethod
|
|
{
|
|
[Fact]
|
|
public void RequestCorrectURL()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
|
|
client.Get(1);
|
|
|
|
gitHubClient.Repository.Project.Card.Received().Get(1);
|
|
}
|
|
}
|
|
|
|
public class TheCreateMethod
|
|
{
|
|
[Fact]
|
|
public void PostsToCorrectURL()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
var newCard = new NewProjectCard("someNote");
|
|
|
|
client.Create(1, newCard);
|
|
|
|
gitHubClient.Repository.Project.Card.Received().Create(1, newCard);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new ObservableProjectCardsClient(Substitute.For<IGitHubClient>());
|
|
var newCard = new NewProjectCard("someNote");
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.Create(1, null).ToTask());
|
|
}
|
|
}
|
|
|
|
public class TheUpdateMethod
|
|
{
|
|
[Fact]
|
|
public void PostsToCorrectURL()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
var updateCard = new ProjectCardUpdate
|
|
{
|
|
Note = "someNewNote"
|
|
};
|
|
|
|
client.Update(1, updateCard);
|
|
|
|
gitHubClient.Repository.Project.Card.Received().Update(1, updateCard);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new ObservableProjectCardsClient(Substitute.For<IGitHubClient>());
|
|
var updateCard = new ProjectCardUpdate
|
|
{
|
|
Note = "someNewNote"
|
|
};
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.Update(1, null).ToTask());
|
|
}
|
|
}
|
|
|
|
public class TheDeleteMethod
|
|
{
|
|
[Fact]
|
|
public void DeletesCorrectURL()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
|
|
client.Delete(1);
|
|
|
|
gitHubClient.Repository.Project.Card.Received().Delete(1);
|
|
}
|
|
}
|
|
|
|
public class TheMoveMethod
|
|
{
|
|
[Fact]
|
|
public void PostsToCorrectURL()
|
|
{
|
|
var gitHubClient = Substitute.For<IGitHubClient>();
|
|
var client = new ObservableProjectCardsClient(gitHubClient);
|
|
var position = new ProjectCardMove(ProjectCardPosition.Top, 1, null);
|
|
|
|
client.Move(1, position);
|
|
|
|
gitHubClient.Repository.Project.Card.Received().Move(1, position);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new ObservableProjectCardsClient(Substitute.For<IGitHubClient>());
|
|
var position = new ProjectCardMove(ProjectCardPosition.Top, 1, null);
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.Move(1, null).ToTask());
|
|
}
|
|
}
|
|
}
|
|
}
|