147 lines
4.3 KiB
PHP
147 lines
4.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright (C) 2025 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\integration\Cache;
|
|
|
|
use Carbon\Carbon;
|
|
use Xibo\Entity\Display;
|
|
use Xibo\Helper\DateFormatHelper;
|
|
use Xibo\Helper\Random;
|
|
use Xibo\OAuth2\Client\Entity\XiboCampaign;
|
|
use Xibo\OAuth2\Client\Entity\XiboDisplay;
|
|
use Xibo\OAuth2\Client\Entity\XiboLayout;
|
|
use Xibo\OAuth2\Client\Entity\XiboSchedule;
|
|
use Xibo\Tests\Helper\DisplayHelperTrait;
|
|
use Xibo\Tests\Helper\LayoutHelperTrait;
|
|
use Xibo\Tests\LocalWebTestCase;
|
|
|
|
/**
|
|
* Class CampaignDeleteTest
|
|
* @package Xibo\Tests\integration\Cache
|
|
*/
|
|
class CampaignDeleteTest extends LocalWebTestCase
|
|
{
|
|
use LayoutHelperTrait;
|
|
use DisplayHelperTrait;
|
|
|
|
/** @var XiboCampaign */
|
|
protected $campaign;
|
|
|
|
/** @var XiboLayout */
|
|
protected $layout;
|
|
|
|
/** @var XiboDisplay */
|
|
protected $display;
|
|
|
|
/** @var XiboSchedule */
|
|
protected $event;
|
|
|
|
// <editor-fold desc="Init">
|
|
public function setup()
|
|
{
|
|
parent::setup();
|
|
|
|
$this->getLogger()->debug('Setup test for Cache ' . get_class($this) .' Test');
|
|
|
|
// Create a Layout
|
|
$this->layout = $this->createLayout();
|
|
|
|
// Checkout
|
|
$layout = $this->getDraft($this->layout);
|
|
|
|
// Add a simple widget
|
|
$this->addSimpleWidget($layout);
|
|
|
|
// Check us in again
|
|
$this->layout = $this->publish($this->layout);
|
|
|
|
// Build the layout
|
|
$this->buildLayout($this->layout);
|
|
|
|
// Create a Campaign
|
|
$this->campaign = (new XiboCampaign($this->getEntityProvider()))->create(Random::generateString());
|
|
|
|
// Assign the Layout to the Campaign
|
|
$this->getEntityProvider()->post('/campaign/layout/assign/' . $this->campaign->campaignId, [
|
|
'layoutId' => $this->layout->layoutId
|
|
]);
|
|
|
|
// Create a Display
|
|
$this->display = $this->createDisplay();
|
|
|
|
// Date
|
|
$date = Carbon::now();
|
|
|
|
// Schedule the Campaign "always" onto our display
|
|
// deleting the layout will remove this at the end
|
|
$this->event = (new XiboSchedule($this->getEntityProvider()))->createEventLayout(
|
|
$date->format(DateFormatHelper::getSystemFormat()),
|
|
$date->addHours(3)->format(DateFormatHelper::getSystemFormat()),
|
|
$this->campaign->campaignId,
|
|
[$this->display->displayGroupId],
|
|
0,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
0,
|
|
0,
|
|
0
|
|
);
|
|
|
|
$this->displaySetStatus($this->display, Display::$STATUS_DONE);
|
|
$this->displaySetLicensed($this->display);
|
|
|
|
$this->getLogger()->debug('Finished Setup');
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->getLogger()->debug('Tear Down');
|
|
|
|
// Delete the Layout we've been working with
|
|
$this->deleteLayout($this->layout);
|
|
|
|
// Delete the Display
|
|
$this->deleteDisplay($this->display);
|
|
|
|
parent::tearDown();
|
|
}
|
|
// </editor-fold>
|
|
|
|
/**
|
|
* @group cacheInvalidateTests
|
|
*/
|
|
public function testInvalidateCache()
|
|
{
|
|
// Make sure our Display is already DONE
|
|
$this->assertTrue($this->displayStatusEquals($this->display, Display::$STATUS_DONE), 'Display Status isnt as expected');
|
|
|
|
// Delete the Campaign
|
|
$this->sendRequest('DELETE', '/campaign/' . $this->campaign->campaignId);
|
|
// Validate the display status afterwards
|
|
$this->assertTrue($this->displayStatusEquals($this->display, Display::$STATUS_PENDING), 'Display Status isnt as expected');
|
|
|
|
// Validate that XMR has been called.
|
|
$this->assertTrue(in_array($this->display->displayId, $this->getPlayerActionQueue()), 'Player action not present');
|
|
}
|
|
} |