automatically setups a redis instance in a temporary directory, and destroys it after testing
Project description
testing.redis automatically setups a redis instance in a temporary directory, and destroys it after testing
Install
Use easy_install (or pip):
$ easy_install testing.redis
And testing.redis requires Redis server.
Usage
Create Redis instance using testing.redis.RedisServer:
import redis import testing.redis # Launch new Redis server with testing.redis.RedisServer as redis_server: r = redis.Redis(**redis_server.dsn()) # # do any tests using Redis... # # Redis server is terminated here
testing.redis automatically searchs for redis-server from $PATH. If you install redis to other directory, set redis_server keyword:
redis = testing.redis.RedisServer(redis_server='/path/to/your/redis-server')
testing.redis.RedisServer executes redis-server on instantiation. On deleting RedisServer object, it terminates Redis instance and removes temporary directory.
If you want a database including any fixtures for your apps, use copy_data_from keyword:
# uses a copy of specified data directory of Redis. redis = testing.redis.RedisServer(copy_data_from='/path/to/your/database')
You can specify parameters for Redis with redis_conf keyword:
# Enable appendonly mode redis = testing.redis.RedisServer(redis_conf={'appendonly': 'yes'})
For example, you can setup new Redis server for each testcases on setUp() method:
import unittest import testing.redis class MyTestCase(unittest.TestCase): def setUp(self): self.redis = testing.redis.RedisServer() def tearDown(self): self.redis.stop()
Requirements
Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5
redis
License
Apache License 2.0
History
1.1.0 (2016-02-03)
Add timeout to server invoker
Add testing.redis.RedisServerFactory
Depend on testing.common.database package
1.0.3 (2015-04-06)
Fix bugs:
Do not call os.getpid() on destructor (if not needed)
Use absolute path for which command
1.0.2 (2014-06-19)
Add timeout on terminating redis-server
Fix bugs
1.0.1 (2014-06-11)
Fix ImportError if caught SIGINT on py3
1.0.0 (2013-12-07)
First release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for testing.redis-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbf8873bdecb7e0bccf33897d7b7400175506652ce8be49659dc4f30d8c5bb2a |
|
MD5 | cc1ba85e5fdbe4e68cb131cf6469e08f |
|
BLAKE2b-256 | 2868b773ba925b13beeb5b84716e9cce2445ab5a5700754b5368db1f4336c8ce |