Skip to content

Commit 35de1cc

Browse files
rick2047maleadt
andauthored
Add method to get commits from a PR (#190)
Co-authored-by: Tim Besard <tim.besard@gmail.com>
1 parent d7be401 commit 35de1cc

File tree

3 files changed

+40
-6
lines changed

3 files changed

+40
-6
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Here's a table that matches up the provided `GitHubType`s with their correspondi
5151
| `Label` | name, e.g. `bug` | [issue labels](https://docs.github.com/en/rest/reference/issues#labels)
5252
| `Status` | id, e.g. `366961773` | [commit statuses](https://developer.github.com/v3/repos/statuses/) |
5353
| `PullRequest` | number, e.g. `44` | [pull requests](https://developer.github.com/v3/pulls/) |
54+
| `PullRequestFile` | filename, e.g. `file1.txt` | [pull request files](https://docs.github.com/en/rest/reference/pulls#list-pull-requests-files) |
5455
| `Issue` | number, e.g. `31` | [issues](https://developer.github.com/v3/issues/) |
5556
| `Team` | id, e.g. `1` | [teams](https://developer.github.com/v3/orgs/teams) |
5657
| `Gist` | id, e.g. `0bace7cc774df4b3a4b0ee9aaa271ef6` | [gists](https://developer.github.com/v3/gists) |
@@ -110,6 +111,7 @@ GitHub.jl implements a bunch of methods that make REST requests to GitHub's API.
110111
| `set_topics(repo, topics)` | `Vector{String}` | [set the list of topics of a repository.)](https://docs.github.com/en/rest/repos/repos#replace-all-repository-topics) |
111112
| `commit(repo, sha)` | `Commit` | [get the commit specified by `sha`](https://developer.github.com/v3/repos/commits/#get-a-single-commit) |
112113
| `commits(repo)` | `Tuple{Vector{Commit}, Dict}` | [get `repo`'s commits](https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository) |
114+
| `commits(repo, pr)` | `Tuple{Vector{Commit}, Dict}` | [get `pr`'s commits for `repo`](https://docs.github.com/en/rest/reference/pulls#list-commits-on-a-pull-request) |
113115
| `branch(repo, branch)` | `Branch` | [get the branch specified by `branch`](https://developer.github.com/v3/repos/#get-branch) |
114116
| `branches(repo)` | `Tuple{Vector{Branch}, Dict}` | [get `repo`'s branches](https://developer.github.com/v3/repos/#list-branches) |
115117
| `file(repo, path)` | `Content` | [get the file specified by `path`](https://developer.github.com/v3/repos/contents/#get-contents) |
@@ -138,6 +140,7 @@ GitHub.jl implements a bunch of methods that make REST requests to GitHub's API.
138140
|---------------------------------|------------------------------------|------------------------------------------------------------------------------------------------------------|
139141
| `pull_request(repo, pr)` | `PullRequest` | [get the pull request specified by `pr`](https://developer.github.com/v3/pulls/#get-a-single-pull-request) |
140142
| `pull_requests(repo)` | `Tuple{Vector{PullRequest}, Dict}` | [get `repo`'s pull requests](https://developer.github.com/v3/pulls/#list-pull-requests) |
143+
| `pull_request_files(repo, pr)` | `Tuple{Vector{PullRequestFiles}, Dict}` | [get this `repo`'s `pr`'s file changes](https://docs.github.com/en/rest/reference/pulls#list-pull-requests-files) |
141144
| `create_pull_request(repo)` | `PullRequest` | [create pull request in `repo`](https://developer.github.com/v3/pulls/#create-a-pull-request) |
142145
| `update_pull_request(repo, pr)` | `PullRequest` | [update the given `pr` in `repo`](https://developer.github.com/v3/pulls/#update-a-pull-request) |
143146
| `close_pull_request(repo, pr)` | `PullRequest` | [close the given `pr` in `repo`](https://developer.github.com/v3/pulls/#update-a-pull-request) |

src/repositories/commits.jl

+19-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,29 @@ namefield(commit::Commit) = commit.sha
2525
# API Methods #
2626
###############
2727

28-
@api_default function commits(api::GitHubAPI, repo; options...)
28+
# repo #
29+
#------#
30+
31+
@api_default function commits(api::GitHubAPI, repo::Union{Repo,String}; options...)
2932
results, page_data = gh_get_paged_json(api, "/repos/$(name(repo))/commits"; options...)
3033
return map(Commit, results), page_data
3134
end
3235

33-
@api_default function commit(api::GitHubAPI, repo, sha; options...)
36+
@api_default function commit(api::GitHubAPI, repo, sha::Union{Commit,String}; options...)
3437
result = gh_get_json(api, "/repos/$(name(repo))/commits/$(name(sha))"; options...)
3538
return Commit(result)
3639
end
40+
41+
# pull request #
42+
#--------------#
43+
44+
@api_default function commits(api::GitHubAPI, pr; options...)
45+
repo = pr.base.repo
46+
results, page_data = gh_get_paged_json(api, "/repos/$(name(repo))/pulls/$(name(pr))/commits"; options...)
47+
return map(Commit, results), page_data
48+
end
49+
50+
@api_default function commits(api::GitHubAPI, repo, pr; options...)
51+
results, page_data = gh_get_paged_json(api, "/repos/$(name(repo))/pulls/$(name(pr))/commits"; options...)
52+
return map(Commit, results), page_data
53+
end

test/read_only_api_tests.jl

+18-4
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,6 @@ end
7474
@test name(branch(ghjl, "master"; auth = auth)) == "master"
7575
@test hasghobj("master", first(branches(ghjl; auth = auth)))
7676

77-
# test GitHub.commit, GitHub.commits
78-
@test name(commit(ghjl, testcommit; auth = auth)) == name(testcommit)
79-
@test hasghobj(testcommit, first(commits(ghjl; auth = auth)))
80-
8177
# test GitHub.file, GitHub.directory, GitHub.readme, GitHub.permalink
8278
readme_file = file(ghjl, "README.md"; auth = auth)
8379
src_dir = first(directory(ghjl, "src"; auth = auth))
@@ -106,6 +102,24 @@ end
106102
# @test iscollaborator(ghjl, "jrevels"; auth = auth)
107103
end
108104

105+
@testset "Commits" begin
106+
# of a repo
107+
@test name(commit(ghjl, testcommit; auth = auth)) == name(testcommit)
108+
@test hasghobj(testcommit, first(commits(ghjl; auth = auth)))
109+
110+
# of a pull request
111+
let pr = pull_request(ghjl, 37; auth = auth)
112+
commit_vec, page_data = commits(pr; auth = auth)
113+
@test commit_vec isa Vector{Commit}
114+
@test length(commit_vec) == 1
115+
end
116+
let
117+
commit_vec, page_data = commits(ghjl, 37; auth = auth)
118+
@test commit_vec isa Vector{Commit}
119+
@test length(commit_vec) == 1
120+
end
121+
end
122+
109123
@testset "Issues" begin
110124
state_param = Dict("state" => "all")
111125

0 commit comments

Comments
 (0)