diff options
author | kwadronaut <kwadronaut@leap.se> | 2014-03-26 09:38:41 +0100 |
---|---|---|
committer | kwadronaut <kwadronaut@leap.se> | 2014-03-26 09:38:41 +0100 |
commit | e7332f2370db83523c52ca2cf5510db001469093 (patch) | |
tree | 23d2c69e355042f1f067cca7a9329733c895c12f /tests/white-box/webapp.rb | |
parent | b45d265a08884a65e7100e34067a0d8c390da8f0 (diff) | |
parent | cd09ed9eb9d183123652a52651a427bab558c496 (diff) |
Merge branch 'feature/cleanup-test-names' of https://github.com/elijh/leap_platform into elijh-feature/cleanup-test-names
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 |