mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* bugfix - PUT should have a payload for Mark as Read (#1579) * bugfix - PUT should have a payload for Mark as Read * also fix the Observable client test * add integration tests for MarkRead methods * Fixup MarkReadForRepository methods to specify a body in the PUT request * Fix unit tests for regular and observable client * helps if the new files are included in the test project :) * Cloning ApiInfo object should work when some fields are null (#1580) * Adjust ApiInfo.Clone() to work even if some elements (eg ETag) are null * Remove c# 6 language feature and do it the old school way * Add a test for cloning ApiInfo when some fields are null * The 3 lists can never be null anyway so remove some un-needed statements * Add test for null RateLimit * Remove Rx-Main dependency from samples This resolves #1592 - LINQPad doesn't understand how to restore this unlisted package and it's not actually needed in the samples. * Adding RemovedFromProject and other missing EventInfoState types. (#1591) * Adding missing review types to event info. * Fixing whitespace. * Reword `BaseRefChanged` comment * Adding missing event types. * Change response models 'Url' properties from `Uri` to `string` (#1585) * Add convention test to ensure 'Url' properties are of type string Closes #1582 * Change 'Url' properties from Uri to string Global Find/Replace FTW! * fix compilation errors in the integration tests project * Extend 'Url' properties type check to request models * Stick to convention tests naming convention * Remove unused using directives in models Changing from `Uri` to `string` means the `using System;` directive was not needed anymore in some files * Update exception message wording * empty commit to trigger a new build - hopefully Travis passes * add convention test to ensure request models have Uri 'Url' properties * make request models 'Url' properties Uri fix typo in convention test name * revert some request models 'Url' properties as `string` see https://github.com/octokit/octokit.net/pull/1585#issuecomment-297186728 * Change test so that all model types must have 'Url' properties of type string - Filter test input to only get types which have 'Url' properties - Merge response and request model types tests into one - Unparameterize the exception since we only check for the string type now * Fix string.Format tokens If this PR doesn't get rebased, it'll be my wall of shame FOREVER! * and then it's even more embarrassing when the commit message says rebased but you really meant squashed * Remove exclusion of `Release` from request models
450 lines
19 KiB
C#
450 lines
19 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Octokit.Tests.Clients
|
|
{
|
|
public class NotificationsClientTests
|
|
{
|
|
public class TheCtor
|
|
{
|
|
[Fact]
|
|
public void EnsuresNonNullArguments()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => new NotificationsClient(null));
|
|
}
|
|
}
|
|
|
|
public class TheGetAllForCurrentMethod
|
|
{
|
|
[Fact]
|
|
public async Task RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
await client.GetAllForCurrent();
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlApiOptions()
|
|
{
|
|
var endpoint = new Uri("notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForCurrent(options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequest()
|
|
{
|
|
var endpoint = new Uri("notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
await client.GetAllForCurrent(notificationsRequest);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<IDictionary<string, string>>(d => d.Count == 2
|
|
&& d["all"] == "true" && d["participating"] == "false"), Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequestWithApiOptions()
|
|
{
|
|
var endpoint = new Uri("notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForCurrent(notificationsRequest, options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<IDictionary<string, string>>(d => d.Count == 2
|
|
&& d["all"] == "true" && d["participating"] == "false"), options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new NotificationsClient(Substitute.For<IApiConnection>());
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForCurrent((ApiOptions)null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForCurrent((NotificationsRequest)null));
|
|
}
|
|
}
|
|
|
|
public class TheGetAllForRepository
|
|
{
|
|
[Fact]
|
|
public async Task RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
await client.GetAllForRepository("banana", "split");
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
await client.GetAllForRepository(1);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlWithApiOptions()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForRepository("banana", "split", options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlWithApiOptionsWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForRepository(1, options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequest()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
await client.GetAllForRepository("banana", "split", notificationsRequest);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<Dictionary<string, string>>(
|
|
d => d.Count == 2 && d["all"] == "true" && d["participating"] == "false"),
|
|
Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequestWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
await client.GetAllForRepository(1, notificationsRequest);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<Dictionary<string, string>>(
|
|
d => d.Count == 2 && d["all"] == "true" && d["participating"] == "false"),
|
|
Args.ApiOptions);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequestWithApiOptions()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForRepository("banana", "split", notificationsRequest, options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<Dictionary<string, string>>(
|
|
d => d.Count == 2 && d["all"] == "true" && d["participating"] == "false"),
|
|
options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task RequestsCorrectUrlNotificationRequestWithApiOptionsWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var notificationsRequest = new NotificationsRequest { All = true };
|
|
|
|
var options = new ApiOptions
|
|
{
|
|
PageCount = 1,
|
|
StartPage = 1,
|
|
PageSize = 1
|
|
};
|
|
|
|
await client.GetAllForRepository(1, notificationsRequest, options);
|
|
|
|
connection.Received().GetAll<Notification>(endpoint, Arg.Is<Dictionary<string, string>>(
|
|
d => d.Count == 2 && d["all"] == "true" && d["participating"] == "false"),
|
|
options);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new NotificationsClient(Substitute.For<IApiConnection>());
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(null, "name"));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(null, "name", ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", null, ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", "name", (ApiOptions)null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(null, "name", new NotificationsRequest()));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", null, new NotificationsRequest()));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", "name", (NotificationsRequest)null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(null, "name", new NotificationsRequest(), ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", null, new NotificationsRequest(), ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", "name", null, ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository("owner", "name", new NotificationsRequest(), null));
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(1, (ApiOptions)null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(1, (NotificationsRequest)null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(1, null, ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAllForRepository(1, new NotificationsRequest(), null));
|
|
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("", "name"));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("owner", ""));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("", "name", ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("owner", "", ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("", "name", new NotificationsRequest()));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("owner", "", new NotificationsRequest()));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("", "name", new NotificationsRequest(), ApiOptions.None));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.GetAllForRepository("owner", "", new NotificationsRequest(), ApiOptions.None));
|
|
}
|
|
}
|
|
|
|
public class TheMarkAsRead
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.MarkAsRead();
|
|
|
|
connection.Received().Put<object>(endpoint, Args.Object);
|
|
}
|
|
}
|
|
|
|
public class TheMarkAsReadForRepository
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.MarkAsReadForRepository("banana", "split");
|
|
|
|
connection.Received().Put<object>(endpoint, Args.Object);
|
|
}
|
|
|
|
[Fact]
|
|
public void RequestsCorrectUrlWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.MarkAsReadForRepository(1);
|
|
|
|
connection.Received().Put<object>(endpoint, Args.Object);
|
|
}
|
|
|
|
[Fact]
|
|
public void RequestsCorrectUrlParameterized()
|
|
{
|
|
var endpoint = new Uri("repos/banana/split/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var markAsReadRequest = new MarkAsReadRequest();
|
|
|
|
client.MarkAsReadForRepository("banana", "split", markAsReadRequest);
|
|
|
|
connection.Received().Put<object>(endpoint, markAsReadRequest);
|
|
}
|
|
|
|
[Fact]
|
|
public void RequestsCorrectUrlParameterizedWithRepositoryId()
|
|
{
|
|
var endpoint = new Uri("repositories/1/notifications", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
var markAsReadRequest = new MarkAsReadRequest();
|
|
|
|
client.MarkAsReadForRepository(1, markAsReadRequest);
|
|
|
|
connection.Received().Put<object>(endpoint, markAsReadRequest);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new NotificationsClient(Substitute.For<IApiConnection>());
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository(null, "name"));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository("owner", null));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository(null, "name", new MarkAsReadRequest()));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository("owner", null, new MarkAsReadRequest()));
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository("owner", "name", null));
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.MarkAsReadForRepository(1, null));
|
|
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.MarkAsReadForRepository("", "name"));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.MarkAsReadForRepository("owner", ""));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.MarkAsReadForRepository("", "name", new MarkAsReadRequest()));
|
|
await Assert.ThrowsAsync<ArgumentException>(() => client.MarkAsReadForRepository("owner", "", new MarkAsReadRequest()));
|
|
}
|
|
}
|
|
|
|
public class TheGetNotification
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications/threads/1", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.Get(1);
|
|
|
|
connection.Received().Get<Notification>(endpoint);
|
|
}
|
|
}
|
|
|
|
public class TheMarkNotificationAsRead
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications/threads/1", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.MarkAsRead(1);
|
|
|
|
connection.Received().Patch(endpoint);
|
|
}
|
|
}
|
|
|
|
public class TheGetThreadSubscription
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications/threads/1/subscription", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.GetThreadSubscription(1);
|
|
|
|
connection.Received().Get<ThreadSubscription>(endpoint);
|
|
}
|
|
}
|
|
|
|
public class TheSetThreadSubscription
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications/threads/1/subscription", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
var data = new NewThreadSubscription();
|
|
|
|
client.SetThreadSubscription(1, data);
|
|
|
|
connection.Received().Put<ThreadSubscription>(endpoint, data);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task EnsuresNonNullArguments()
|
|
{
|
|
var client = new NotificationsClient(Substitute.For<IApiConnection>());
|
|
|
|
await Assert.ThrowsAsync<ArgumentNullException>(() => client.SetThreadSubscription(1, null));
|
|
}
|
|
}
|
|
|
|
public class TheDeleteThreadSubscription
|
|
{
|
|
[Fact]
|
|
public void RequestsCorrectUrl()
|
|
{
|
|
var endpoint = new Uri("notifications/threads/1/subscription", UriKind.Relative);
|
|
var connection = Substitute.For<IApiConnection>();
|
|
var client = new NotificationsClient(connection);
|
|
|
|
client.DeleteThreadSubscription(1);
|
|
|
|
connection.Received().Delete(endpoint);
|
|
}
|
|
}
|
|
}
|
|
}
|