1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00
appwrite/tests/unit/Network/Validators/CNAMETest.php
2020-09-30 17:52:53 -04:00

35 lines
920 B
PHP

<?php
namespace Appwrite\Tests;
use Appwrite\Network\Validator\CNAME;
use PHPUnit\Framework\TestCase;
class CNAMETest extends TestCase
{
/**
* @var CNAME
*/
protected $object = null;
public function setUp(): void
{
$this->object = new CNAME('appwrite.io');
}
public function tearDown(): void
{
}
public function testValues()
{
$this->assertEquals($this->object->isValid(''), false);
$this->assertEquals($this->object->isValid(null), false);
$this->assertEquals($this->object->isValid(false), false);
$this->assertEquals($this->object->isValid('test1.appwrite.io'), true);
$this->assertEquals($this->object->isValid('test1.appwrite.io'), true);
$this->assertEquals($this->object->isValid('test1.appwrite.org'), false);
$this->assertEquals($this->object->isValid('test1.appwrite.org'), false);
}
}