99 lines
2.8 KiB
PHP
99 lines
2.8 KiB
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* Copyright (C) 2023 Xibo Signage Ltd
|
||
|
|
*
|
||
|
|
* Xibo - Digital Signage - https://xibosignage.com
|
||
|
|
*
|
||
|
|
* This file is part of Xibo.
|
||
|
|
*
|
||
|
|
* Xibo is free software: you can redistribute it and/or modify
|
||
|
|
* it under the terms of the GNU Affero General Public License as published by
|
||
|
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
|
* any later version.
|
||
|
|
*
|
||
|
|
* Xibo is distributed in the hope that it will be useful,
|
||
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
* GNU Affero General Public License for more details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
|
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Xibo\Tests\Xmds;
|
||
|
|
|
||
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
||
|
|
use Xibo\Tests\XmdsTestCase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Report fault tests
|
||
|
|
*/
|
||
|
|
final class ReportFaultsTest extends XmdsTestCase
|
||
|
|
{
|
||
|
|
use XmdsHelperTrait;
|
||
|
|
|
||
|
|
public function setUp(): void
|
||
|
|
{
|
||
|
|
parent::setUp();
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function successCases(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
[7],
|
||
|
|
[6],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function failureCases(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
[5],
|
||
|
|
[4],
|
||
|
|
[3],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
#[DataProvider('successCases')]
|
||
|
|
public function testSendFaultSuccess(int $version)
|
||
|
|
{
|
||
|
|
$request = $this->sendRequest('POST', $this->reportFault($version), $version);
|
||
|
|
|
||
|
|
$this->assertStringContainsString(
|
||
|
|
'<ns1:ReportFaultsResponse><success xsi:type="xsd:boolean">true</success>',
|
||
|
|
$request->getBody()->getContents(),
|
||
|
|
'Send fault received incorrect response'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
#[DataProvider('failureCases')]
|
||
|
|
public function testSendFaultFailure(int $version)
|
||
|
|
{
|
||
|
|
// disable exception on http_error in guzzle, so we can still check the response
|
||
|
|
$request = $this->sendRequest('POST', $this->reportFault($version), $version, false);
|
||
|
|
|
||
|
|
// check the fault code
|
||
|
|
$this->assertStringContainsString(
|
||
|
|
'<faultcode>SOAP-ENV:Server</faultcode>',
|
||
|
|
$request->getBody(),
|
||
|
|
'Send fault received incorrect response'
|
||
|
|
);
|
||
|
|
|
||
|
|
// check the fault string
|
||
|
|
$this->assertStringContainsString(
|
||
|
|
'<faultstring>Procedure \'ReportFaults\' not present</faultstring>',
|
||
|
|
$request->getBody(),
|
||
|
|
'Send fault received incorrect response'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
#[DataProvider('failureCases')]
|
||
|
|
public function testSendFaultExceptionFailure(int $version)
|
||
|
|
{
|
||
|
|
// we are expecting 500 Server Exception here for xmds 3,4 and 5
|
||
|
|
$this->expectException('GuzzleHttp\Exception\ServerException');
|
||
|
|
$this->expectExceptionCode(500);
|
||
|
|
$this->sendRequest('POST', $this->reportFault($version), $version);
|
||
|
|
}
|
||
|
|
}
|