. */ namespace Xibo\Tests\integration\Cache; use Carbon\Carbon; use Xibo\Entity\Display; use Xibo\Helper\DateFormatHelper; use Xibo\OAuth2\Client\Entity\XiboDisplay; use Xibo\OAuth2\Client\Entity\XiboLayout; use Xibo\OAuth2\Client\Entity\XiboSchedule; use Xibo\OAuth2\Client\Entity\XiboText; use Xibo\OAuth2\Client\Entity\XiboTicker; use Xibo\Tests\Helper\DisplayHelperTrait; use Xibo\Tests\Helper\LayoutHelperTrait; use Xibo\Tests\LocalWebTestCase; /** * Class ScheduleChangeOutsideRfTest * @package Xibo\Tests\integration\Cache */ class ScheduleChangeOutsideRfTest extends LocalWebTestCase { use LayoutHelperTrait; use DisplayHelperTrait; /** @var XiboLayout */ protected $layout; /** @var XiboDisplay */ protected $display; /** @var XiboTicker */ protected $widget; /** @var XiboSchedule */ protected $event; // 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); $response = $this->getEntityProvider()->post('/playlist/widget/text/' . $layout->regions[0]->regionPlaylist->playlistId); $response = $this->getEntityProvider()->put('/playlist/widget/' . $response['widgetId'], [ 'text' => 'Widget A', 'duration' => 100, 'useDuration' => 1 ]); // Check us in again $this->layout = $this->publish($this->layout); $this->widget = (new XiboText($this->getEntityProvider()))->hydrate($response); // Build the layout $this->buildLayout($this->layout); // Create a Display $this->display = $this->createDisplay(); // Dates outside of RF $date = Carbon::now()->addMonth(); // Schedule the Layout "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->addHour()->format(DateFormatHelper::getSystemFormat()), $this->layout->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'); parent::tearDown(); // Delete the Layout we've been working with $this->deleteLayout($this->layout); // Delete the Display $this->deleteDisplay($this->display); } // /** * @group cacheInvalidateTests */ public function testInvalidateCache() { // Make sure our Layout is already status 1 $this->assertTrue($this->layoutStatusEquals($this->layout, 1), 'Layout Status isnt as expected'); // Make sure our Display is already DONE $this->assertTrue($this->displayStatusEquals($this->display, Display::$STATUS_DONE), 'Display Status isnt as expected'); // Change the Schedule $this->sendRequest('PUT','/schedule/' . $this->event->eventId, [ 'fromDt' => date(DateFormatHelper::getSystemFormat(), $this->event->fromDt), 'toDt' => date(DateFormatHelper::getSystemFormat(), $this->event->toDt), 'eventTypeId' => 1, 'campaignId' => $this->event->campaignId, 'displayGroupIds' => [$this->display->displayGroupId], 'displayOrder' => 1, 'isPriority' => 1 ], ['CONTENT_TYPE' => 'application/x-www-form-urlencoded']); // Check the Layout Status // Validate the layout status afterwards $this->assertTrue($this->layoutStatusEquals($this->layout, 1), 'Layout Status isnt as expected'); // Validate the display status afterwards $this->assertTrue($this->displayStatusEquals($this->display, Display::$STATUS_DONE), 'Display Status isnt as expected'); // Validate that XMR has been called. $this->assertFalse(in_array($this->display->displayId, $this->getPlayerActionQueue()), 'Player action not present'); } }