]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/glance/spec/classes/glance_backend_file_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / glance / spec / classes / glance_backend_file_spec.rb
diff --git a/3rdparty/modules/glance/spec/classes/glance_backend_file_spec.rb b/3rdparty/modules/glance/spec/classes/glance_backend_file_spec.rb
new file mode 100644 (file)
index 0000000..5a3b5c4
--- /dev/null
@@ -0,0 +1,34 @@
+require 'spec_helper'
+
+describe 'glance::backend::file' do
+  let :facts do
+    { :osfamily => 'Debian' }
+  end
+
+  let :pre_condition do
+    'class { "glance::api": keystone_password => "pass" }'
+  end
+
+  it 'configures glance-api.conf' do
+    should contain_glance_api_config('glance_store/default_store').with_value('file')
+    should contain_glance_api_config('glance_store/filesystem_store_datadir').with_value('/var/lib/glance/images/')
+  end
+
+  it 'configures glance-cache.conf' do
+    should contain_glance_cache_config('glance_store/filesystem_store_datadir').with_value('/var/lib/glance/images/')
+  end
+
+  describe 'when overriding datadir' do
+    let :params do
+      {:filesystem_store_datadir => '/tmp/'}
+    end
+
+    it 'configures glance-api.conf' do
+      should contain_glance_api_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
+    end
+
+    it 'configures glance-cache.conf' do
+      should contain_glance_cache_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
+    end
+  end
+end