1
0
Fork 0
mirror of synced 2024-09-15 17:09:18 +12:00
appwrite/tests/unit/Usage/StatsTest.php
2022-12-19 10:30:32 +02:00

71 lines
2.2 KiB
PHP

<?php
namespace Tests\Unit\Usage;
use Appwrite\Usage\Stats;
use PHPUnit\Framework\TestCase;
use Utopia\App;
class StatsTest extends TestCase
{
// /**
// * @var Stats
// */
// protected $object = null;
//
// public function setUp(): void
// {
// $host = App::getEnv('_APP_STATSD_HOST', 'telegraf');
// $port = App::getEnv('_APP_STATSD_PORT', 8125);
//
// $connection = new \Domnikl\Statsd\Connection\UdpSocket($host, $port);
// $statsd = new \Domnikl\Statsd\Client($connection);
//
// $this->object = new Stats($statsd);
// }
//
// public function tearDown(): void
// {
// }
//
// public function testNamespace(): void
// {
// $this->object->setNamespace('appwritetest.usage');
// $this->assertEquals('appwritetest.usage', $this->object->getNamespace());
// }
//
// public function testParams(): void
// {
// $this->object
// ->setParam('projectId', 'appwrite_test')
// ->setParam('projectInternalId', 1)
// ->setParam('networkRequestSize', 100)
// ;
//
// $this->assertEquals('appwrite_test', $this->object->getParam('projectId'));
// $this->assertEquals(1, $this->object->getParam('projectInternalId'));
// $this->assertEquals(100, $this->object->getParam('networkRequestSize'));
//
// $this->object->submit();
//
// $this->assertEquals(null, $this->object->getParam('projectId'));
// $this->assertEquals(null, $this->object->getParam('networkRequestSize'));
// }
//
// public function testReset(): void
// {
// $this->object
// ->setParam('projectId', 'appwrite_test')
// ->setParam('networkRequestSize', 100)
// ;
//
// $this->assertEquals('appwrite_test', $this->object->getParam('projectId'));
// $this->assertEquals(100, $this->object->getParam('networkRequestSize'));
//
// $this->object->reset();
//
// $this->assertEquals(null, $this->object->getParam('projectId'));
// $this->assertEquals(null, $this->object->getParam('networkRequestSize'));
// $this->assertEquals('appwrite.usage', $this->object->getNamespace());
// }
}