diff options
author | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
commit | ce35a9dc3457f87ebd8f87decfad1a55e7cfa27a (patch) | |
tree | c8538a52738b401ba1cb85b4690a2e7b415a182b /tests/white-box/webapp.rb | |
parent | f3deb7db2648080bbe74dd4de9c7a45caadaff80 (diff) | |
parent | e7332f2370db83523c52ca2cf5510db001469093 (diff) |
Merge branch '0.6' of ssh://code.leap.se/leap_platform into 0.6
Diffstat (limited to 'tests/white-box/webapp.rb')
-rw-r--r-- | tests/white-box/webapp.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/white-box/webapp.rb b/tests/white-box/webapp.rb index 09e92797..142ac2de 100644 --- a/tests/white-box/webapp.rb +++ b/tests/white-box/webapp.rb @@ -2,8 +2,8 @@ raise SkipTest unless $node["services"].include?("webapp") require 'socket' -class TestWebapp < LeapTest - depends_on "TestNetwork" +class Webapp < LeapTest + depends_on "Network" HAPROXY_CONFIG = '/etc/haproxy/haproxy.cfg' @@ -20,7 +20,7 @@ class TestWebapp < LeapTest # connect: couch1.bitmask.i # connect_port: 15984 # - def test_01_can_contact_couchdb + def test_01_Can_contact_couchdb? assert_property('stunnel.couch_client') $node['stunnel']['couch_client'].values.each do |stunnel_conf| assert port = stunnel_conf['accept_port'], 'Field `accept_port` must be present in `stunnel` property.' @@ -45,7 +45,7 @@ class TestWebapp < LeapTest # port: 4000 # weight: 10 # - def test_02_haproxy_is_working + def test_02_Is_haproxy_working? port = file_match(HAPROXY_CONFIG, /^ bind localhost:(\d+)$/) url = "http://localhost:#{port}" assert_get(url) do |body| @@ -54,7 +54,7 @@ class TestWebapp < LeapTest pass end - def test_03_daemons_running + def test_03_Are_daemons_running? assert_running '/usr/sbin/apache2' assert_running '/usr/bin/nickserver' pass |