Files
Cloud-CMS/tests/Xmds/NotifyStatusTest.php
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

216 lines
6.9 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;
/**
* Various Notify Status tests
*/
final class NotifyStatusTest extends XmdsTestCase
{
use XmdsHelperTrait;
public function setUp(): void
{
parent::setUp();
}
public static function successCases(): array
{
return [
[7],
[6],
[5],
[4],
];
}
public static function failureCases(): array
{
return [
[3],
];
}
#[DataProvider('successCases')]
public function testCurrentLayout(int $version)
{
$request = $this->sendRequest('POST', $this->notifyStatus($version, '{"currentLayoutId":1}'), $version);
$this->assertStringContainsString(
'<ns1:NotifyStatusResponse><success xsi:type="xsd:boolean">true</success></ns1:NotifyStatusResponse>',
$request->getBody()->getContents(),
'Notify Current Layout received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testCurrentLayoutFailure(int $version)
{
// disable exception on http_error in guzzle, so we can still check the response
$request = $this->sendRequest(
'POST',
$this->notifyStatus($version, '{"currentLayoutId":1}'),
$version,
false
);
$this->assertSame(500, $request->getStatusCode());
// check the fault code
$this->assertStringContainsString(
'<faultcode>SOAP-ENV:Server</faultcode>',
$request->getBody(),
'Notify Current Layout received incorrect response'
);
// check the fault string
$this->assertStringContainsString(
'<faultstring>Procedure \'NotifyStatus\' not present</faultstring>',
$request->getBody(),
'Notify Current Layout received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testCurrentLayoutExceptionFailure(int $version)
{
// we are expecting 500 Server Exception here for xmds 3
$this->expectException('GuzzleHttp\Exception\ServerException');
$this->expectExceptionCode(500);
$request = $this->sendRequest('POST', $this->notifyStatus($version, '{"currentLayoutId":1}'), $version);
}
#[DataProvider('successCases')]
public function testGeoLocation($version)
{
$request = $this->sendRequest(
'POST',
$this->notifyStatus($version, '{"latitude":52.3676, "longitude":4.9041}'),
$version
);
$this->assertStringContainsString(
'<ns1:NotifyStatusResponse><success xsi:type="xsd:boolean">true</success></ns1:NotifyStatusResponse>',
$request->getBody()->getContents(),
'Notify Geo Location received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testGeoLocationFailure(int $version)
{
// disable exception on http_error in guzzle, so we can still check the response
$request = $this->sendRequest(
'POST',
$this->notifyStatus($version, '{"latitude":52.3676, "longitude":4.9041}'),
$version,
false
);
$this->assertSame(500, $request->getStatusCode());
// check the fault code
$this->assertStringContainsString(
'<faultcode>SOAP-ENV:Server</faultcode>',
$request->getBody(),
'Notify Geo Location received incorrect response'
);
// check the fault string
$this->assertStringContainsString(
'<faultstring>Procedure \'NotifyStatus\' not present</faultstring>',
$request->getBody(),
'Notify Geo Location received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testGeoLocationExceptionFailure(int $version)
{
// we are expecting 500 Server Exception here for xmds 3
$this->expectException('GuzzleHttp\Exception\ServerException');
$this->expectExceptionCode(500);
$this->sendRequest(
'POST',
$this->notifyStatus($version, '{"latitude":52.3676, "longitude":4.9041}'),
$version,
);
}
#[DataProvider('successCases')]
public function testOrientation(int $version)
{
$request = $this->sendRequest(
'POST',
$this->notifyStatus($version, '{"width":7680, "height":4320}'),
$version,
);
$this->assertStringContainsString(
'<ns1:NotifyStatusResponse><success xsi:type="xsd:boolean">true</success></ns1:NotifyStatusResponse>',
$request->getBody()->getContents(),
'Notify Orientation received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testOrientationFailure(int $version)
{
// disable exception on http_error in guzzle, so we can still check the response
$request = $this->sendRequest(
'POST',
$this->notifyStatus($version, '{"width":7680, "height":4320}'),
$version,
false
);
$this->assertSame(500, $request->getStatusCode());
// check the fault code
$this->assertStringContainsString(
'<faultcode>SOAP-ENV:Server</faultcode>',
$request->getBody(),
'Notify Orientation received incorrect response'
);
// check the fault string
$this->assertStringContainsString(
'<faultstring>Procedure \'NotifyStatus\' not present</faultstring>',
$request->getBody(),
'Notify Orientation received incorrect response'
);
}
#[DataProvider('failureCases')]
public function testOrientationExceptionFailure(int $version)
{
// we are expecting 500 Server Exception here for xmds 3
$this->expectException('GuzzleHttp\Exception\ServerException');
$this->expectExceptionCode(500);
$this->sendRequest(
'POST',
$this->notifyStatus($version, '{"width":7680, "height":4320}'),
$version,
);
}
}