. */ namespace Xibo\Tests\Integration; use Carbon\Carbon; use Xibo\Helper\DateFormatHelper; use Xibo\Helper\Random; use Xibo\OAuth2\Client\Entity\XiboDisplay; use Xibo\OAuth2\Client\Entity\XiboLayout; use Xibo\OAuth2\Client\Entity\XiboLibrary; use Xibo\OAuth2\Client\Entity\XiboPlaylist; use Xibo\Tests\Helper\DisplayHelperTrait; use Xibo\Tests\Helper\LayoutHelperTrait; use Xibo\Tests\LocalWebTestCase; /** * Class StatisticsMediaTest * @package Xibo\Tests\Integration */ class StatisticsMediaTest extends LocalWebTestCase { use LayoutHelperTrait, DisplayHelperTrait; /** @var XiboLayout */ protected $layout; /** @var XiboDisplay */ protected $display; /** @var XiboLibrary */ protected $media; /** @var XiboLibrary */ protected $media2; /** @var \Xibo\OAuth2\Client\Entity\XiboWidget */ private $widget; /** @var \Xibo\OAuth2\Client\Entity\XiboWidget */ private $widget2; /** * setUp - called before every test automatically */ public function setup() { parent::setup(); // Create a Layout $this->layout = $this->createLayout(); // Create a Display $this->display = $this->createDisplay(); $this->displaySetLicensed($this->display); // Upload some media $this->media = (new XiboLibrary($this->getEntityProvider())) ->create(Random::generateString(), PROJECT_ROOT . '/tests/resources/xts-night-001.jpg'); $this->media2 = (new XiboLibrary($this->getEntityProvider())) ->create(Random::generateString(), PROJECT_ROOT . '/tests/resources/xts-layout-003-background.jpg'); // Checkout our Layout and add some Widgets to it. $layout = $this->getDraft($this->layout); // Add another region // Assign media to the layouts default region. $playlist = (new XiboPlaylist($this->getEntityProvider()))->assign([$this->media->mediaId, $this->media2->mediaId], 10, $layout->regions[0]->regionPlaylist->playlistId); // Get Widget Ids $this->widget = $playlist->widgets[0]; $this->widget2 = $playlist->widgets[1]; // Publish the Layout $this->layout = $this->publish($this->layout); $this->getLogger()->debug('Finished Setup'); } /** * tearDown - called after every test automatically */ 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); // Delete the media records $this->media->deleteAssigned(); $this->media2->deleteAssigned(); // Delete stat records self::$container->get('timeSeriesStore') ->deleteStats(Carbon::now(), Carbon::now()->startOfDay()->subDays(10)); } /** * Check if proof of play statistics are correct */ public function testProof() { $type = 'media'; $hardwareId = $this->display->license; // Set start and date time // // $fromDt = '2018-02-12 00:00:00'; // $toDt = '2018-02-17 00:00:00'; // Add stats to the DB - known set // // 1 layout, 2 region, 2 medias (1 per region) // type,start,end,layout,media // media,2018-02-12 00:00:00, 2018-02-13 00:00:00, L1, M1 // media,2018-02-13 00:00:00, 2018-02-14 00:00:00, L1, M1 // media,2018-02-16 00:00:00, 2018-02-17 12:00:00, L1, M1 // media,2018-02-14 00:00:00, 2018-02-15 00:00:00, L1, M2 // media,2018-02-15 00:00:00, 2018-02-16 00:00:00, L1, M2 // media,2018-02-16 00:00:00, 2018-02-16 12:00:00, L1, M2 // // Result // M1 60 hours // M2 60 hours // Insert all stats in one call to SubmitStats $response = $this->getXmdsWrapper()->SubmitStats( $hardwareId, ' ' ); $this->assertSame(true, $response); // Get stats and see if they match with what we expect $response = $this->sendRequest('GET', '/stats', [ 'fromDt' => Carbon::now()->startOfDay()->subDays(5)->format(DateFormatHelper::getSystemFormat()), 'toDt' => Carbon::now()->startOfDay()->format(DateFormatHelper::getSystemFormat()), 'displayId' => $this->display->displayId, 'layoutId' => [$this->layout->layoutId], 'type' => $type ]); $this->assertSame(200, $response->getStatusCode()); $this->assertNotEmpty($response->getBody()); $object = json_decode($response->getBody()); $this->assertObjectHasAttribute('data', $object, $response->getBody()); $this->assertEquals(6, $object->data->recordsTotal); $this->assertCount(6, $object->data->data); } }