public void RequestsCorrectUrlNotificationRequestWithApiOptions()
            {
                var endpoint     = new Uri("repos/banana/split/notifications", UriKind.Relative);
                var connection   = Substitute.For <IConnection>();
                var gitHubClient = new GitHubClient(connection);
                var client       = new ObservableNotificationsClient(gitHubClient);

                var notificationsRequest = new NotificationsRequest {
                    All = true
                };

                var options = new ApiOptions
                {
                    PageCount = 1,
                    StartPage = 1,
                    PageSize  = 1
                };

                client.GetAllForRepository("banana", "split", notificationsRequest, options);

                connection.Received().Get <List <Notification> >(endpoint, Arg.Is <Dictionary <string, string> >(
                                                                     d => d.Count == 4 && d["all"] == "true" && d["participating"] == "false" &&
                                                                     d["page"] == "1" && d["per_page"] == "1"),
                                                                 null);
            }
            public void RequestsCorrectUrl()
            {
                var endpoint     = new Uri("repos/banana/split/notifications", UriKind.Relative);
                var connection   = Substitute.For <IConnection>();
                var gitHubClient = new GitHubClient(connection);
                var client       = new ObservableNotificationsClient(gitHubClient);

                client.GetAllForRepository("banana", "split");

                connection.Received().Get <List <Notification> >(endpoint, Args.EmptyDictionary, null);
            }
            public void RequestsCorrectUrlNotificationRequestWithRepositoryId()
            {
                var endpoint     = new Uri("repositories/1/notifications", UriKind.Relative);
                var connection   = Substitute.For <IConnection>();
                var gitHubClient = new GitHubClient(connection);
                var client       = new ObservableNotificationsClient(gitHubClient);

                var notificationsRequest = new NotificationsRequest {
                    All = true
                };

                client.GetAllForRepository(1, notificationsRequest);

                connection.Received().Get <List <Notification> >(endpoint, Arg.Is <Dictionary <string, string> >(
                                                                     d => d.Count == 2 && d["all"] == "true" && d["participating"] == "false"),
                                                                 null);
            }
            public void RequestsCorrectUrlWithApiOptions()
            {
                var endpoint     = new Uri("repos/banana/split/notifications", UriKind.Relative);
                var connection   = Substitute.For <IConnection>();
                var gitHubClient = new GitHubClient(connection);
                var client       = new ObservableNotificationsClient(gitHubClient);

                var options = new ApiOptions
                {
                    PageCount = 1,
                    StartPage = 1,
                    PageSize  = 1
                };

                client.GetAllForRepository("banana", "split", options);

                connection.Received().Get <List <Notification> >(endpoint, Arg.Is <Dictionary <string, string> >(d => d.Count == 2), null);
            }
            public async Task EnsuresNonNullArguments()
            {
                var client = new ObservableNotificationsClient(Substitute.For <IGitHubClient>());

                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository(null, "name"));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository("owner", null));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository(null, "name", ApiOptions.None));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository("owner", null, ApiOptions.None));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository("owner", "name", (ApiOptions)null));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository(null, "name", new NotificationsRequest()));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository("owner", null, new NotificationsRequest()));
                Assert.Throws <ArgumentNullException>(() => client.GetAllForRepository("owner", "name", (NotificationsRequest)null));

                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("", "name"));
                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("owner", ""));
                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("", "name", ApiOptions.None));
                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("owner", "", ApiOptions.None));
                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("", "name", new NotificationsRequest()));
                Assert.Throws <ArgumentException>(() => client.GetAllForRepository("owner", "", new NotificationsRequest()));
            }