UrlValidatorTest.php 3.28 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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
use yii\validators\UrlValidator;
use yiiunit\TestCase;

/**
 * UrlValidatorTest
 */
class UrlValidatorTest extends TestCase
{
	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
28
		$val = new UrlValidator(['defaultScheme' => 'https']);
Suralc committed
29 30 31
		$this->assertTrue($val->validateValue('yiiframework.com'));
		$this->assertTrue($val->validateValue('http://yiiframework.com'));
	}
32 33 34

	public function testValidateValueWithoutScheme()
	{
Alexander Makarov committed
35
		$val = new UrlValidator(['pattern' => '/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)/i']);
36 37
		$this->assertTrue($val->validateValue('yiiframework.com'));
	}
Suralc committed
38 39 40
	
	public function testValidateWithCustomScheme()
	{
Alexander Makarov committed
41 42
		$val = new UrlValidator([
			'validSchemes' => ['http', 'https', 'ftp', 'ftps'],
Suralc committed
43
			'defaultScheme' => 'http',
Alexander Makarov committed
44
		]);
Suralc committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
		$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()
	{
		if(!function_exists('idn_to_ascii')) {
			$this->markTestSkipped('intl package required');
			return;
		}
Alexander Makarov committed
60
		$val = new UrlValidator([
Suralc committed
61
			'enableIDN' => true,
Alexander Makarov committed
62
		]);
Suralc committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
		$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;
78
		$obj->attr_url = 'http://google.de';
Suralc committed
79
		$val = new UrlValidator;
80 81 82 83
		$val->validateAttribute($obj, 'attr_url');
		$this->assertFalse($obj->hasErrors('attr_url'));
		$this->assertSame('http://google.de', $obj->attr_url);
		$obj = new FakedValidationModel;
Suralc committed
84
		$val->defaultScheme = 'http';
85 86 87 88 89 90 91 92
		$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
93 94
	}
}