mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
705 B
Ruby
22 lines
705 B
Ruby
Shindo.tests('Fog::Compute::HP', ['hp', 'compute']) do
|
|
credentials = {
|
|
:auth_token => 'auth_token',
|
|
:endpoint_url => 'http://127.0.0.1/computepath/',
|
|
:service_catalog => {
|
|
:"Compute" => {
|
|
:zone => 'http://127.0.0.1/computepath/'}},
|
|
:expires => (DateTime.now + 1).to_s
|
|
}
|
|
options = {
|
|
:hp_access_key => 'key',
|
|
:hp_secret_key => 'secret',
|
|
:hp_tenant_id => 'tenant',
|
|
:hp_avl_zone => 'zone',
|
|
:hp_auth_uri => 'https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0/tokens',
|
|
:credentials => credentials
|
|
}
|
|
tests('Test cached Compute credentials').returns(credentials) do
|
|
conn = Fog::Compute::HP::Real.new(options)
|
|
conn.credentials
|
|
end
|
|
end
|