12 use lib
"$FindBin::Bin/lib/lib/perl5";
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 ##################################################
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 ##################################################
45 TestUtils
::remove_test_site
($site);