]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/glance/spec/classes/glance_backend_swift_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / glance / spec / classes / glance_backend_swift_spec.rb
diff --git a/3rdparty/modules/glance/spec/classes/glance_backend_swift_spec.rb b/3rdparty/modules/glance/spec/classes/glance_backend_swift_spec.rb
new file mode 100644 (file)
index 0000000..ddd946c
--- /dev/null
@@ -0,0 +1,74 @@
+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