|
13 | 13 | )
|
14 | 14 |
|
15 | 15 | proc do
|
16 |
| - Fog::OpenStack::Auth::Token.build({}) |
| 16 | + Fog::OpenStack::Auth::Token.build({}, {}) |
17 | 17 | end.must_raise Fog::OpenStack::Auth::Token::URLError
|
18 | 18 | end
|
19 | 19 |
|
|
36 | 36 | :headers => {'x-subject-token'=>'token_data_v3'}
|
37 | 37 | )
|
38 | 38 |
|
39 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 39 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
40 | 40 | token.get.must_equal 'token_data_v3'
|
41 | 41 | end
|
42 | 42 |
|
|
59 | 59 | :headers => {'x-subject-token'=>'token_data'}
|
60 | 60 | )
|
61 | 61 |
|
62 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 62 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
63 | 63 | token.get.must_equal 'token_data'
|
64 | 64 | end
|
65 | 65 |
|
|
83 | 83 | :headers => {'x-subject-token'=>'token_data'}
|
84 | 84 | )
|
85 | 85 |
|
86 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 86 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
87 | 87 | token.get.must_equal 'token_data'
|
88 | 88 | end
|
89 | 89 | end
|
|
106 | 106 | :headers => {'x-subject-token'=>'token_data'}
|
107 | 107 | )
|
108 | 108 |
|
109 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 109 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
110 | 110 | token.get.must_equal 'token_data'
|
111 | 111 | end
|
112 | 112 |
|
|
127 | 127 | :headers => {'x-subject-token'=>'token_data'}
|
128 | 128 | )
|
129 | 129 |
|
130 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 130 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
131 | 131 | token.get.must_equal 'token_data'
|
132 | 132 | end
|
133 | 133 | end
|
|
149 | 149 | :headers => {'x-subject-token'=>'token_data'}
|
150 | 150 | )
|
151 | 151 |
|
152 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 152 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
153 | 153 | token.get.must_equal 'token_data'
|
154 | 154 | end
|
155 | 155 | end
|
|
171 | 171 | :headers => {'x-subject-token'=>'token_data'}
|
172 | 172 | )
|
173 | 173 |
|
174 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 174 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
175 | 175 | token.get.must_equal 'token_data'
|
176 | 176 | end
|
177 | 177 | end
|
|
193 | 193 | :headers => {'x-subject-token'=>'token_data'}
|
194 | 194 | )
|
195 | 195 |
|
196 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 196 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
197 | 197 | token.get.must_equal 'token_data'
|
198 | 198 | end
|
199 | 199 |
|
|
214 | 214 | :headers => {'x-subject-token'=>'token_data'}
|
215 | 215 | )
|
216 | 216 |
|
217 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 217 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
218 | 218 | token.get.must_equal 'token_data'
|
219 | 219 | end
|
220 | 220 | end
|
|
236 | 236 | :headers => {'x-subject-token'=>'token_data'}
|
237 | 237 | )
|
238 | 238 |
|
239 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 239 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
240 | 240 | token.get.must_equal 'token_data'
|
241 | 241 | end
|
242 | 242 |
|
|
256 | 256 | :headers => {'x-subject-token'=>'token_data'}
|
257 | 257 | )
|
258 | 258 |
|
259 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 259 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
260 | 260 | token.get.must_equal 'token_data'
|
261 | 261 | end
|
262 | 262 | end
|
|
283 | 283 | :headers => {'x-subject-token'=>'token_data'}
|
284 | 284 | )
|
285 | 285 |
|
286 |
| - token = Fog::OpenStack::Auth::Token.build(authv3_creds) |
| 286 | + token = Fog::OpenStack::Auth::Token.build(authv3_creds, {}) |
287 | 287 | token.stub :expired?, false do
|
288 | 288 | token.get.must_equal 'token_data'
|
289 | 289 | end
|
|
297 | 297 | :headers => {'x-subject-token'=>'token_data'}
|
298 | 298 | )
|
299 | 299 |
|
300 |
| - token = Fog::OpenStack::Auth::Token.build(authv3_creds) |
| 300 | + token = Fog::OpenStack::Auth::Token.build(authv3_creds, {}) |
301 | 301 | token.stub :expired?, true do
|
302 | 302 | token.get.must_equal 'token_data'
|
303 | 303 | end
|
|
312 | 312 | :headers => {'x-subject-token'=>'token_data'}
|
313 | 313 | )
|
314 | 314 |
|
315 |
| - token = Fog::OpenStack::Auth::Token.build(authv3_creds) |
| 315 | + token = Fog::OpenStack::Auth::Token.build(authv3_creds, {}) |
316 | 316 | token.catalog.payload.must_equal ['catalog_data']
|
317 | 317 | end
|
318 | 318 |
|
|
324 | 324 | :headers => {'x-subject-token'=>'token_data'}
|
325 | 325 | )
|
326 | 326 |
|
327 |
| - token = Fog::OpenStack::Auth::Token.build(authv3_creds) |
| 327 | + token = Fog::OpenStack::Auth::Token.build(authv3_creds, {}) |
328 | 328 | token.catalog.get_endpoint_url(%w[identity], 'public', 'regionOne').must_equal 'http://localhost'
|
329 | 329 | end
|
330 | 330 | end
|
|
337 | 337 | to_return(:status => 200, :body => "{\"access\":{\"token\":{\"id\":\"token_data\"}}}", :headers => {})
|
338 | 338 |
|
339 | 339 | proc do
|
340 |
| - Fog::OpenStack::Auth::Token.build({}) |
| 340 | + Fog::OpenStack::Auth::Token.build({}, {}) |
341 | 341 | end.must_raise Fog::OpenStack::Auth::Token::URLError
|
342 | 342 | end
|
343 | 343 |
|
|
355 | 355 | \"tenantName\":\"tenant\"}}").
|
356 | 356 | to_return(:status => 200, :body => JSON.dump(auth_response_v2('identity', 'keystone')), :headers => {})
|
357 | 357 |
|
358 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 358 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
359 | 359 | token.get.must_equal '4ae647d3a5294690a3c29bc658e17e26'
|
360 | 360 | end
|
361 | 361 |
|
|
372 | 372 | \"tenantId\":\"tenant_id\"}}").
|
373 | 373 | to_return(:status => 200, :body => JSON.dump(auth_response_v2('identity', 'keystone')), :headers => {})
|
374 | 374 |
|
375 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 375 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
376 | 376 | token.get.must_equal '4ae647d3a5294690a3c29bc658e17e26'
|
377 | 377 | end
|
378 | 378 | end
|
|
389 | 389 | with(:body => "{\"auth\":{\"token\":{\"id\":\"token_id\"},\"tenantName\":\"tenant\"}}").
|
390 | 390 | to_return(:status => 200, :body => JSON.dump(auth_response_v2('identity', 'keystone')), :headers => {})
|
391 | 391 |
|
392 |
| - token = Fog::OpenStack::Auth::Token.build(auth) |
| 392 | + token = Fog::OpenStack::Auth::Token.build(auth, {}) |
393 | 393 | token.get.must_equal '4ae647d3a5294690a3c29bc658e17e26'
|
394 | 394 | end
|
395 | 395 |
|
|
404 | 404 | with(:body => "{\"auth\":{\"token\":{\"id\":\"token_id\"},\"tenantId\":\"tenant_id\"}}").
|
405 | 405 | to_return(:status => 200, :body => JSON.dump(auth_response_v2('identity', 'keystone')), :headers => {})
|
406 | 406 |
|
407 |
| - Fog::OpenStack::Auth::Token.build(auth) |
| 407 | + Fog::OpenStack::Auth::Token.build(auth, {}) |
408 | 408 | end
|
409 | 409 | end
|
410 | 410 | end
|
|
429 | 429 | :headers => {}
|
430 | 430 | )
|
431 | 431 |
|
432 |
| - token = Fog::OpenStack::Auth::Token.build(authv2_creds) |
| 432 | + token = Fog::OpenStack::Auth::Token.build(authv2_creds, {}) |
433 | 433 | token.stub :expired?, false do
|
434 | 434 | token.get.must_equal 'token_not_expired'
|
435 | 435 | end
|
|
443 | 443 | :headers => {}
|
444 | 444 | )
|
445 | 445 |
|
446 |
| - token = Fog::OpenStack::Auth::Token.build(authv2_creds) |
| 446 | + token = Fog::OpenStack::Auth::Token.build(authv2_creds, {}) |
447 | 447 | token.stub :expired?, true do
|
448 | 448 | token.get.must_equal 'token_expired'
|
449 | 449 | end
|
|
458 | 458 | :headers => {}
|
459 | 459 | )
|
460 | 460 |
|
461 |
| - token = Fog::OpenStack::Auth::Token.build(authv2_creds) |
| 461 | + token = Fog::OpenStack::Auth::Token.build(authv2_creds, {}) |
462 | 462 | token.catalog.payload.must_equal ['catalog_data']
|
463 | 463 | end
|
464 | 464 |
|
|
470 | 470 | :headers => {'x-subject-token'=>'token_data'}
|
471 | 471 | )
|
472 | 472 |
|
473 |
| - token = Fog::OpenStack::Auth::Token.build(authv2_creds) |
| 473 | + token = Fog::OpenStack::Auth::Token.build(authv2_creds, {}) |
474 | 474 | token.catalog.get_endpoint_url(%w[identity], 'public', 'regionOne').must_equal 'http://localhost'
|
475 | 475 | end
|
476 | 476 | end
|
|
0 commit comments