Revision 6c8a96c2
Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt
t/selenium/AllTests.t | ||
---|---|---|
39 | 39 |
use Test::More qw(no_plan); |
40 | 40 |
use IO::Socket; |
41 | 41 |
|
42 |
|
|
43 | 42 |
if(-f "/tmp/lxtest-temp.conf") { |
44 | 43 |
eval { require('/tmp/lxtest-temp.conf'); }; |
45 | 44 |
} |
... | ... | |
74 | 73 |
|
75 | 74 |
|
76 | 75 |
$lxtest->{test_id} = time; # create individual ids by unixtime |
77 |
$lxtest->{testuserlogin} = $lxtest->{testlogin} . $lxtest->{test_id}; |
|
78 |
$lxtest->{testuserpasswd} = $lxtest->{test_id}; |
|
79 |
$lxtest->{db} = $lxtest->{db} . $lxtest->{test_id}; |
|
76 |
$lxtest->{testuserlogin} = $lxtest->{testlogin} . $lxtest->{test_id} if(!$lxtest->{testuserlogin});
|
|
77 |
$lxtest->{testuserpasswd} = $lxtest->{test_id} if(!$lxtest->{testuserpasswd});
|
|
78 |
$lxtest->{db} = $lxtest->{db} . $lxtest->{test_id} if(!($lxtest->{db} =~ /^seleniumtestdatabase[0-9]{10}$/));
|
|
80 | 79 |
|
81 | 80 |
ok(defined $lxtest->{rpw}, "Get root password"); |
82 | 81 |
|
... | ... | |
116 | 115 |
} |
117 | 116 |
closedir(SCRIPTS); |
118 | 117 |
} |
118 |
if($!) { |
|
119 |
@! = ("Test fehlgeschlagen!"); |
|
120 |
} |
|
119 | 121 |
$sel->stop(); |
120 | 122 |
} |
121 | 123 |
|
Auch abrufbar als: Unified diff
Fortführung der Struturierung und hinzufügen von Systemtests, sowie globaler Login und Logout Tests