0.01
No commit activity in last 3 years
No release in over 3 years
In-memory CouchDB for Couchrest and SimplyStored. Works for database and document API, by_attribute views, and for SimplyStored generated views
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 0.5.7.4
>= 1.0.1
>= 1.6.1
= 0.7.0rc3
 Project Readme

Development has stopped as I don't use RockingChair anymore. Please expect no further development.

An in-memory CouchDB implementation in Ruby for couchrest and SimplyStored. Works for the database and document API, by_attribute views, and for SimplyStored generated views. This way your tests will no longer depend on CouchDB and can run against an in-memory database.

It intercepts the HTTP-API calls of couchrest by implementing a HTTPAdapter for couchrest. It then delegates those calls to the in-memory database.

The in-memory database a hash of document_id => JSON-object.

RockingChair support simple views like all_docs or by_attribute. Further, it should supports all the views generated by SimplyStored. So it supports associations and soft deletion.

Installation

gem install rocking_chair

Usage

Require the gem in your tests, e.g. test_helper.rb in Rails:

require 'rocking_chair'

Then activate it:

RockingChair.enable

Make sure to reset it every now and then so that your testdata doesn't grow too much. Put this e.g. in your setup block:

def setup
  RockingChair::Server.reset
end

If you have tests where you want to run against the real CouchDB, just deactivate RockingChair:

RockingChair.disable

You can also make RockingChair dump all requests:

RockingChair.enable_debug

and

RockingChair.disable_debug

Caveats

At the moment the performance is not as good as it could be as there is a lot of serialization to and from JSON going on. This will be improved by storing not only the JSON tree but also the Ruby representation of the stored objects.

License

RockingChair is licensed under the Apache 2.0 license. See LICENSE.txt

About

RockingChair was written by Jonathan Weiss to make Mathias Meyer happy.