]> git.openstreetmap.org Git - chef.git/commitdiff
Add a serverspec test to ensure the munin-node service is running
authorAndy Allan <git@gravitystorm.co.uk>
Thu, 11 Aug 2016 14:29:34 +0000 (15:29 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 13 Aug 2016 21:58:41 +0000 (22:58 +0100)
.kitchen.yml
Gemfile
Gemfile.lock
test/integration/munin/serverspec/munin_node_spec.rb [new file with mode: 0644]

index cc8065562d1823dd07e862fe854a217332f8f520..299d0f7d2a8ac4bf20cab17bcd89c2b83d2001c7 100644 (file)
@@ -9,6 +9,9 @@ platforms:
   - name: ubuntu-16.04
 
 suites:
+  - name: munin
+    run_list:
+      - recipe[munin::default]
   - name: tools
     run_list:
       - recipe[tools::default]
diff --git a/Gemfile b/Gemfile
index b08776e204cb19fc590d49479855c6fb1a2b8267..31e34a999989e34291a85be93550734b43996c2b 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -4,3 +4,4 @@ gem "rubocop"
 gem "foodcritic"
 gem "test-kitchen"
 gem "kitchen-vagrant"
+gem "serverspec"
index 10bd9d1f2f4171e6dc517031ad28bfa188f6374f..f79e26d85875fb9d738255394d37a03d0c7352a2 100644 (file)
@@ -5,6 +5,7 @@ GEM
     ast (2.3.0)
     cucumber-core (1.5.0)
       gherkin (~> 4.0)
+    diff-lcs (1.2.5)
     erubis (2.7.0)
     foodcritic (6.3.0)
       cucumber-core (>= 1.3)
@@ -24,9 +25,11 @@ GEM
       mixlib-versioning
     mixlib-shellout (2.2.6)
     mixlib-versioning (1.1.0)
+    multi_json (1.12.1)
     net-scp (1.2.1)
       net-ssh (>= 2.6.5)
     net-ssh (3.2.0)
+    net-telnet (0.1.1)
     nokogiri (1.6.8)
       mini_portile2 (~> 2.1.0)
       pkg-config (~> 1.1.7)
@@ -37,6 +40,22 @@ GEM
     powerpack (0.1.1)
     rainbow (2.1.0)
     rake (11.2.2)
+    rspec (3.5.0)
+      rspec-core (~> 3.5.0)
+      rspec-expectations (~> 3.5.0)
+      rspec-mocks (~> 3.5.0)
+    rspec-core (3.5.2)
+      rspec-support (~> 3.5.0)
+    rspec-expectations (3.5.0)
+      diff-lcs (>= 1.2.0, < 2.0)
+      rspec-support (~> 3.5.0)
+    rspec-its (1.2.0)
+      rspec-core (>= 3.0.0)
+      rspec-expectations (>= 3.0.0)
+    rspec-mocks (3.5.0)
+      diff-lcs (>= 1.2.0, < 2.0)
+      rspec-support (~> 3.5.0)
+    rspec-support (3.5.0)
     rubocop (0.41.1)
       parser (>= 2.3.1.1, < 3.0)
       powerpack (~> 0.1)
@@ -46,6 +65,17 @@ GEM
     ruby-progressbar (1.8.1)
     rufus-lru (1.1.0)
     safe_yaml (1.0.4)
+    serverspec (2.36.0)
+      multi_json
+      rspec (~> 3.0)
+      rspec-its
+      specinfra (~> 2.53)
+    sfl (2.2)
+    specinfra (2.60.2)
+      net-scp
+      net-ssh (>= 2.7, < 4.0)
+      net-telnet
+      sfl
     test-kitchen (1.10.2)
       mixlib-install (~> 1.0, >= 1.0.4)
       mixlib-shellout (>= 1.2, < 3.0)
@@ -66,6 +96,7 @@ DEPENDENCIES
   foodcritic
   kitchen-vagrant
   rubocop
+  serverspec
   test-kitchen
 
 BUNDLED WITH
diff --git a/test/integration/munin/serverspec/munin_node_spec.rb b/test/integration/munin/serverspec/munin_node_spec.rb
new file mode 100644 (file)
index 0000000..d949d5c
--- /dev/null
@@ -0,0 +1,10 @@
+require "serverspec"
+
+# Required by serverspec
+set :backend, :exec
+
+describe "munin-node daemon" do
+  it "has a running service of munin-node" do
+    expect(service("munin-node")).to be_running
+  end
+end