mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
(rubocop) Fix Layout/DotPosition
This commit is contained in:
parent
fd753ba188
commit
6f40397136
3 changed files with 58 additions and 58 deletions
|
|
@ -15,18 +15,18 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns a token from vmpooler' do
|
it 'returns a token from vmpooler' do
|
||||||
stub_request(:post, 'https://first.last:password@vmpooler.example.com/token').
|
stub_request(:post, 'https://first.last:password@vmpooler.example.com/token')
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 200, :body => @get_token_response, :headers => {})
|
.to_return(:status => 200, :body => @get_token_response, :headers => {})
|
||||||
|
|
||||||
token = Auth.get_token(false, @vmpooler_url, 'first.last', 'password')
|
token = Auth.get_token(false, @vmpooler_url, 'first.last', 'password')
|
||||||
expect(token).to eq @token
|
expect(token).to eq @token
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises a token error if something goes wrong' do
|
it 'raises a token error if something goes wrong' do
|
||||||
stub_request(:post, 'https://first.last:password@vmpooler.example.com/token').
|
stub_request(:post, 'https://first.last:password@vmpooler.example.com/token')
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
.to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
||||||
|
|
||||||
expect { Auth.get_token(false, @vmpooler_url, 'first.last', 'password') }.to raise_error(TokenError)
|
expect { Auth.get_token(false, @vmpooler_url, 'first.last', 'password') }.to raise_error(TokenError)
|
||||||
end
|
end
|
||||||
|
|
@ -39,17 +39,17 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'deletes the specified token' do
|
it 'deletes the specified token' do
|
||||||
stub_request(:delete, 'https://first.last:password@vmpooler.example.com/token/utpg2i2xswor6h8ttjhu3d47z53yy47y').
|
stub_request(:delete, 'https://first.last:password@vmpooler.example.com/token/utpg2i2xswor6h8ttjhu3d47z53yy47y')
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 200, :body => @delete_token_response, :headers => {})
|
.to_return(:status => 200, :body => @delete_token_response, :headers => {})
|
||||||
|
|
||||||
expect(Auth.delete_token(false, @vmpooler_url, 'first.last', 'password', @token)).to eq JSON.parse(@delete_token_response)
|
expect(Auth.delete_token(false, @vmpooler_url, 'first.last', 'password', @token)).to eq JSON.parse(@delete_token_response)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises a token error if something goes wrong' do
|
it 'raises a token error if something goes wrong' do
|
||||||
stub_request(:delete, 'https://first.last:password@vmpooler.example.com/token/utpg2i2xswor6h8ttjhu3d47z53yy47y').
|
stub_request(:delete, 'https://first.last:password@vmpooler.example.com/token/utpg2i2xswor6h8ttjhu3d47z53yy47y')
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
.to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
||||||
|
|
||||||
expect { Auth.delete_token(false, @vmpooler_url, 'first.last', 'password', @token) }.to raise_error(TokenError)
|
expect { Auth.delete_token(false, @vmpooler_url, 'first.last', 'password', @token) }.to raise_error(TokenError)
|
||||||
end
|
end
|
||||||
|
|
@ -66,17 +66,17 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'checks the status of a token' do
|
it 'checks the status of a token' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/token/utpg2i2xswor6h8ttjhu3d47z53yy47y").
|
stub_request(:get, "#{@vmpooler_url}/token/utpg2i2xswor6h8ttjhu3d47z53yy47y")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 200, :body => @token_status_response, :headers => {})
|
.to_return(:status => 200, :body => @token_status_response, :headers => {})
|
||||||
|
|
||||||
expect(Auth.token_status(false, @vmpooler_url, @token)).to eq JSON.parse(@token_status_response)
|
expect(Auth.token_status(false, @vmpooler_url, @token)).to eq JSON.parse(@token_status_response)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises a token error if something goes wrong' do
|
it 'raises a token error if something goes wrong' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/token/utpg2i2xswor6h8ttjhu3d47z53yy47y").
|
stub_request(:get, "#{@vmpooler_url}/token/utpg2i2xswor6h8ttjhu3d47z53yy47y")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
.to_return(:status => 500, :body => '{"ok":false}', :headers => {})
|
||||||
|
|
||||||
expect { Auth.token_status(false, @vmpooler_url, @token) }.to raise_error(TokenError)
|
expect { Auth.token_status(false, @vmpooler_url, @token) }.to raise_error(TokenError)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -174,10 +174,10 @@ BODY
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises an error if the user tries to modify an unsupported attribute' do
|
it 'raises an error if the user tries to modify an unsupported attribute' do
|
||||||
stub_request(:put, 'https://nspooler.example.com/host/myfakehost').
|
stub_request(:put, 'https://nspooler.example.com/host/myfakehost')
|
||||||
with(:body => { '{}' => true },
|
.with(:body => { '{}' => true },
|
||||||
:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type' => 'application/x-www-form-urlencoded', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'token-value' }).
|
:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type' => 'application/x-www-form-urlencoded', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'token-value' })
|
||||||
to_return(:status => 200, :body => '', :headers => {})
|
.to_return(:status => 200, :body => '', :headers => {})
|
||||||
details = { :lifetime => 12 }
|
details = { :lifetime => 12 }
|
||||||
expect { NonstandardPooler.modify(false, @nspooler_url, 'myfakehost', 'token-value', details) }
|
expect { NonstandardPooler.modify(false, @nspooler_url, 'myfakehost', 'token-value', details) }
|
||||||
.to raise_error(ModifyError)
|
.to raise_error(ModifyError)
|
||||||
|
|
|
||||||
|
|
@ -14,16 +14,16 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns a hash with operating systems from the pooler' do
|
it 'returns a hash with operating systems from the pooler' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/vm").
|
stub_request(:get, "#{@vmpooler_url}/vm")
|
||||||
to_return(:status => 200, :body => @list_response_body, :headers => {})
|
.to_return(:status => 200, :body => @list_response_body, :headers => {})
|
||||||
|
|
||||||
list = Pooler.list(false, @vmpooler_url, nil)
|
list = Pooler.list(false, @vmpooler_url, nil)
|
||||||
expect(list).to be_an_instance_of Array
|
expect(list).to be_an_instance_of Array
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'filters operating systems based on the filter param' do
|
it 'filters operating systems based on the filter param' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/vm").
|
stub_request(:get, "#{@vmpooler_url}/vm")
|
||||||
to_return(:status => 200, :body => @list_response_body, :headers => {})
|
.to_return(:status => 200, :body => @list_response_body, :headers => {})
|
||||||
|
|
||||||
list = Pooler.list(false, @vmpooler_url, 'deb')
|
list = Pooler.list(false, @vmpooler_url, 'deb')
|
||||||
expect(list).to be_an_instance_of Array
|
expect(list).to be_an_instance_of Array
|
||||||
|
|
@ -31,8 +31,8 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns nothing if the filter does not match' do
|
it 'returns nothing if the filter does not match' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/vm").
|
stub_request(:get, "#{@vmpooler_url}/vm")
|
||||||
to_return(:status => 200, :body => @list_response_body, :headers => {})
|
.to_return(:status => 200, :body => @list_response_body, :headers => {})
|
||||||
|
|
||||||
list = Pooler.list(false, @vmpooler_url, 'windows')
|
list = Pooler.list(false, @vmpooler_url, 'windows')
|
||||||
expect(list).to be_an_instance_of Array
|
expect(list).to be_an_instance_of Array
|
||||||
|
|
@ -47,9 +47,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises an AuthError if the token is invalid' do
|
it 'raises an AuthError if the token is invalid' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386").
|
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 401, :body => '{"ok":false}', :headers => {})
|
.to_return(:status => 401, :body => '{"ok":false}', :headers => {})
|
||||||
|
|
||||||
vm_hash = {}
|
vm_hash = {}
|
||||||
vm_hash['debian-7-i386'] = 1
|
vm_hash['debian-7-i386'] = 1
|
||||||
|
|
@ -57,9 +57,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'retrieves a single vm with a token' do
|
it 'retrieves a single vm with a token' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386").
|
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @retrieve_response_body_single, :headers => {})
|
.to_return(:status => 200, :body => @retrieve_response_body_single, :headers => {})
|
||||||
|
|
||||||
vm_hash = {}
|
vm_hash = {}
|
||||||
vm_hash['debian-7-i386'] = 1
|
vm_hash['debian-7-i386'] = 1
|
||||||
|
|
@ -70,9 +70,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'retrieves a multiple vms with a token' do
|
it 'retrieves a multiple vms with a token' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386+debian-7-i386+centos-7-x86_64").
|
stub_request(:post, "#{@vmpooler_url}/vm/debian-7-i386+debian-7-i386+centos-7-x86_64")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @retrieve_response_body_double, :headers => {})
|
.to_return(:status => 200, :body => @retrieve_response_body_double, :headers => {})
|
||||||
|
|
||||||
vm_hash = {}
|
vm_hash = {}
|
||||||
vm_hash['debian-7-i386'] = 2
|
vm_hash['debian-7-i386'] = 2
|
||||||
|
|
@ -98,10 +98,10 @@ describe Pooler do
|
||||||
|
|
||||||
it 'modifies the TTL of a vm' do
|
it 'modifies the TTL of a vm' do
|
||||||
modify_hash = { :lifetime => 12 }
|
modify_hash = { :lifetime => 12 }
|
||||||
stub_request(:put, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6").
|
stub_request(:put, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6")
|
||||||
with(:body => { '{"lifetime":12}' => true },
|
.with(:body => { '{"lifetime":12}' => true },
|
||||||
:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type' => 'application/x-www-form-urlencoded', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type' => 'application/x-www-form-urlencoded', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @modify_response_body_success, :headers => {})
|
.to_return(:status => 200, :body => @modify_response_body_success, :headers => {})
|
||||||
|
|
||||||
modify_req = Pooler.modify(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', modify_hash)
|
modify_req = Pooler.modify(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', modify_hash)
|
||||||
expect(modify_req['ok']).to be true
|
expect(modify_req['ok']).to be true
|
||||||
|
|
@ -115,9 +115,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'deletes a specified vm' do
|
it 'deletes a specified vm' do
|
||||||
stub_request(:delete, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6").
|
stub_request(:delete, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @delete_response_body_success, :headers => {})
|
.to_return(:status => 200, :body => @delete_response_body_success, :headers => {})
|
||||||
|
|
||||||
expect(Pooler.delete(false, @vmpooler_url, ['fq6qlpjlsskycq6'], 'mytokenfile')).to eq @delete_response
|
expect(Pooler.delete(false, @vmpooler_url, ['fq6qlpjlsskycq6'], 'mytokenfile')).to eq @delete_response
|
||||||
end
|
end
|
||||||
|
|
@ -134,9 +134,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'prints the status' do
|
it 'prints the status' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/status").
|
stub_request(:get, "#{@vmpooler_url}/status")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 200, :body => @status_response_body, :headers => {})
|
.to_return(:status => 200, :body => @status_response_body, :headers => {})
|
||||||
|
|
||||||
status = Pooler.status(false, @vmpooler_url)
|
status = Pooler.status(false, @vmpooler_url)
|
||||||
expect(status).to be_an_instance_of Hash
|
expect(status).to be_an_instance_of Hash
|
||||||
|
|
@ -158,9 +158,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'makes a query about a vm' do
|
it 'makes a query about a vm' do
|
||||||
stub_request(:get, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6").
|
stub_request(:get, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'User-Agent' => 'Faraday v0.9.2' })
|
||||||
to_return(:status => 200, :body => @query_response_body, :headers => {})
|
.to_return(:status => 200, :body => @query_response_body, :headers => {})
|
||||||
|
|
||||||
query_req = Pooler.query(false, @vmpooler_url, 'fq6qlpjlsskycq6')
|
query_req = Pooler.query(false, @vmpooler_url, 'fq6qlpjlsskycq6')
|
||||||
expect(query_req).to be_an_instance_of Hash
|
expect(query_req).to be_an_instance_of Hash
|
||||||
|
|
@ -173,9 +173,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'makes a snapshot for a single vm' do
|
it 'makes a snapshot for a single vm' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/snapshot").
|
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/snapshot")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @snapshot_response_body, :headers => {})
|
.to_return(:status => 200, :body => @snapshot_response_body, :headers => {})
|
||||||
|
|
||||||
snapshot_req = Pooler.snapshot(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile')
|
snapshot_req = Pooler.snapshot(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile')
|
||||||
expect(snapshot_req['ok']).to be true
|
expect(snapshot_req['ok']).to be true
|
||||||
|
|
@ -188,9 +188,9 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'makes a request to revert a vm from a snapshot' do
|
it 'makes a request to revert a vm from a snapshot' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/snapshot/dAfewKNfaweLKNve").
|
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/snapshot/dAfewKNfaweLKNve")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }).
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' })
|
||||||
to_return(:status => 200, :body => @revert_response_body, :headers => {})
|
.to_return(:status => 200, :body => @revert_response_body, :headers => {})
|
||||||
|
|
||||||
revert_req = Pooler.revert(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', 'dAfewKNfaweLKNve')
|
revert_req = Pooler.revert(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', 'dAfewKNfaweLKNve')
|
||||||
expect(revert_req['ok']).to be true
|
expect(revert_req['ok']).to be true
|
||||||
|
|
@ -212,8 +212,8 @@ describe Pooler do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'makes a request to extend disk space of a vm' do
|
it 'makes a request to extend disk space of a vm' do
|
||||||
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/disk/12").
|
stub_request(:post, "#{@vmpooler_url}/vm/fq6qlpjlsskycq6/disk/12")
|
||||||
with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }). to_return(:status => 200, :body => @disk_response_body_success, :headers => {})
|
.with(:headers => { 'Accept' => '*/*', 'Accept-Encoding' => 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Length' => '0', 'User-Agent' => 'Faraday v0.9.2', 'X-Auth-Token' => 'mytokenfile' }). to_return(:status => 200, :body => @disk_response_body_success, :headers => {})
|
||||||
|
|
||||||
disk_req = Pooler.disk(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', 12)
|
disk_req = Pooler.disk(false, @vmpooler_url, 'fq6qlpjlsskycq6', 'mytokenfile', 12)
|
||||||
expect(disk_req['ok']).to be true
|
expect(disk_req['ok']).to be true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue