1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
package Kernel::System::UnitTest::Driver;
use strict;
use warnings;
use Storable();
use Term::ANSIColor();
use Text::Diff;
use Time::HiRes();
# UnitTest helper must be loaded to override the builtin time functions!
use Kernel::System::UnitTest::Helper;
use Kernel::System::VariableCheck qw(DataIsDifferent);
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::Log',
'Kernel::System::Main',
);
=head1 NAME
Kernel::System::UnitTest::Driver - unit test file execution wrapper
=head1 PUBLIC INTERFACE
=head2 new()
create unit test driver object. Do not use it directly, instead use:
my $Driver = $Kernel::OM->Create(
'Kernel::System::UnitTest::Driver',
ObjectParams => {
Verbose => $Self->{Verbose},
ANSI => $Self->{ANSI},
},
);
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
$Self->{ANSI} = $Param{ANSI};
$Self->{Verbose} = $Param{Verbose};
$Self->{DataDiffType} = ucfirst( lc( $Param{DataDiffType} || 'Table' ) );
# We use an output buffering mechanism if Verbose is not set. Only failed tests will be output in this case.
# Make sure stuff is always flushed to keep it in the right order.
*STDOUT->autoflush(1);
*STDERR->autoflush(1);
$Self->{OriginalSTDOUT} = *STDOUT;
$Self->{OriginalSTDOUT}->autoflush(1);
$Self->{OutputBuffer} = '';
# Report results via file.
$Self->{ResultDataFile} = $Kernel::OM->Get('Kernel::Config')->Get('Home') . '/var/tmp/UnitTest.dump';
unlink $Self->{ResultDataFile}; # purge if exists
return $Self;
}
=head2 Run()
executes a single unit test file and provides it with an empty environment (fresh C<ObjectManager> instance).
This method assumes that it runs in a dedicated child process just for this one unit test.
This process forking is done in L<Kernel::System::UnitTest>, which creates one child process per test file.
All results will be collected and written to a C<var/tmp/UnitTest.dump> file that the main process will
load to collect all results.
=cut
sub Run {
my ( $Self, %Param ) = @_;
my $File = $Param{File};
my $UnitTestFile = $Kernel::OM->Get('Kernel::System::Main')->FileRead(
Location => $File,
);
if ( !$UnitTestFile ) {
$Self->True( 0, "ERROR: $!: $File" );
print STDERR "ERROR: $!: $File\n";
$Self->_SaveResults();
return;
}
print "+-------------------------------------------------------------------+\n";
print ' ' . $Self->_Color( 'yellow', $File ) . ":\n";
print "+-------------------------------------------------------------------+\n";
my $StartTime = [ Time::HiRes::gettimeofday() ];
# Create a new scope to be sure to destroy local object of the test files.
{
# Make sure every UT uses its own clean environment.
## nofilter(TidyAll::Plugin::OTRS::Perl::ObjectManagerCreation)
local $Kernel::OM = Kernel::System::ObjectManager->new(
'Kernel::System::Log' => {
LogPrefix => 'OTRS-otrs.UnitTest',
},
);
# Provide $Self as 'Kernel::System::UnitTest' for convenience.
$Kernel::OM->ObjectInstanceRegister(
Package => 'Kernel::System::UnitTest::Driver',
Object => $Self,
Dependencies => [],
);
$Self->{OutputBuffer} = '';
local *STDOUT = *STDOUT;
local *STDERR = *STDERR;
if ( !$Self->{Verbose} ) {
undef *STDOUT;
undef *STDERR;
open STDOUT, '>:utf8', \$Self->{OutputBuffer}; ## no critic
open STDERR, '>:utf8', \$Self->{OutputBuffer}; ## no critic
}
# HERE the actual tests are run.
my $TestSuccess = eval ${$UnitTestFile}; ## no critic
if ( !$TestSuccess ) {
if ($@) {
$Self->True( 0, "ERROR: Error in $File: $@" );
}
else {
$Self->True( 0, "ERROR: $File did not return a true value." );
}
}
}
$Self->{ResultData}->{Duration} = sprintf( '%.3f', Time::HiRes::tv_interval($StartTime) );
if ( $Self->{SeleniumData} ) {
$Self->{ResultData}->{SeleniumData} = $Self->{SeleniumData};
}
print { $Self->{OriginalSTDOUT} } "\n" if !$Self->{Verbose};
my $TestCountTotal = $Self->{ResultData}->{TestOk} // 0;
$TestCountTotal += $Self->{ResultData}->{TestNotOk} // 0;
printf(
"%s ran %s test(s) in %s.\n\n",
$File,
$Self->_Color( 'yellow', $TestCountTotal ),
$Self->_Color( 'yellow', "$Self->{ResultData}->{Duration}s" ),
);
return $Self->_SaveResults();
}
=head2 True()
test for a scalar value that evaluates to true.
Send a scalar value to this function along with the test's name:
$UnitTestObject->True(1, 'Test Name');
$UnitTestObject->True($ParamA, 'Test Name');
Internally, the function receives this value and evaluates it to see
if it's true, returning 1 in this case or undef, otherwise.
my $TrueResult = $UnitTestObject->True(
$TestValue,
'Test Name',
);
=cut
sub True {
my ( $Self, $True, $Name ) = @_;
if ( !$Name ) {
return $Self->_Print( 0, 'Error: test name was not provided.' );
}
if ($True) {
return $Self->_Print( 1, $Name );
}
else {
return $Self->_Print( 0, $Name );
}
}
=head2 False()
test for a scalar value that evaluates to false.
It has the same interface as L</True()>, but tests
for a false value instead.
=cut
sub False {
my ( $Self, $False, $Name ) = @_;
if ( !$Name ) {
return $Self->_Print( 0, 'Error: test name was not provided.' );
}
if ( !$False ) {
return $Self->_Print( 1, $Name );
}
else {
return $Self->_Print( 0, $Name );
}
}
=head2 Is()
compares two scalar values for equality.
To this function you must send a pair of scalar values to compare them,
and the name that the test will take, this is done as shown in the examples
below.
$UnitTestObject->Is($A, $B, 'Test Name');
Returns 1 if the values were equal, or undef otherwise.
my $IsResult = $UnitTestObject->Is(
$ValueFromFunction, # test data
1, # expected value
'Test Name',
);
=cut
sub Is {
my ( $Self, $Test, $ShouldBe, $Name ) = @_;
if ( !$Name ) {
return $Self->_Print( 0, 'Error: test name was not provided.' );
}
if ( !defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
elsif ( !defined $Test && defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is 'undef' should be '$ShouldBe')" );
}
elsif ( defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is '$Test' should be 'undef')" );
}
elsif ( $Test eq $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
else {
return $Self->_Print( 0, "$Name (is '$Test' should be '$ShouldBe')" );
}
}
=head2 IsNot()
compares two scalar values for inequality.
It has the same interface as L</Is()>, but tests
for inequality instead.
=cut
sub IsNot {
my ( $Self, $Test, $ShouldBe, $Name ) = @_;
if ( !$Name ) {
return $Self->_Print( 0, 'Error: test name was not provided.' );
}
if ( !defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is 'undef')" );
}
elsif ( !defined $Test && defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
elsif ( defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
if ( $Test ne $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
else {
return $Self->_Print( 0, "$Name (is '$Test' should not be '$ShouldBe')" );
}
}
=head2 IsDeeply()
compares complex data structures for equality.
To this function you must send the references to two data structures to be compared,
and the name that the test will take, this is done as shown in the examples
below.
$UnitTestObject-> IsDeeply($ParamA, $ParamB, 'Test Name');
Where $ParamA and $ParamB must be references to a structure (scalar, list or hash).
Returns 1 if the data structures are the same, or undef otherwise.
my $IsDeeplyResult = $UnitTestObject->IsDeeply(
\%ResultHash, # test data
\%ExpectedHash, # expected value
'Dummy Test Name',
);
=cut
sub IsDeeply {
my ( $Self, $Test, $ShouldBe, $Name ) = @_;
if ( !$Name ) {
$Self->_Print( 0, 'Error: test name was not provided.' );
return;
}
my $Diff = DataIsDifferent(
Data1 => $Test,
Data2 => $ShouldBe,
);
if ( !defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
elsif ( !defined $Test && defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is 'undef' should be defined)" );
}
elsif ( defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is defined should be 'undef')" );
}
elsif ( !$Diff ) {
return $Self->_Print( 1, $Name );
}
else {
my $TestDump = $Kernel::OM->Get('Kernel::System::Main')->Dump($Test);
my $ShouldBeDump = $Kernel::OM->Get('Kernel::System::Main')->Dump($ShouldBe);
local $ENV{DIFF_OUTPUT_UNICODE} = 1;
my $Diff = Text::Diff::diff(
\$TestDump,
\$ShouldBeDump,
{
STYLE => $Self->{DataDiffType},
FILENAME_A => 'Actual data',
FILENAME_B => 'Expected data',
}
);
# Provide colored diff.
if ( $Self->{ANSI} ) {
my @DiffLines = split( m{\n}, $Diff );
$Diff = '';
for my $DiffLine (@DiffLines) {
# Diff type "Table"
if ( $Self->{DataDiffType} eq 'Table' ) {
# Line changed
if ( substr( $DiffLine, 0, 1 ) eq '*' && substr( $DiffLine, -1, 1 ) eq '*' ) {
$DiffLine = $Self->_Color( 'yellow', $DiffLine );
}
# Line added
elsif ( substr( $DiffLine, 0, 1 ) eq '|' && substr( $DiffLine, -1, 1 ) eq '*' ) {
$DiffLine = $Self->_Color( 'green', $DiffLine );
}
# Line removed
elsif ( substr( $DiffLine, 0, 1 ) eq '*' && substr( $DiffLine, -1, 1 ) eq '|' ) {
$DiffLine = $Self->_Color( 'red', $DiffLine );
}
}
# Diff type "Unified"
else {
# Line added
if ( substr( $DiffLine, 0, 1 ) eq '+' && substr( $DiffLine, 0, 4 ) ne '+++ ' ) {
$DiffLine = $Self->_Color( 'green', $DiffLine );
}
# Line removed
elsif ( substr( $DiffLine, 0, 1 ) eq '-' && substr( $DiffLine, 0, 4 ) ne '--- ' ) {
$DiffLine = $Self->_Color( 'red', $DiffLine );
}
}
$Diff .= $DiffLine . "\n";
}
}
my $Output;
$Output .= $Self->_Color( 'yellow', "Diff" ) . ":\n$Diff\n";
$Output .= $Self->_Color( 'yellow', "Actual data" ) . ":\n$TestDump\n";
$Output .= $Self->_Color( 'yellow', "Expected data" ) . ":\n$ShouldBeDump\n";
return $Self->_Print( 0, "$Name (is not equal, see below)\n$Output" );
}
}
=head2 IsNotDeeply()
compares two data structures for inequality.
It has the same interface as L</IsDeeply()>, but tests
for inequality instead.
=cut
sub IsNotDeeply {
my ( $Self, $Test, $ShouldBe, $Name ) = @_;
if ( !$Name ) {
$Self->_Print( 0, 'Error: test name was not provided.' );
return;
}
my $Diff = DataIsDifferent(
Data1 => $Test,
Data2 => $ShouldBe,
);
if ( !defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 0, "$Name (is 'undef')" );
}
elsif ( !defined $Test && defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
elsif ( defined $Test && !defined $ShouldBe ) {
return $Self->_Print( 1, $Name );
}
if ($Diff) {
return $Self->_Print( 1, $Name );
}
else {
my $TestDump = $Kernel::OM->Get('Kernel::System::Main')->Dump($Test);
my $Output = $Self->_Color( 'yellow', "Actual data" ) . ":\n$TestDump\n";
return $Self->_Print( 0, "$Name (the structures are wrongly equal, see below)\n$Output" );
}
}
=head2 AttachSeleniumScreenshot()
attach a screenshot taken during Selenium error handling. These will be sent to the server
together with the test results.
$Driver->AttachSeleniumScreenshot(
Filename => $Filename,
Content => $Data # raw image data
);
=cut
sub AttachSeleniumScreenshot {
my ( $Self, %Param ) = @_;
push @{ $Self->{ResultData}->{Results}->{ $Self->{TestCount} }->{Screenshots} },
{
Filename => $Param{Filename},
Content => $Param{Content},
};
return;
}
=begin Internal:
=cut
sub _SaveResults {
my ($Self) = @_;
if ( !$Self->{ResultData} ) {
$Self->True( 0, 'No result data found.' );
}
my $Success = Storable::nstore( $Self->{ResultData}, $Self->{ResultDataFile} );
if ( !$Success ) {
print STDERR $Self->_Color( 'red', "Could not store result data in $Self->{ResultDataFile}\n" );
return 0;
}
return 1;
}
sub _Print {
my ( $Self, $ResultOk, $Message ) = @_;
$Message ||= '->>No Name!<<-';
my $ShortMessage = $Message;
if ( length $ShortMessage > 2_000 && !$Self->{Verbose} ) {
$ShortMessage = substr( $ShortMessage, 0, 2_000 ) . "[...]";
}
if ( $Self->{Verbose} || !$ResultOk ) {
# Work around problem with leading \0 bytes in the output buffer
# which breaks the unicode output. The reason is not certain, maybe because of
# Perl's exception handling.
$Self->{OutputBuffer} =~ s{\0}{}g;
print { $Self->{OriginalSTDOUT} } $Self->{OutputBuffer};
}
$Self->{OutputBuffer} = '';
$Self->{TestCount}++;
if ($ResultOk) {
if ( $Self->{Verbose} ) {
print { $Self->{OriginalSTDOUT} } " "
. $Self->_Color( 'green', "ok" )
. " $Self->{TestCount} - $ShortMessage\n";
}
else {
print { $Self->{OriginalSTDOUT} } $Self->_Color( 'green', "." );
}
$Self->{ResultData}->{TestOk}++;
return 1;
}
else {
if ( !$Self->{Verbose} ) {
print { $Self->{OriginalSTDOUT} } "\n";
}
print { $Self->{OriginalSTDOUT} } " "
. $Self->_Color( 'red', "not ok" )
. " $Self->{TestCount} - $ShortMessage\n";
$Self->{ResultData}->{TestNotOk}++;
$Self->{ResultData}->{Results}->{ $Self->{TestCount} }->{Status} = 'not ok';
$Self->{ResultData}->{Results}->{ $Self->{TestCount} }->{Message} = $Message;
# Failure summary: only the first line
my $TestFailureDetails = ( split m/\r?\n/, $Message )[0];
# And only without details
$TestFailureDetails =~ s{\s*\(.+\Z}{};
if ( length $TestFailureDetails > 100 ) {
$TestFailureDetails = substr( $TestFailureDetails, 0, 100 ) . "[...]";
}
# Store information about failed tests, but only if we are running in a toplevel unit test object
# that is actually processing files, and not in an embedded object that just runs individual tests.
push @{ $Self->{ResultData}->{NotOkInfo} }, sprintf "#%s - %s", $Self->{TestCount},
$TestFailureDetails;
return;
}
}
=head2 _Color()
this will color the given text (see Term::ANSIColor::color()) if
ANSI output is available and active, otherwise the text stays unchanged.
my $PossiblyColoredText = $CommandObject->_Color('green', $Text);
=cut
sub _Color {
my ( $Self, $Color, $Text ) = @_;
return $Text if !$Self->{ANSI};
return Term::ANSIColor::color($Color) . $Text . Term::ANSIColor::color('reset');
}
1;
=end Internal:
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<https://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (GPL). If you
did not receive this file, see L<https://www.gnu.org/licenses/gpl-3.0.txt>.
=cut
|