thruk: update to 2.10
[omd.git] / t / 20-package_omd.t
blobaaf0b8798d910de8727acb15487d8ee30c5d03fc
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
5 use Test::More;
7 BEGIN {
8 use lib('t');
9 require TestUtils;
10 import TestUtils;
11 use FindBin;
12 use lib "$FindBin::Bin/lib/lib/perl5";
15 plan( tests => 40 );
17 ##################################################
18 # create our test site
19 my $omd_bin = TestUtils::get_omd_bin();
20 my $site = TestUtils::create_test_site() or TestUtils::bail_out_clean("no further testing without site");
22 # not started site should give a nice error
23 TestUtils::test_command({ cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -u /$site -e 503 -r \"OMD: Site Not Started\"'", like => '/HTTP OK:/' });
25 ##################################################
26 # execute some checks
27 my $tests = [
28 { cmd => $omd_bin." start $site" },
30 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -u /$site -e 302'", like => '/HTTP OK:/' },
31 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -u /$site/ -e 302'", like => '/HTTP OK:/' },
32 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -u /$site/omd -e 401'", like => '/HTTP OK:/' },
33 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -a omdadmin:omd -u /$site -e 302'", like => '/HTTP OK:/' },
34 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -a omdadmin:omd -u /$site/omd -e 301'", like => '/HTTP OK:/' },
35 { cmd => "/bin/su - $site -c 'lib/nagios/plugins/check_http -H localhost -a omdadmin:omd -u /$site/omd/ -e 200'", like => '/HTTP OK:/' },
37 { cmd => $omd_bin." stop $site" },
39 for my $test (@{$tests}) {
40 TestUtils::test_command($test);
43 ##################################################
44 # cleanup test site
45 TestUtils::remove_test_site($site);