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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
d97996c3
Commit
d97996c3
authored
Apr 02, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added tests for redis
parent
e9c364d2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
ActiveRecordTest.php
tests/unit/extensions/redis/ActiveRecordTest.php
+59
-0
No files found.
tests/unit/extensions/redis/ActiveRecordTest.php
View file @
d97996c3
...
...
@@ -2,6 +2,7 @@
namespace
yiiunit\extensions\redis
;
use
yii\redis\ActiveQuery
;
use
yiiunit\data\ar\redis\ActiveRecord
;
use
yiiunit\data\ar\redis\Customer
;
use
yiiunit\data\ar\redis\OrderItem
;
...
...
@@ -256,4 +257,62 @@ class ActiveRecordTest extends RedisTestCase
$this
->
assertNull
(
OrderItem
::
find
(
$pk
));
$this
->
assertNotNull
(
OrderItem
::
find
([
'order_id'
=>
2
,
'item_id'
=>
10
]));
}
public
function
testFilterWhere
()
{
// should work with hash format
$query
=
new
ActiveQuery
();
$query
->
filterWhere
([
'id'
=>
0
,
'title'
=>
' '
,
'author_ids'
=>
[],
]);
$this
->
assertEquals
([
'id'
=>
0
],
$query
->
where
);
$query
->
andFilterWhere
([
'status'
=>
null
]);
$this
->
assertEquals
([
'id'
=>
0
],
$query
->
where
);
$query
->
orFilterWhere
([
'name'
=>
''
]);
$this
->
assertEquals
([
'id'
=>
0
],
$query
->
where
);
// should work with operator format
$query
=
new
ActiveQuery
();
$condition
=
[
'like'
,
'name'
,
'Alex'
];
$query
->
filterWhere
(
$condition
);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'between'
,
'id'
,
null
,
null
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
orFilterWhere
([
'not between'
,
'id'
,
null
,
null
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'in'
,
'id'
,
[]]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'not in'
,
'id'
,
[]]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'not in'
,
'id'
,
[]]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'like'
,
'id'
,
''
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'or like'
,
'id'
,
''
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'not like'
,
'id'
,
' '
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
$query
->
andFilterWhere
([
'or not like'
,
'id'
,
null
]);
$this
->
assertEquals
(
$condition
,
$query
->
where
);
}
public
function
testFilterWhereRecursively
()
{
$query
=
new
ActiveQuery
();
$query
->
filterWhere
([
'and'
,
[
'like'
,
'name'
,
''
],
[
'like'
,
'title'
,
''
],
[
'id'
=>
1
],
[
'not'
,
[
'like'
,
'name'
,
''
]]]);
$this
->
assertEquals
([
'id'
=>
1
],
$query
->
where
);
}
}
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