File tree 3 files changed +20
-1
lines changed
3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ # ###############
2
+ # Blob Type #
3
+ # ###############
4
+
1
5
@ghdef mutable struct Blob
2
6
content:: Union{String, Nothing}
3
7
encoding:: Union{String, Nothing}
@@ -10,6 +14,15 @@ Blob(sha::AbstractString) = Blob(Dict("sha" => sha))
10
14
11
15
namefield (blob:: Blob ) = blob. sha
12
16
17
+ function Base. String (blob:: Blob )
18
+ @assert blob. encoding == " base64"
19
+ String (base64decode (blob. content))
20
+ end
21
+
22
+ # ##############
23
+ # API Methods #
24
+ # ##############
25
+
13
26
@api_default function blob (api:: GitHubAPI , repo, blob_obj; options... )
14
27
result = gh_get_json (api, " /repos/$(name (repo)) /git/blobs/$(name (blob_obj)) " ; options... )
15
28
return Blob (result)
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ Content(path::AbstractString) = Content(Dict("path" => path))
23
23
24
24
namefield (content:: Content ) = content. path
25
25
26
+ function Base. String (content:: Content )
27
+ @assert content. encoding == " base64"
28
+ String (base64decode (content. content))
29
+ end
30
+
26
31
# ##############
27
32
# API Methods #
28
33
# ##############
Original file line number Diff line number Diff line change 91
91
@test readme_permalink == " https://github.com/JuliaWeb/GitHub.jl/blob/$(test_sha) /README.md"
92
92
@test owners_permalink == " https://github.com/JuliaWeb/GitHub.jl/tree/$(test_sha) /src/owners"
93
93
@test readme_file == readme (ghjl; auth = auth)
94
+ @test occursin (" GitHub.jl" , String (readme_file))
94
95
@test hasghobj (" src/GitHub.jl" , src_dir)
95
96
96
97
# test GitHub.status, GitHub.statuses
225
226
@test entry[" type" ] == " blob"
226
227
227
228
b = blob (github_jl, entry[" sha" ]; auth= auth)
228
- @test occursin (" GitHub.jl" , String (base64decode ( replace (b . content, " \n " => " " )) ))
229
+ @test occursin (" GitHub.jl" , String (b ))
229
230
230
231
break
231
232
end
You can’t perform that action at this time.
0 commit comments