. */ 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\Tests\Helper\DisplayHelperTrait; use Xibo\Tests\Helper\LayoutHelperTrait; use Xibo\Tests\LocalWebTestCase; /** * Class StatisticsEventTest * @package Xibo\Tests\Integration */ class StatisticsEventTest extends LocalWebTestCase { use LayoutHelperTrait, DisplayHelperTrait; /** @var XiboLayout */ protected $layout; /** @var XiboDisplay */ protected $display; /** * 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); $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 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 = 'event'; // Checkout layout $layout = $this->getDraft($this->layout); $hardwareId = $this->display->license; // One word name for the event $eventName = Random::generateString(10, 'event'); // First insert $response = $this->getXmdsWrapper()->SubmitStats( $hardwareId, ' ' ); $this->assertSame(true, $response); // Second insert $response = $this->getXmdsWrapper()->SubmitStats( $hardwareId, ' ' ); $this->assertSame(true, $response); // Third insert $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, 'type' => $type ]); $this->assertSame(200, $response->getStatusCode()); $this->assertNotEmpty($response->getBody()); $object = json_decode($response->getBody()); $this->assertObjectHasAttribute('data', $object, $response->getBody()); $this->assertEquals(3, $object->data->recordsTotal); $this->assertCount(3, $object->data->data); } }