forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgists_spec.rb
More file actions
470 lines (396 loc) · 13.3 KB
/
gists_spec.rb
File metadata and controls
470 lines (396 loc) · 13.3 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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
# encoding: utf-8
require 'spec_helper'
describe Github::Gists do
let(:github) { Github.new }
let(:user) { 'peter-murach' }
let(:gist_id) { '1' }
after { reset_authentication_for(github) }
describe "#list" do
it { github.gists.should respond_to :all }
context "- unauthenticated user" do
context "resource found" do
before do
stub_get("/users/#{user}/gists").
to_return(:body => fixture('gists/gists.json'), :status => 200,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should get the resources" do
github.gists.list :user => user
a_get("/users/#{user}/gists").should have_been_made
end
it "should return array of resources" do
gists = github.gists.list :user => user
gists.should be_an Array
gists.should have(1).items
end
it "should be a mash type" do
gists = github.gists.list :user => user
gists.first.should be_a Hashie::Mash
end
it "should get gist information" do
gists = github.gists.list :user => user
gists.first.user.login.should == 'octocat'
end
it "should yield to a block" do
github.gists.should_receive(:list).with(user).and_yield('web')
github.gists.list(user) { |param| 'web' }
end
end
context "resource not found" do
before do
stub_get("/users/#{user}/gists").
to_return(:body => "", :status => [404, "Not Found"])
end
it "should return 404 with a message 'Not Found'" do
expect {
github.gists.list :user => user
}.to raise_error(Github::Error::NotFound)
end
end
end # unauthenticated user
context '- public' do
before do
stub_get("/gists/public").
to_return(:body => fixture('gists/gists.json'), :status => 200,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should get the resources" do
github.gists.list
a_get("/gists/public").should have_been_made
end
end
context '- authenticated user' do
before do
github.oauth_token = OAUTH_TOKEN
stub_get("/gists").
with(:query => {:access_token => OAUTH_TOKEN}).
to_return(:body => fixture('gists/gists.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
# after { github.oauth_token = nil }
it "should get the resources" do
github.gists.list
a_get("/gists").with(:query => {:access_token => OAUTH_TOKEN}).
should have_been_made
end
end
end # list
describe "#starred" do
context "resource found" do
before do
stub_get("/gists/starred").
to_return(:body => fixture('gists/gists.json'), :status => 200, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should get the resources" do
github.gists.starred
a_get("/gists/starred").should have_been_made
end
it "should return array of resources" do
gists = github.gists.starred
gists.should be_an Array
gists.should have(1).items
end
it "should be a mash type" do
gists = github.gists.starred
gists.first.should be_a Hashie::Mash
end
it "should get gist information" do
gists = github.gists.starred
gists.first.user.login.should == 'octocat'
end
it "should yield to a block" do
github.gists.should_receive(:starred).and_yield('web')
github.gists.starred() { |param| 'web' }
end
end
context "resource not found" do
before do
stub_get("/gists/starred").
to_return(:body => "", :status => [404, "Not Found"])
end
it "should return 404 with a message 'Not Found'" do
expect {
github.gists.starred
}.to raise_error(Github::Error::NotFound)
end
end
end # starred
describe "#get" do
it { github.gists.should respond_to :find }
context "resource found" do
before do
stub_get("/gists/#{gist_id}").
to_return(:body => fixture('gists/gist.json'), :status => 200,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to get resource without gist id" do
expect { github.gists.get nil }.to raise_error(ArgumentError)
end
it "should get the resource" do
github.gists.get gist_id
a_get("/gists/#{gist_id}").should have_been_made
end
it "should get gist information" do
gist = github.gists.get gist_id
gist.id.should eq gist_id
gist.user.login.should == 'octocat'
end
it "should return mash" do
gist = github.gists.get gist_id
gist.should be_a Hashie::Mash
end
end
context "resource not found" do
before do
stub_get("/gists/#{gist_id}").
to_return(:body => fixture('gists/gist.json'), :status => 404, :headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrive resource" do
expect {
github.gists.get gist_id
}.to raise_error(Github::Error::NotFound)
end
end
end # get
describe "#create" do
let(:inputs) {
{
"description" => "the description for this gist",
"public" => true,
"files" => {
"file1.txt" => {
"content" => "String file contents"
}
},
}
}
context "resouce created" do
before do
stub_post("/gists").
with(:body => JSON.generate(inputs)).
to_return(:body => fixture('gists/gist.json'),
:status => 201,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to create resource if 'files' input is missing" do
expect {
github.gists.create inputs.except('files')
}.to raise_error(Github::Error::RequiredParams)
end
it "should fail to create resource if 'content' input is missing" do
pending 'add validation for nested attributes'
expect {
github.gists.create inputs.except('content')
}.to raise_error(Github::Error::RequiredParams)
end
it "should fail to create resource if 'public' input is missing" do
expect {
github.gists.create inputs.except('public')
}.to raise_error(Github::Error::RequiredParams)
end
it "should create resource successfully" do
github.gists.create inputs
a_post("/gists").with(inputs).should have_been_made
end
it "should return the resource" do
gist = github.gists.create inputs
gist.should be_a Hashie::Mash
end
it "should get the gist information" do
gist = github.gists.create inputs
gist.user.login.should == 'octocat'
end
end
context "failed to create resource" do
before do
stub_post("/gists").with(inputs).
to_return(:body => fixture('gists/gist.json'),
:status => 404,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should faile to retrieve resource" do
expect {
github.gists.create inputs
}.to raise_error(Github::Error::NotFound)
end
end
end # create
describe "#edit" do
let(:inputs) {
{
"description" => "the description for this gist",
"files" => {
"file1.txt" => {
"content" => "updated file contents"
},
"old_name.txt" => {
"filename" => "new_name.txt",
"content" => "modified contents"
},
"new_file.txt" => {
"content" => "a new file"
},
"delete_this_file.txt" => nil
}
}
}
context "resouce edited" do
before do
stub_patch("/gists/#{gist_id}").
with(:body => JSON.generate(inputs)).
to_return(:body => fixture('gists/gist.json'),
:status => 200,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should edit resource successfully" do
github.gists.edit gist_id, inputs
a_patch("/gists/#{gist_id}").with(inputs).should have_been_made
end
it "should return the resource" do
gist = github.gists.edit gist_id, inputs
gist.should be_a Hashie::Mash
end
it "should get the gist information" do
gist = github.gists.edit gist_id, inputs
gist.user.login.should == 'octocat'
end
end
context "failed to edit resource" do
before do
stub_patch("/gists/#{gist_id}").with(inputs).
to_return(:body => fixture('gists/gist.json'),
:status => 404,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to retrieve resource" do
expect {
github.gists.edit gist_id, inputs
}.to raise_error(Github::Error::NotFound)
end
end
end # edit
context '#star' do
before do
stub_put("/gists/#{gist_id}/star").
to_return(:body => '',
:status => 204,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should raise error if gist id not present" do
expect {
github.gists.star nil
}.to raise_error(ArgumentError)
end
it 'successfully stars a gist' do
github.gists.star gist_id
a_put("/gists/#{gist_id}/star").should have_been_made
end
it "should return 204 with a message 'Not Found'" do
github.gists.star(gist_id).status.should be 204
end
end # star
context '#unstar' do
before do
stub_delete("/gists/#{gist_id}/star").
to_return(:body => '',
:status => 204,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should raise error if gist id not present" do
expect {
github.gists.unstar nil
}.to raise_error(ArgumentError)
end
it 'successfully stars a gist' do
github.gists.unstar gist_id
a_delete("/gists/#{gist_id}/star").should have_been_made
end
it "should return 204 with a message 'Not Found'" do
github.gists.unstar(gist_id).status.should be 204
end
end # unstar
context '#starred?' do
before do
stub_get("/gists/#{gist_id}/star").
to_return(:body => '',
:status => 204,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it 'should raise error if gist id not present' do
expect {
github.gists.starred? nil
}.to raise_error(ArgumentError)
end
it 'should perform request' do
github.gists.starred? gist_id
a_get("/gists/#{gist_id}/star").should have_been_made
end
it 'should return true if gist is already starred' do
github.gists.starred?(gist_id).should be_true
end
it 'should return false if gist is not starred' do
stub_get("/gists/#{gist_id}/star").
to_return(:body => '',
:status => 404,
:headers => {:content_type => "application/json; charset=utf-8"})
github.gists.starred?(gist_id).should be_false
end
end # starred?
context '#fork' do
before do
stub_post("/gists/#{gist_id}/fork").
to_return(:body => fixture('gists/gist.json'),
:status => 201,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it "should fail to fork gist without gist id" do
expect { github.gists.fork(nil) }.to raise_error(ArgumentError)
end
it "should fork resource successfully" do
github.gists.fork gist_id
a_post("/gists/#{gist_id}/fork").should have_been_made
end
it "should return the resource" do
gist = github.gists.fork gist_id
gist.should be_a Hashie::Mash
end
it "should get the gist information" do
gist = github.gists.fork gist_id
gist.user.login.should == 'octocat'
end
it 'fails to retrieve resource' do
stub_post("/gists/#{gist_id}/fork").
to_return(:body => '',
:status => 404,
:headers => {:content_type => "application/json; charset=utf-8"})
expect {
github.gists.fork gist_id
}.to raise_error(Github::Error::NotFound)
end
end # fork
context "#delete" do
before do
stub_delete("/gists/#{gist_id}").
to_return(:body => fixture('gists/gist.json'),
:status => 204,
:headers => {:content_type => "application/json; charset=utf-8"})
end
it 'should raise error if gist id not present' do
expect {
github.gists.delete nil
}.to raise_error(ArgumentError)
end
it "should remove resource successfully" do
github.gists.delete gist_id
a_delete("/gists/#{gist_id}").should have_been_made
end
it "fails to delete resource" do
stub_delete("/gists/#{gist_id}").
to_return(:body => '',
:status => 404,
:headers => {:content_type => "application/json; charset=utf-8"})
expect {
github.gists.delete gist_id
}.to raise_error(Github::Error::NotFound)
end
end # delete
end # Github::Gists