forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrees_spec.rb
More file actions
142 lines (116 loc) · 4.38 KB
/
Copy pathtrees_spec.rb
File metadata and controls
142 lines (116 loc) · 4.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# encoding: utf-8
require 'spec_helper'
describe Github::GitData::Trees do
let(:github) { Github.new }
let(:user) { 'peter-murach' }
let(:repo) { 'github' }
let(:sha) { "9fb037999f264ba9a7fc6274d15fa3ae2ab98312" }
after { github.user, github.repo, github.oauth_token = nil, nil, nil }
it { described_class::VALID_TREE_PARAM_NAMES.should_not be_nil }
describe "#get" do
it { github.git_data.trees.should respond_to :find }
context "non-resursive" do
before do
stub_get("/repos/#{user}/#{repo}/git/trees/#{sha}").
to_return(:body => fixture('git_data/tree.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to get resource without sha" do
expect {
github.git_data.trees.get user, repo, nil
}.to raise_error(ArgumentError)
end
it "should get the resource" do
github.git_data.trees.get user, repo, sha
a_get("/repos/#{user}/#{repo}/git/trees/#{sha}").should have_been_made
end
it "should get tree information" do
tree = github.git_data.trees.get user, repo, sha
tree.sha.should eql sha
end
it "should return mash" do
tree = github.git_data.trees.get user, repo, sha
tree.should be_a Hashie::Mash
end
end
context "resursive" do
before do
stub_get("/repos/#{user}/#{repo}/git/trees/#{sha}?recursive=1").
to_return(:body => fixture('git_data/tree.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should get the resource" do
github.git_data.trees.get user, repo, sha, 'recursive' => true
a_get("/repos/#{user}/#{repo}/git/trees/#{sha}?recursive=1").should have_been_made
end
it "should get tree information" do
tree = github.git_data.trees.get user, repo, sha, 'recursive' => true
tree.sha.should eql sha
end
it "should return mash" do
tree = github.git_data.trees.get user, repo, sha, 'recursive' => true
tree.should be_a Hashie::Mash
end
end
context "resource not found" do
before do
stub_get("/repos/#{user}/#{repo}/git/trees/#{sha}").
to_return(:body => fixture('git_data/tree.json'), :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrive resource" do
expect {
github.git_data.trees.get user, repo, sha
}.to raise_error(Github::Error::NotFound)
end
end
end # get
describe "#create" do
let(:inputs) {
{
"tree" => [
{
"path" => "file.rb",
"mode" => "100644",
"type" => "blob",
"sha" => "44b4fc6d56897b048c772eb4087f854f46256132"
}
]
}
}
context "resouce created" do
before do
stub_post("/repos/#{user}/#{repo}/git/trees").
with(inputs).
to_return(:body => fixture('git_data/tree.json'),
:status => 201,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to create resource if 'content' input is missing" do
expect {
github.git_data.trees.create user, repo, inputs.except('tree')
}.to raise_error(Github::Error::RequiredParams)
end
it "should create resource successfully" do
github.git_data.trees.create user, repo, inputs
a_post("/repos/#{user}/#{repo}/git/trees").with(inputs).should have_been_made
end
it "should return the resource" do
tree_sha = github.git_data.trees.create user, repo, inputs
tree_sha.should be_a Hashie::Mash
end
it "should get the tree information" do
tree_sha = github.git_data.trees.create user, repo, inputs
tree_sha.sha.should == sha
end
end
context "failed to create resource" do
before do
stub_post("/repos/#{user}/#{repo}/git/trees").with(inputs).
to_return(:body => fixture('git_data/tree.json'), :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should faile to retrieve resource" do
expect {
github.git_data.trees.create user, repo, inputs
}.to raise_error(Github::Error::NotFound)
end
end
end # create
end # Github::GitData::Trees