
Use new parameters for Juno like it's documented here: http://docs.openstack.org/trunk/config-reference/content/glance-conf-changes-master.html * Use [glance_store] section * Update prefix when needed Partial-Bug: #1391099 Change-Id: I096b16c33c493270422113e0107a100f967debc6
75 lines
3.5 KiB
Ruby
75 lines
3.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::backend::swift' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian'
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{
|
|
:swift_store_user => 'user',
|
|
:swift_store_key => 'key',
|
|
}
|
|
end
|
|
|
|
let :pre_condition do
|
|
'class { "glance::api": keystone_password => "pass" }'
|
|
end
|
|
|
|
describe 'when default parameters' do
|
|
|
|
it 'configures glance-api.conf' do
|
|
should contain_glance_api_config('glance_store/default_store').with_value('swift')
|
|
should contain_glance_api_config('glance_store/swift_store_key').with_value('key')
|
|
should contain_glance_api_config('glance_store/swift_store_user').with_value('user')
|
|
should contain_glance_api_config('DEFAULT/swift_store_auth_version').with_value('2')
|
|
should contain_glance_api_config('DEFAULT/swift_store_large_object_size').with_value('5120')
|
|
should contain_glance_api_config('glance_store/swift_store_auth_address').with_value('127.0.0.1:5000/v2.0/')
|
|
should contain_glance_api_config('DEFAULT/swift_store_container').with_value('glance')
|
|
should contain_glance_api_config('DEFAULT/swift_store_create_container_on_put').with_value(false)
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
should contain_glance_cache_config('glance_store/swift_store_key').with_value('key')
|
|
should contain_glance_cache_config('glance_store/swift_store_user').with_value('user')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_auth_version').with_value('2')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_large_object_size').with_value('5120')
|
|
should contain_glance_cache_config('glance_store/swift_store_auth_address').with_value('127.0.0.1:5000/v2.0/')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_container').with_value('glance')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_create_container_on_put').with_value(false)
|
|
end
|
|
end
|
|
|
|
describe 'when overriding parameters' do
|
|
let :params do
|
|
{
|
|
:swift_store_user => 'user',
|
|
:swift_store_key => 'key',
|
|
:swift_store_auth_version => '1',
|
|
:swift_store_large_object_size => '100',
|
|
:swift_store_auth_address => '127.0.0.2:8080/v1.0/',
|
|
:swift_store_container => 'swift',
|
|
:swift_store_create_container_on_put => true
|
|
}
|
|
end
|
|
|
|
it 'configures glance-api.conf' do
|
|
should contain_glance_api_config('DEFAULT/swift_store_container').with_value('swift')
|
|
should contain_glance_api_config('DEFAULT/swift_store_create_container_on_put').with_value(true)
|
|
should contain_glance_api_config('DEFAULT/swift_store_auth_version').with_value('1')
|
|
should contain_glance_api_config('DEFAULT/swift_store_large_object_size').with_value('100')
|
|
should contain_glance_api_config('glance_store/swift_store_auth_address').with_value('127.0.0.2:8080/v1.0/')
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
should contain_glance_cache_config('DEFAULT/swift_store_container').with_value('swift')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_create_container_on_put').with_value(true)
|
|
should contain_glance_cache_config('DEFAULT/swift_store_auth_version').with_value('1')
|
|
should contain_glance_cache_config('DEFAULT/swift_store_large_object_size').with_value('100')
|
|
should contain_glance_cache_config('glance_store/swift_store_auth_address').with_value('127.0.0.2:8080/v1.0/')
|
|
end
|
|
end
|
|
end
|