forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthorizations_spec.rb
More file actions
245 lines (193 loc) · 8.01 KB
/
authorizations_spec.rb
File metadata and controls
245 lines (193 loc) · 8.01 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# encoding: utf-8
require 'spec_helper'
describe Github::Authorizations do
let(:github) { Github.new }
let(:basic_auth) { 'login:password' }
before do
github.basic_auth = basic_auth
end
after do
reset_authentication_for github
end
describe "authorizations" do
it { github.authorizations.should respond_to :all }
context "resource found" do
before do
stub_get("/authorizations", "https://#{basic_auth}@api.github.com").
to_return(:body => fixture('auths/authorizations.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to get resource without basic authentication" do
reset_authentication_for github
expect { github.oauth.list }.to raise_error(ArgumentError)
end
it "should get the resources" do
github.oauth.list
a_get("/authorizations", "https://#{basic_auth}@api.github.com").should have_been_made
end
it "should return array of resources" do
authorizations = github.oauth.list
authorizations.should be_an Array
authorizations.should have(1).items
end
it "should be a mash type" do
authorizations = github.oauth.list
authorizations.first.should be_a Hashie::Mash
end
it "should get authorization information" do
authorizations = github.oauth.list
authorizations.first.token.should == 'abc123'
end
it "should yield to a block" do
github.oauth.should_receive(:list).and_yield('web')
github.oauth.list { |param| 'web' }
end
end
context "resource not found" do
before do
stub_get("/authorizations", "https://#{basic_auth}@api.github.com").
to_return(:body => "", :status => [404, "Not Found"])
end
it "should return 404 with a message 'Not Found'" do
expect { github.oauth.list }.to raise_error(Github::Error::NotFound)
end
end
end # authorizations
describe "#get" do
let(:authorization_id) { 1 }
context "resource found" do
before do
stub_get("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").
to_return(:body => fixture('auths/authorization.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to get resource without authorization id" do
expect { github.oauth.get nil }.to raise_error(ArgumentError)
end
it "should get the resource" do
github.oauth.get authorization_id
a_get("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").should have_been_made
end
it "should get authorization information" do
authorization = github.oauth.get authorization_id
authorization.id.should == authorization_id
authorization.token.should == 'abc123'
end
it "should return mash" do
authorization = github.oauth.get authorization_id
authorization.should be_a Hashie::Mash
end
end
context "resource not found" do
before do
stub_get("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").
to_return(:body => fixture('auths/authorization.json'), :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrive resource" do
expect {
github.oauth.get authorization_id
}.to raise_error(Github::Error::NotFound)
end
end
end # list
describe "#create" do
let(:inputs) { { :scopes => ['repo'] } }
context "resouce created" do
it "should fail to get resource without basic authentication" do
reset_authentication_for github
expect { github.oauth.create }.to raise_error(ArgumentError)
end
before do
stub_post("/authorizations", "https://#{basic_auth}@api.github.com").with(inputs).
to_return(:body => fixture('auths/authorization.json'), :status => 201, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should create resource successfully" do
github.oauth.create inputs
a_post("/authorizations", "https://#{basic_auth}@api.github.com").with(inputs).should have_been_made
end
it "should return the resource" do
authorization = github.oauth.create inputs
authorization.should be_a Hashie::Mash
end
it "should get the authorization information" do
authorization = github.oauth.create inputs
authorization.token.should == 'abc123'
end
end
context "failed to create resource" do
before do
stub_post("/authorizations", "https://#{basic_auth}@api.github.com").with(inputs).
to_return(:body => '', :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrieve resource" do
expect {
github.oauth.create inputs
}.to raise_error(Github::Error::NotFound)
end
end
end # create
describe "#update" do
let(:authorization_id) { 1 }
let(:inputs) { { :add_scopes => ['repo'] } }
context "resouce updated" do
it "should fail to get resource without basic authentication" do
reset_authentication_for github
expect { github.oauth.update }.to raise_error(ArgumentError)
end
before do
stub_patch("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").with(inputs).
to_return(:body => fixture('auths/authorization.json'), :status => 201, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should update resource successfully" do
github.oauth.update authorization_id, inputs
a_patch("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").with(inputs).should have_been_made
end
it "should return the resource" do
authorization = github.oauth.update authorization_id, inputs
authorization.should be_a Hashie::Mash
end
it "should get the authorization information" do
authorization = github.oauth.update authorization_id, inputs
authorization.token.should == 'abc123'
end
end
context "failed to update resource" do
before do
stub_patch("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").with(inputs).
to_return(:body => '', :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrieve resource" do
expect {
github.oauth.update authorization_id, inputs
}.to raise_error(Github::Error::NotFound)
end
end
end # update
describe "#delete" do
let(:authorization_id) { 1 }
let(:inputs) { { :add_scopes => ['repo'] } }
context "resouce deleted" do
it "should fail to get resource without basic authentication" do
reset_authentication_for github
expect { github.oauth.delete nil }.to raise_error(ArgumentError)
end
before do
stub_delete("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").
to_return(:body => '', :status => 204, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should delete resource successfully" do
github.oauth.delete authorization_id
a_delete("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").should have_been_made
end
end
context "failed to create resource" do
before do
stub_delete("/authorizations/#{authorization_id}", "https://#{basic_auth}@api.github.com").
to_return(:body => '', :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrieve resource" do
expect {
github.oauth.delete authorization_id
}.to raise_error(Github::Error::NotFound)
end
end
end # delete
end # Github::Authorizations