UrlValidatorTest.php 3.36 KB
Newer Older
Suralc committed
1 2
<?php
namespace yiiunit\framework\validators;
3
use yiiunit\data\validators\models\FakedValidationModel;
Suralc committed
4 5 6 7 8 9 10 11
use yii\validators\UrlValidator;
use yiiunit\TestCase;

/**
 * UrlValidatorTest
 */
class UrlValidatorTest extends TestCase
{
12 13 14 15 16 17
	protected function setUp()
	{
		parent::setUp();
		$this->mockApplication();
	}

Suralc committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
	public function testValidateValue()
	{
		$val = new UrlValidator;
		$this->assertFalse($val->validateValue('google.de'));
		$this->assertTrue($val->validateValue('http://google.de'));
		$this->assertTrue($val->validateValue('https://google.de'));
		$this->assertFalse($val->validateValue('htp://yiiframework.com'));
		$this->assertTrue($val->validateValue('https://www.google.de/search?q=yii+framework&ie=utf-8&oe=utf-8'
										.'&rls=org.mozilla:de:official&client=firefox-a&gws_rd=cr'));
		$this->assertFalse($val->validateValue('ftp://ftp.ruhr-uni-bochum.de/'));
		$this->assertFalse($val->validateValue('http://invalid,domain'));
		$this->assertFalse($val->validateValue('http://äüö?=!"§$%&/()=}][{³²€.edu'));
	}
	
	public function testValidateValueWithDefaultScheme()
	{
Alexander Makarov committed
34
		$val = new UrlValidator(['defaultScheme' => 'https']);
Suralc committed
35 36 37
		$this->assertTrue($val->validateValue('yiiframework.com'));
		$this->assertTrue($val->validateValue('http://yiiframework.com'));
	}
38 39 40

	public function testValidateValueWithoutScheme()
	{
Alexander Makarov committed
41
		$val = new UrlValidator(['pattern' => '/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)/i']);
42 43
		$this->assertTrue($val->validateValue('yiiframework.com'));
	}
Suralc committed
44 45 46
	
	public function testValidateWithCustomScheme()
	{
Alexander Makarov committed
47 48
		$val = new UrlValidator([
			'validSchemes' => ['http', 'https', 'ftp', 'ftps'],
Suralc committed
49
			'defaultScheme' => 'http',
Alexander Makarov committed
50
		]);
Suralc committed
51 52 53 54 55 56 57 58 59 60 61
		$this->assertTrue($val->validateValue('ftp://ftp.ruhr-uni-bochum.de/'));
		$this->assertTrue($val->validateValue('google.de'));
		$this->assertTrue($val->validateValue('http://google.de'));
		$this->assertTrue($val->validateValue('https://google.de'));
		$this->assertFalse($val->validateValue('htp://yiiframework.com'));
		// relative urls not supported
		$this->assertFalse($val->validateValue('//yiiframework.com'));
	}
	
	public function testValidateWithIdn()
	{
62
		if (!function_exists('idn_to_ascii')) {
Suralc committed
63 64 65
			$this->markTestSkipped('intl package required');
			return;
		}
Alexander Makarov committed
66
		$val = new UrlValidator([
Suralc committed
67
			'enableIDN' => true,
Alexander Makarov committed
68
		]);
Suralc committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
		$this->assertTrue($val->validateValue('http://äüößìà.de'));
		// converted via http://mct.verisign-grs.com/convertServlet
		$this->assertTrue($val->validateValue('http://xn--zcack7ayc9a.de'));
	}
	
	public function testValidateLength()
	{
		$url = 'http://' . str_pad('base', 2000, 'url') . '.de';
		$val = new UrlValidator;
		$this->assertFalse($val->validateValue($url));
	}
	
	public function testValidateAttributeAndError()
	{
		$obj = new FakedValidationModel;
84
		$obj->attr_url = 'http://google.de';
Suralc committed
85
		$val = new UrlValidator;
86 87 88 89
		$val->validateAttribute($obj, 'attr_url');
		$this->assertFalse($obj->hasErrors('attr_url'));
		$this->assertSame('http://google.de', $obj->attr_url);
		$obj = new FakedValidationModel;
Suralc committed
90
		$val->defaultScheme = 'http';
91 92 93 94 95 96 97 98
		$obj->attr_url = 'google.de';
		$val->validateAttribute($obj, 'attr_url');
		$this->assertFalse($obj->hasErrors('attr_url'));
		$this->assertTrue(stripos($obj->attr_url, 'http') !== false);
		$obj = new FakedValidationModel;
		$obj->attr_url = 'gttp;/invalid string';
		$val->validateAttribute($obj, 'attr_url');
		$this->assertTrue($obj->hasErrors('attr_url'));
Suralc committed
99 100
	}
}