Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
fc1d2af3
Commit
fc1d2af3
authored
Jul 29, 2013
by
Suralc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UrlValidator Tests
parent
09c5e614
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
0 deletions
+97
-0
UrlValidator.php
framework/yii/validators/UrlValidator.php
+2
-0
FakedValidationModel.php
tests/unit/framework/validators/FakedValidationModel.php
+6
-0
UrlValidatorTest.php
tests/unit/framework/validators/UrlValidatorTest.php
+89
-0
No files found.
framework/yii/validators/UrlValidator.php
View file @
fc1d2af3
...
...
@@ -54,7 +54,9 @@ class UrlValidator extends Validator
{
parent
::
init
();
if
(
$this
->
enableIDN
&&
!
function_exists
(
'idn_to_ascii'
))
{
// @codeCoverageIgnoreStart
throw
new
InvalidConfigException
(
'In order to use IDN validation intl extension must be installed and enabled.'
);
// @codeCoverageIgnoreEnd
}
if
(
$this
->
message
===
null
)
{
$this
->
message
=
Yii
::
t
(
'yii'
,
'{attribute} is not a valid URL.'
);
...
...
tests/unit/framework/validators/FakedValidationModel.php
View file @
fc1d2af3
...
...
@@ -17,4 +17,9 @@ class FakedValidationModel
{
$this
->
errors
[
$attribute
]
=
$message
;
}
public
function
resetErrors
()
{
$this
->
errors
=
array
();
}
}
\ No newline at end of file
tests/unit/framework/validators/UrlValidatorTest.php
0 → 100644
View file @
fc1d2af3
<?php
namespace
yiiunit\framework\validators
;
use
yiiunit\framework\validators\FakedValidationModel
;
use
yii\validators\UrlValidator
;
use
yiiunit\TestCase
;
require_once
__DIR__
.
'/FakedValidationModel.php'
;
/**
* 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
()
{
$val
=
new
UrlValidator
(
array
(
'defaultScheme'
=>
'https'
));
$this
->
assertTrue
(
$val
->
validateValue
(
'yiiframework.com'
));
$this
->
assertTrue
(
$val
->
validateValue
(
'http://yiiframework.com'
));
}
public
function
testValidateWithCustomScheme
()
{
$val
=
new
UrlValidator
(
array
(
'validSchemes'
=>
array
(
'http'
,
'https'
,
'ftp'
,
'ftps'
),
'defaultScheme'
=>
'http'
,
));
$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
;
}
$val
=
new
UrlValidator
(
array
(
'enableIDN'
=>
true
,
));
$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
;
$obj
->
url
=
'http://google.de'
;
$val
=
new
UrlValidator
;
$val
->
validateAttribute
(
$obj
,
'url'
);
$this
->
assertFalse
(
isset
(
$obj
->
errors
[
'url'
]));
$this
->
assertSame
(
'http://google.de'
,
$obj
->
url
);
$obj
->
resetErrors
();
$val
->
defaultScheme
=
'http'
;
$obj
->
url
=
'google.de'
;
$val
->
validateAttribute
(
$obj
,
'url'
);
$this
->
assertFalse
(
isset
(
$obj
->
errors
[
'url'
]));
$this
->
assertTrue
(
stripos
(
$obj
->
url
,
'http'
)
!==
false
);
$obj
->
resetErrors
();
$obj
->
url
=
'gttp;/invalid string'
;
$val
->
validateAttribute
(
$obj
,
'url'
);
$this
->
assertTrue
(
isset
(
$obj
->
errors
[
'url'
]));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment