Ejemplo n.º 1
0
            public void EnsuresArguments()
            {
                var client = new ObservableRepositoriesClient(Substitute.For <IGitHubClient>());

                Assert.Throws <ArgumentNullException>(() => client.GetAllTeams(null, "repo"));
                Assert.Throws <ArgumentNullException>(() => client.GetAllTeams("owner", null));
                Assert.Throws <ArgumentException>(() => client.GetAllTeams("", "repo"));
                Assert.Throws <ArgumentException>(() => client.GetAllTeams("owner", ""));
            }
Ejemplo n.º 2
0
            public void GetsCorrectUrl()
            {
                var github   = Substitute.For <IGitHubClient>();
                var client   = new ObservableRepositoriesClient(github);
                var expected = new Uri("repos/owner/repo/teams", UriKind.Relative);

                client.GetAllTeams("owner", "repo");

                github.Connection.Received(1).GetResponse <List <Team> >(expected);
            }
            public void RequestsTheCorrectUrlWithRepositoryId()
            {
                var gitHubClient = Substitute.For <IGitHubClient>();
                var client       = new ObservableRepositoriesClient(gitHubClient);
                var expected     = new Uri("repositories/1/teams", UriKind.Relative);

                client.GetAllTeams(1);

                gitHubClient.Connection.Received(1).Get <List <Team> >(expected,
                                                                       Arg.Any <IDictionary <string, string> >(),
                                                                       Arg.Any <string>());
            }
            public void RequestsTheCorrectUrlWithRepositoryIdWithApiOptions()
            {
                var gitHubClient = Substitute.For <IGitHubClient>();
                var client       = new ObservableRepositoriesClient(gitHubClient);
                var expected     = new Uri("repositories/1/teams", UriKind.Relative);

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

                client.GetAllTeams(1, options);

                gitHubClient.Connection.Received(1).Get <List <Team> >(expected,
                                                                       Arg.Is <IDictionary <string, string> >(d => d.Count == 2 && d["page"] == "1" && d["per_page"] == "1"),
                                                                       Arg.Any <string>());
            }