]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/nova/spec/classes/nova_compute_spice_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / nova / spec / classes / nova_compute_spice_spec.rb
diff --git a/3rdparty/modules/nova/spec/classes/nova_compute_spice_spec.rb b/3rdparty/modules/nova/spec/classes/nova_compute_spice_spec.rb
new file mode 100644 (file)
index 0000000..56ed621
--- /dev/null
@@ -0,0 +1,23 @@
+require 'spec_helper'
+describe 'nova::compute::spice' do
+
+  it { should contain_nova_config('spice/enabled').with_value('true')}
+  it { should contain_nova_config('spice/agent_enabled').with_value('true')}
+  it { should contain_nova_config('spice/server_proxyclient_address').with_value('127.0.0.1')}
+  it { should_not contain_nova_config('spice/html5proxy_base_url')}
+  it { should contain_nova_config('spice/server_listen').with_value(nil)}
+
+  context 'when overriding params' do
+    let :params do
+      {
+          :proxy_host    => '10.10.10.10',
+          :server_listen => '10.10.11.11',
+          :agent_enabled => false
+      }
+    end
+    it { should contain_nova_config('spice/html5proxy_base_url').with_value('http://10.10.10.10:6082/spice_auto.html')}
+    it { should contain_nova_config('spice/server_listen').with_value('10.10.11.11')}
+    it { should contain_nova_config('spice/agent_enabled').with_value('false')}
+  end
+
+end