public void RequestsCorrectUrl() { var connection = Substitute.For<IApiConnection>(); var client = new CommitsClient(connection); client.Get("owner", "repo", "reference"); connection.Received().Get<Commit>(Arg.Is<Uri>(u => u.ToString() == "repos/owner/repo/git/commits/reference"), null); }
public async Task RequestsCorrectUrlWithRepositoryId() { var connection = Substitute.For<IApiConnection>(); var client = new CommitsClient(connection); await client.Get(1, "reference"); connection.Received().Get<Commit>(Arg.Is<Uri>(u => u.ToString() == "repositories/1/git/commits/reference")); }
public async Task RequestsCorrectUrl() { var connection = Substitute.For<IApiConnection>(); var client = new CommitsClient(connection); await client.Get("owner", "repo", "reference"); connection.Received().Get<Commit>(Arg.Is<Uri>(u => u.ToString() == "repos/owner/repo/git/commits/reference"), null, "application/vnd.github.cryptographer-preview+sha"); }
public async Task EnsuresNonNullArguments() { var client = new CommitsClient(Substitute.For<IApiConnection>()); await Assert.ThrowsAsync<ArgumentNullException>(() => client.Get(null, "name", "reference")); await Assert.ThrowsAsync<ArgumentNullException>(() => client.Get("owner", null, "reference")); await Assert.ThrowsAsync<ArgumentNullException>(() => client.Get("owner", "name", null)); await Assert.ThrowsAsync<ArgumentNullException>(() => client.Get(1, null)); await Assert.ThrowsAsync<ArgumentException>(() => client.Get("", "name", "reference")); await Assert.ThrowsAsync<ArgumentException>(() => client.Get("owner", "", "reference")); await Assert.ThrowsAsync<ArgumentException>(() => client.Get("owner", "name", "")); await Assert.ThrowsAsync<ArgumentException>(() => client.Get(1, "")); }
public async Task<Commit> GetCommit(string commitSha) { var commitClient = new CommitsClient(apiConn); var commit = await commitClient.Get(Config.GitHubOwner, Config.GitHubRepo, commitSha); return commit; }