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
c189e5ad
Commit
c189e5ad
authored
Aug 24, 2013
by
Suralc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UniqueValidator test.
parent
24e2f885
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
113 additions
and
0 deletions
+113
-0
UniqueValidatorPostgresTest.php
...niqueValidatorDriverTests/UniqueValidatorPostgresTest.php
+12
-0
UniqueValidatorSQliteTest.php
.../UniqueValidatorDriverTests/UniqueValidatorSQliteTest.php
+12
-0
UniqueValidatorTest.php
tests/unit/framework/validators/UniqueValidatorTest.php
+89
-0
No files found.
tests/unit/framework/validators/UniqueValidatorDriverTests/UniqueValidatorPostgresTest.php
0 → 100644
View file @
c189e5ad
<?php
namespace
yiiunit\framework\validators\UniqueValidatorDriverTests
;
use
yiiunit\framework\validators\UniqueValidatorTest
;
class
UniqueValidatorPostgresTest
extends
UniqueValidatorTest
{
protected
$driverName
=
'pgsql'
;
}
\ No newline at end of file
tests/unit/framework/validators/UniqueValidatorDriverTests/UniqueValidatorSQliteTest.php
0 → 100644
View file @
c189e5ad
<?php
namespace
yiiunit\framework\validators\UniqueValidatorDriverTests
;
use
yiiunit\framework\validators\UniqueValidatorTest
;
class
UniqueValidatorSQliteTest
extends
UniqueValidatorTest
{
protected
$driverName
=
'sqlite'
;
}
\ No newline at end of file
tests/unit/framework/validators/UniqueValidatorTest.php
0 → 100644
View file @
c189e5ad
<?php
namespace
yiiunit\framework\validators
;
use
yii\validators\UniqueValidator
;
use
Yii
;
use
yiiunit\data\ar\ActiveRecord
;
use
yiiunit\data\validators\models\FakedValidationModel
;
use
yiiunit\data\validators\models\ValidatorTestMainModel
;
use
yiiunit\data\validators\models\ValidatorTestRefModel
;
use
yiiunit\framework\db\DatabaseTestCase
;
use
yiiunit\TestCase
;
class
UniqueValidatorTest
extends
DatabaseTestCase
{
protected
$initializeAppWithDb
=
true
;
protected
$driverName
=
'mysql'
;
public
function
setUp
()
{
parent
::
setUp
();
ActiveRecord
::
$db
=
Yii
::
$app
->
getComponent
(
'db'
);
}
public
function
testAssureMessageSetOnInit
()
{
$val
=
new
UniqueValidator
();
$this
->
assertTrue
(
is_string
(
$val
->
message
));
}
public
function
testValidateAttributeDefault
()
{
$val
=
new
UniqueValidator
();
$m
=
ValidatorTestMainModel
::
find
()
->
one
();
$val
->
validateAttribute
(
$m
,
'id'
);
$this
->
assertFalse
(
$m
->
hasErrors
(
'id'
));
$m
=
ValidatorTestRefModel
::
find
(
1
);
$val
->
validateAttribute
(
$m
,
'ref'
);
$this
->
assertTrue
(
$m
->
hasErrors
(
'ref'
));
// new record:
$m
=
new
ValidatorTestRefModel
();
$m
->
ref
=
5
;
$val
->
validateAttribute
(
$m
,
'ref'
);
$this
->
assertTrue
(
$m
->
hasErrors
(
'ref'
));
$m
=
new
ValidatorTestRefModel
();
$m
->
ref
=
12121
;
$val
->
validateAttribute
(
$m
,
'ref'
);
$this
->
assertFalse
(
$m
->
hasErrors
(
'ref'
));
$m
->
save
(
false
);
$val
->
validateAttribute
(
$m
,
'ref'
);
$this
->
assertFalse
(
$m
->
hasErrors
(
'ref'
));
// array error
$m
=
FakedValidationModel
::
createWithAttributes
(
array
(
'attr_arr'
=>
array
(
'a'
,
'b'
)));
$val
->
validateAttribute
(
$m
,
'attr_arr'
);
$this
->
assertTrue
(
$m
->
hasErrors
(
'attr_arr'
));
}
public
function
testValidateAttributeOfNonARModel
()
{
$val
=
new
UniqueValidator
(
array
(
'className'
=>
ValidatorTestRefModel
::
className
(),
'attributeName'
=>
'ref'
));
$m
=
FakedValidationModel
::
createWithAttributes
(
array
(
'attr_1'
=>
5
,
'attr_2'
=>
1313
));
$val
->
validateAttribute
(
$m
,
'attr_1'
);
$this
->
assertTrue
(
$m
->
hasErrors
(
'attr_1'
));
$val
->
validateAttribute
(
$m
,
'attr_2'
);
$this
->
assertFalse
(
$m
->
hasErrors
(
'attr_2'
));
}
public
function
testValidateNonDatabaseAttribute
()
{
$val
=
new
UniqueValidator
(
array
(
'className'
=>
ValidatorTestRefModel
::
className
(),
'attributeName'
=>
'ref'
));
$m
=
ValidatorTestMainModel
::
find
(
1
);
$val
->
validateAttribute
(
$m
,
'testMainVal'
);
$this
->
assertFalse
(
$m
->
hasErrors
(
'testMainVal'
));
$m
=
ValidatorTestMainModel
::
find
(
1
);
$m
->
testMainVal
=
4
;
$val
->
validateAttribute
(
$m
,
'testMainVal'
);
$this
->
assertTrue
(
$m
->
hasErrors
(
'testMainVal'
));
}
public
function
testValidateAttributeAttributeNotInTableException
()
{
$this
->
setExpectedException
(
'yii\base\InvalidConfigException'
);
$val
=
new
UniqueValidator
();
$m
=
new
ValidatorTestMainModel
();
$val
->
validateAttribute
(
$m
,
'testMainVal'
);
}
}
\ No newline at end of file
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