1
0
Fork 0
mirror of synced 2024-07-05 06:31:08 +12:00
appwrite/tests/unit/Network/Validators/CNAMETest.php

34 lines
927 B
PHP
Raw Normal View History

2020-02-21 11:15:53 +13:00
<?php
namespace Appwrite\Tests;
use Network\Validators\CNAME;
use PHPUnit\Framework\TestCase;
class CNAMETest extends TestCase
{
/**
* @var CNAME
*/
protected $object = null;
public function setUp()
{
$this->object = new CNAME('new.appwrite.io');
}
public function tearDown()
{
}
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('cert1.tests.appwrite.io'), true);
$this->assertEquals($this->object->isValid('cert2.tests.appwrite.io'), true);
$this->assertEquals($this->object->isValid('cert1.tests.appwrite.com'), false);
$this->assertEquals($this->object->isValid('cert1.tests.appwrite.com'), false);
}
}