X-Git-Url: http://git.rot13.org/?p=virtual-ldap;a=blobdiff_plain;f=t%2Fkoha%2F01-remove-test-user.t;h=65d541871968e5ec782c6b90037576d036fd3499;hp=3f3a694a2250de4cd08d821ec7d620db914a167f;hb=1559034e6872ea98846c0128d1e9b462c5a6a6bd;hpb=66576637717e069cd9c4a34e3a0f5148e52a6bbc diff --git a/t/koha/01-remove-test-user.t b/t/koha/01-remove-test-user.t index 3f3a694..65d5418 100755 --- a/t/koha/01-remove-test-user.t +++ b/t/koha/01-remove-test-user.t @@ -5,11 +5,18 @@ use strict; use Test::More tests => 6; use Test::WWW::Mechanize; +use XML::Simple; +use Data::Dump qw(dump); -our ( $user, $passwd ); -require 'config.pl'; +my $url = $ENV{INTRANET} || 'http://ffzg.koha-dev.rot13.org:8080'; +my $koha_conf = $ENV{KOHA_CONF} || '/etc/koha/sites/ffzg/koha-conf.xml'; -my $url = 'https://localhost:8443'; # Koha intranet +my $xml = XMLin( $koha_conf ); +diag 'Koha config = ',dump $xml->{config}; + +our $config; +require 't/config.pl'; +diag 'test config = ',dump $config; my $mech = Test::WWW::Mechanize->new; @@ -17,10 +24,10 @@ $mech->get_ok( $url, 'intranet' ); $mech->submit_form_ok({ fields => { - userid => $user, - password => $passwd, + userid => $xml->{config}->{user}, + password => $xml->{config}->{pass}, }, -}, 'login'); +}, "login $xml->{config}->{user}"); $mech->submit_form_ok({ form_number => 2,