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
3d3f711d
Commit
3d3f711d
authored
May 01, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing and fixing RedisCache
parent
9634b728
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
12 deletions
+79
-12
RedisCache.php
framework/caching/RedisCache.php
+10
-2
CacheTest.php
tests/unit/framework/caching/CacheTest.php
+57
-10
RedisCacheTest.php
tests/unit/framework/caching/RedisCacheTest.php
+12
-0
No files found.
framework/caching/RedisCache.php
View file @
3d3f711d
...
@@ -21,6 +21,8 @@ use yii\db\redis\Connection;
...
@@ -21,6 +21,8 @@ use yii\db\redis\Connection;
* authenticate with the server after connect.
* authenticate with the server after connect.
*
*
* See [[Cache]] for common cache operations that RedisCache supports.
* See [[Cache]] for common cache operations that RedisCache supports.
* Different from the description in [[Cache]] RedisCache allows the expire parameter of
* [[set]] and [[add]] to be a floating point number, so you may specify the time in milliseconds.
*
*
* To use RedisCache as the cache application component, configure the application as follows,
* To use RedisCache as the cache application component, configure the application as follows,
*
*
...
@@ -110,7 +112,7 @@ class RedisCache extends Cache
...
@@ -110,7 +112,7 @@ class RedisCache extends Cache
*/
*/
protected
function
getValue
(
$key
)
protected
function
getValue
(
$key
)
{
{
return
$this
->
_connection
->
executeCommand
(
'GET'
,
$key
);
return
$this
->
_connection
->
executeCommand
(
'GET'
,
array
(
$key
)
);
}
}
/**
/**
...
@@ -120,7 +122,13 @@ class RedisCache extends Cache
...
@@ -120,7 +122,13 @@ class RedisCache extends Cache
*/
*/
protected
function
getValues
(
$keys
)
protected
function
getValues
(
$keys
)
{
{
return
$this
->
_connection
->
executeCommand
(
'MGET'
,
$keys
);
$response
=
$this
->
_connection
->
executeCommand
(
'MGET'
,
$keys
);
$result
=
array
();
$i
=
0
;
foreach
(
$keys
as
$key
)
{
$result
[
$key
]
=
$response
[
$i
++
];
}
return
$result
;
}
}
/**
/**
...
...
tests/unit/framework/caching/CacheTest.php
View file @
3d3f711d
...
@@ -13,18 +13,35 @@ abstract class CacheTest extends TestCase
...
@@ -13,18 +13,35 @@ abstract class CacheTest extends TestCase
*/
*/
abstract
protected
function
getCacheInstance
();
abstract
protected
function
getCacheInstance
();
/**
* @return Cache
*/
public
function
prepare
()
{
$cache
=
$this
->
getCacheInstance
();
$cache
->
flush
();
$cache
->
set
(
'string_test'
,
'string_test'
);
$cache
->
set
(
'number_test'
,
42
);
$cache
->
set
(
'array_test'
,
array
(
'array_test'
=>
'array_test'
));
$cache
[
'arrayaccess_test'
]
=
new
\stdClass
();
return
$cache
;
}
public
function
testSet
()
public
function
testSet
()
{
{
$cache
=
$this
->
getCacheInstance
();
$cache
=
$this
->
getCacheInstance
();
$this
->
assertTrue
(
$cache
->
set
(
'string_test'
,
'string_test'
));
$this
->
assertTrue
(
$cache
->
set
(
'string_test'
,
'string_test'
));
$this
->
assertTrue
(
$cache
->
set
(
'number_test'
,
42
));
$this
->
assertTrue
(
$cache
->
set
(
'number_test'
,
42
));
$this
->
assertTrue
(
$cache
->
set
(
'array_test'
,
array
(
'array_test'
=>
'array_test'
)));
$this
->
assertTrue
(
$cache
->
set
(
'array_test'
,
array
(
'array_test'
=>
'array_test'
)));
$cache
[
'arrayaccess_test'
]
=
new
\stdClass
();
}
}
public
function
testGet
()
public
function
testGet
()
{
{
$cache
=
$this
->
getCacheInstance
();
$cache
=
$this
->
prepare
();
$this
->
assertEquals
(
'string_test'
,
$cache
->
get
(
'string_test'
));
$this
->
assertEquals
(
'string_test'
,
$cache
->
get
(
'string_test'
));
$this
->
assertEquals
(
42
,
$cache
->
get
(
'number_test'
));
$this
->
assertEquals
(
42
,
$cache
->
get
(
'number_test'
));
...
@@ -32,51 +49,81 @@ abstract class CacheTest extends TestCase
...
@@ -32,51 +49,81 @@ abstract class CacheTest extends TestCase
$array
=
$cache
->
get
(
'array_test'
);
$array
=
$cache
->
get
(
'array_test'
);
$this
->
assertArrayHasKey
(
'array_test'
,
$array
);
$this
->
assertArrayHasKey
(
'array_test'
,
$array
);
$this
->
assertEquals
(
'array_test'
,
$array
[
'array_test'
]);
$this
->
assertEquals
(
'array_test'
,
$array
[
'array_test'
]);
}
public
function
testArrayAccess
()
{
$cache
=
$this
->
getCacheInstance
();
$cache
[
'arrayaccess_test'
]
=
new
\stdClass
();
$this
->
assertInstanceOf
(
'stdClass'
,
$cache
[
'arrayaccess_test'
]);
$this
->
assertInstanceOf
(
'stdClass'
,
$cache
[
'arrayaccess_test'
]);
}
}
public
function
test
Mge
t
()
public
function
test
GetNonExisten
t
()
{
{
$cache
=
$this
->
getCacheInstance
();
$cache
=
$this
->
getCacheInstance
();
$this
->
assertFalse
(
$cache
->
get
(
'non_existent_key'
));
}
public
function
testStoreSpecialValues
()
{
$cache
=
$this
->
getCacheInstance
();
$this
->
assertTrue
(
$cache
->
set
(
'null_value'
,
null
));
$this
->
assertNull
(
$cache
->
get
(
'null_value'
));
$this
->
assertTrue
(
$cache
->
set
(
'bool_value'
,
true
));
$this
->
assertTrue
(
$cache
->
get
(
'bool_value'
));
}
public
function
testMget
()
{
$cache
=
$this
->
prepare
();
$this
->
assertEquals
(
array
(
'string_test'
=>
'string_test'
,
'number_test'
=>
42
),
$cache
->
mget
(
array
(
'string_test'
,
'number_test'
)));
$this
->
assertEquals
(
array
(
'string_test'
=>
'string_test'
,
'number_test'
=>
42
),
$cache
->
mget
(
array
(
'string_test'
,
'number_test'
)));
// ensure that order does not matter
$this
->
assertEquals
(
array
(
'number_test'
=>
42
,
'string_test'
=>
'string_test'
),
$cache
->
mget
(
array
(
'number_test'
,
'string_test'
)));
$this
->
assertEquals
(
array
(
'number_test'
=>
42
,
'non_existent_key'
=>
null
),
$cache
->
mget
(
array
(
'number_test'
,
'non_existent_key'
)));
}
}
public
function
testExpire
()
public
function
testExpire
()
{
{
$cache
=
$this
->
getCacheInstance
();
$cache
=
$this
->
getCacheInstance
();
$this
->
assertTrue
(
$cache
->
set
(
'expire_test'
,
'expire_test'
,
2
));
$this
->
assertTrue
(
$cache
->
set
(
'expire_test'
,
'expire_test'
,
2
));
sleep
(
1
);
sleep
(
1
);
$this
->
assertEquals
(
'expire_test'
,
$cache
->
get
(
'expire_test'
));
$this
->
assertEquals
(
'expire_test'
,
$cache
->
get
(
'expire_test'
));
sleep
(
2
);
sleep
(
2
);
$this
->
assert
Equals
(
false
,
$cache
->
get
(
'expire_test'
));
$this
->
assert
False
(
$cache
->
get
(
'expire_test'
));
}
}
public
function
testAdd
()
public
function
testAdd
()
{
{
$cache
=
$this
->
getCacheInstanc
e
();
$cache
=
$this
->
prepar
e
();
// should not change existing keys
// should not change existing keys
$this
->
assertFalse
(
$cache
->
add
(
'number_test'
,
13
));
$this
->
assertFalse
(
$cache
->
add
(
'number_test'
,
13
));
$this
->
assertEquals
(
42
,
$cache
->
get
(
'number_test'
));
$this
->
assertEquals
(
42
,
$cache
->
get
(
'number_test'
));
// should store data i
s
it's not there yet
// should store data i
f
it's not there yet
$this
->
assertTrue
(
$cache
->
add
(
'add_test'
,
13
));
$this
->
assertTrue
(
$cache
->
add
(
'add_test'
,
13
));
$this
->
assertEquals
(
13
,
$cache
->
get
(
'add_test'
));
$this
->
assertEquals
(
13
,
$cache
->
get
(
'add_test'
));
}
}
public
function
testDelete
()
public
function
testDelete
()
{
{
$cache
=
$this
->
getCacheInstanc
e
();
$cache
=
$this
->
prepar
e
();
$this
->
assertNotNull
(
$cache
->
get
(
'number_test'
));
$this
->
assertTrue
(
$cache
->
delete
(
'number_test'
));
$this
->
assertTrue
(
$cache
->
delete
(
'number_test'
));
$this
->
assert
Equals
(
null
,
$cache
->
get
(
'number_test'
));
$this
->
assert
False
(
$cache
->
get
(
'number_test'
));
}
}
public
function
testFlush
()
public
function
testFlush
()
{
{
$cache
=
$this
->
getCacheInstanc
e
();
$cache
=
$this
->
prepar
e
();
$this
->
assertTrue
(
$cache
->
flush
());
$this
->
assertTrue
(
$cache
->
flush
());
$this
->
assert
Equals
(
null
,
$cache
->
get
(
'add
_test'
));
$this
->
assert
False
(
$cache
->
get
(
'number
_test'
));
}
}
}
}
tests/unit/framework/caching/RedisCacheTest.php
View file @
3d3f711d
...
@@ -31,4 +31,15 @@ class RedisCacheTest extends CacheTest
...
@@ -31,4 +31,15 @@ class RedisCacheTest extends CacheTest
}
}
return
$this
->
_cacheInstance
;
return
$this
->
_cacheInstance
;
}
}
public
function
testExpireMilliseconds
()
{
$cache
=
$this
->
getCacheInstance
();
$this
->
assertTrue
(
$cache
->
set
(
'expire_test_ms'
,
'expire_test_ms'
,
0.2
));
usleep
(
100000
);
$this
->
assertEquals
(
'expire_test_ms'
,
$cache
->
get
(
'expire_test_ms'
));
usleep
(
300000
);
$this
->
assertFalse
(
$cache
->
get
(
'expire_test_ms'
));
}
}
}
\ 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