]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/nova/spec/classes/nova_vnc_proxy_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / nova / spec / classes / nova_vnc_proxy_spec.rb
diff --git a/3rdparty/modules/nova/spec/classes/nova_vnc_proxy_spec.rb b/3rdparty/modules/nova/spec/classes/nova_vnc_proxy_spec.rb
new file mode 100644 (file)
index 0000000..0b12686
--- /dev/null
@@ -0,0 +1,86 @@
+require 'spec_helper'
+
+describe 'nova::vncproxy' do
+
+  let :pre_condition do
+    'include nova'
+  end
+
+  let :params do
+    {:enabled => true}
+  end
+
+  describe 'on debian platforms' do
+    let :facts do
+      { :osfamily => 'Debian' }
+    end
+
+    it { should contain_package('python-numpy').with(
+      :ensure => 'present',
+      :name   => 'python-numpy'
+    )}
+
+    it { should contain_nova_config('DEFAULT/novncproxy_host').with(:value => '0.0.0.0') }
+    it { should contain_nova_config('DEFAULT/novncproxy_port').with(:value => '6080') }
+    it { should contain_nova_config('DEFAULT/novncproxy_base_url').with(:value => 'http://0.0.0.0:6080/vnc_auto.html') }
+
+    it { should contain_package('nova-vncproxy').with(
+      :name   => 'nova-novncproxy',
+      :ensure => 'present'
+    ) }
+    it { should contain_service('nova-vncproxy').with(
+      :name      => 'nova-novncproxy',
+      :hasstatus => true,
+      :ensure    => 'running'
+    )}
+
+    describe 'with manage_service as false' do
+      let :params do
+        { :enabled        => true,
+          :manage_service => false
+        }
+      end
+      it { should contain_service('nova-vncproxy').without_ensure }
+    end
+
+    describe 'with package version' do
+      let :params do
+        {:ensure_package => '2012.1-2'}
+      end
+      it { should contain_package('nova-vncproxy').with(
+        'ensure' => '2012.1-2'
+      )}
+    end
+
+  end
+
+  describe 'on debian OS' do
+      let :facts do
+        { :osfamily => 'Debian', :operatingsystem => 'Debian' }
+      end
+      it { should contain_package('nova-vncproxy').with(
+        :name   => "nova-consoleproxy",
+        :ensure => 'present'
+      )}
+      it { should contain_service('nova-vncproxy').with(
+        :name      => 'nova-novncproxy',
+        :hasstatus => true,
+        :ensure    => 'running'
+      )}
+  end
+
+
+  describe 'on Redhatish platforms' do
+
+    let :facts do
+      { :osfamily => 'Redhat' }
+    end
+
+    it { should contain_package('python-numpy').with(
+      :name   => 'numpy',
+      :ensure => 'present'
+    )}
+
+  end
+
+end