Refactoring design doc manipulation for a much simpler and more reliable approach

This commit is contained in:
Sam Lown 2011-04-17 02:46:33 +02:00
parent 2eed3581af
commit 5805f6e27b
19 changed files with 285 additions and 195 deletions

View file

@ -378,6 +378,43 @@ Use pagination as follows:
# In your view, with the kaminari gem loaded: # In your view, with the kaminari gem loaded:
paginate @posts paginate @posts
### Design Documents and Views
Views must be defined in a Design Document for CouchDB to be able to perform searches. Each model therefore must have its own Design Document. Deciding when to update the model's design doc is a difficult issue, as in production you don't want to be constantly checking for updates and in development maximum flexability is important. CouchRest Model solves this issue by providing the `auto_update_design_doc` configuration option and is enabled by default.
Each time a view or other design method is requested a quick GET for the design will be sent to ensure it is up to date with the latest changes. Results are cached in the current thread for the complete design document's URL, including the database, to try and limit requests. This should be fine for most projects, but dealing with multiple sub-databases may require a different strategy.
Setting the option to false will require a manual update of each model's design doc whenever you know a change has happened. This will be useful in cases when you do not want CouchRest Model to interfere with the views already store in the CouchRest database, or you'd like to deploy your own update strategy. Here's an example of a module that will update all submodules:
module CouchRestMigration
def self.update_design_docs
CouchRest::Model::Base.subclasses.each{|klass| klass.save_design_doc! if klass.respond_to?(:save_design_doc!)}
end
end
# Running this from your applications initializers would be a good idea,
# for example in Rail's application.rb or environments/production.rb:
config.after_initialize do
CouchRestMigration.update_design_docs
end
If you're dealing with multiple databases, using proxied models, or databases that are created on-the-fly, a more sophisticated approach might be required:
module CouchRestMigration
def self.update_all_design_docs
update_design_docs(COUCHREST_DATABASE)
Company.all.each do |company|
update_design_docs(company.proxy_database)
end
end
def self.update_design_docs(db)
CouchRest::Model::Base.subclasses.each{|klass| klass.save_design_doc!(db) if klass.respond_to?(:save_design_doc!(db)}
end
end
# Command to run after a capistrano migration:
$ rails runner "CouchRestMigratin.update_all_design_docs"
## Assocations ## Assocations
@ -546,7 +583,7 @@ such as validating for uniqueness and associations.
CouchRest Model supports a few configuration options. These can be set either for the whole Model code CouchRest Model supports a few configuration options. These can be set either for the whole Model code
base or for a specific model of your chosing. To configure globally, provide something similar to the base or for a specific model of your chosing. To configure globally, provide something similar to the
following in your projects loading code: following in your projects initializers or environments:
CouchRest::Model::Base.configure do |config| CouchRest::Model::Base.configure do |config|
config.mass_assign_any_attribute = true config.mass_assign_any_attribute = true
@ -563,6 +600,7 @@ Options currently avilable are:
* `mass_assign_any_attribute` - false by default, when true any attribute may be updated via the update_attributes or attributes= methods. * `mass_assign_any_attribute` - false by default, when true any attribute may be updated via the update_attributes or attributes= methods.
* `model_type_key` - 'couchrest-type' by default, is the name of property that holds the class name of each CouchRest Model. * `model_type_key` - 'couchrest-type' by default, is the name of property that holds the class name of each CouchRest Model.
* `auto_update_design_doc` - true by default, every time a view is requested and this option is enabled, a quick check will be performed to ensure the model's design document is up to date. When disabled, you'll need to perform the updates manually. Typically, this option should be enabled in development, and disabled in production. See the View section for more details.
## Notable Issues ## Notable Issues

View file

@ -2,6 +2,8 @@
* Minor enhancements: * Minor enhancements:
* Adding "couchrest-hash" to Design Docs with aim to improve view update handling. * Adding "couchrest-hash" to Design Docs with aim to improve view update handling.
* Major changes to the way design document updates are handled internally.
* Added "auto_update_design_doc" configuration option.
* Using #descending on View object will automatically swap startkey with endkey. * Using #descending on View object will automatically swap startkey with endkey.
== 1.1.0.beta2 == 1.1.0.beta2

View file

@ -1,5 +1,11 @@
module CouchRest module CouchRest
module Model module Model
# Warning! The Collection module is seriously depricated.
# Use the new Design Views instead, as this code copies many other parts
# of CouchRest Model.
#
# Expect this to be removed soon.
#
module Collection module Collection
def self.included(base) def self.included(base)
@ -131,6 +137,9 @@ module CouchRest
else else
@view_name = "#{design_doc}/#{view_name}" @view_name = "#{design_doc}/#{view_name}"
end end
# Save the design doc, ready for use
@container_class.save_design_doc(@database)
end end
# See Collection.paginate # See Collection.paginate

View file

@ -10,10 +10,12 @@ module CouchRest
included do included do
add_config :model_type_key add_config :model_type_key
add_config :mass_assign_any_attribute add_config :mass_assign_any_attribute
add_config :auto_update_design_doc
configure do |config| configure do |config|
config.model_type_key = 'couchrest-type' # 'model'? config.model_type_key = 'couchrest-type' # 'model'?
config.mass_assign_any_attribute = false config.mass_assign_any_attribute = false
config.auto_update_design_doc = true
end end
end end

View file

@ -10,12 +10,6 @@ module CouchRest
@design_doc ||= ::CouchRest::Design.new(default_design_doc) @design_doc ||= ::CouchRest::Design.new(default_design_doc)
end end
# Use when something has been changed, like a view, so that on the next request
# the design docs will be updated (if changed!)
def req_design_doc_refresh
@design_doc_fresh = { }
end
def design_doc_id def design_doc_id
"_design/#{design_doc_slug}" "_design/#{design_doc_slug}"
end end
@ -24,6 +18,80 @@ module CouchRest
self.to_s self.to_s
end end
def design_doc_full_url(db = database)
"#{db.uri}/#{design_doc_id}"
end
# Retreive the latest version of the design document directly
# from the database. This is never cached and will return nil if
# the design is not present.
#
# Use this method if you'd like to compare revisions [_rev] which
# is not stored in the normal design doc.
def stored_design_doc(db = database)
db.get(design_doc_id)
rescue RestClient::ResourceNotFound
nil
end
# Save the design doc onto a target database in a thread-safe way,
# not modifying the model's design_doc
#
# See also save_design_doc! to always save the design doc even if there
# are no changes.
def save_design_doc(db = database, force = false)
update_design_doc(db, force)
end
# Force the update of the model's design_doc even if it hasn't changed.
def save_design_doc!(db = database)
save_design_doc(db, true)
end
private
def design_doc_cache
Thread.current[:couchrest_design_cache] ||= {}
end
def design_doc_cache_checksum(db)
design_doc_cache[design_doc_full_url(db)]
end
def set_design_doc_cache_checksum(db, checksum)
design_doc_cache[design_doc_full_url(db)] = checksum
end
# Writes out a design_doc to a given database if forced
# or the stored checksum is not the same as the current
# generated checksum.
#
# Returns the original design_doc provided, but does
# not update it with the revision.
def update_design_doc(db, force = false)
return design_doc unless force || auto_update_design_doc
# Grab the design doc's checksum
checksum = design_doc.checksum!
# If auto updates enabled, check checksum cache
return design_doc if auto_update_design_doc && design_doc_cache_checksum(db) == checksum
# Load up the stored doc (if present), update, and save
saved = stored_design_doc(db)
if saved
if force || saved['couchrest-hash'] != checksum
saved.merge!(design_doc)
db.save_doc(saved)
end
else
db.save_doc(design_doc)
design_doc.delete('_rev') # Prevent conflicts, never store rev as DB specific
end
# Ensure checksum cached for next attempt if using auto updates
set_design_doc_cache_checksum(db, checksum) if auto_update_design_doc
design_doc
end
def default_design_doc def default_design_doc
{ {
"_id" => design_doc_id, "_id" => design_doc_id,
@ -40,68 +108,7 @@ module CouchRest
} }
end end
# DEPRECATED
# use stored_design_doc to retrieve the current design doc
def all_design_doc_versions(db = database)
db.documents :startkey => "_design/#{self.to_s}",
:endkey => "_design/#{self.to_s}-\u9999"
end
# Retreive the latest version of the design document directly
# from the database.
def stored_design_doc(db = database)
db.get(design_doc_id) rescue nil
end
alias :model_design_doc :stored_design_doc
def refresh_design_doc(db = database)
raise "Database missing for design document refresh" if db.nil?
unless design_doc_fresh(db)
save_design_doc(db)
design_doc_fresh(db, true)
end
end
# Save the design doc onto a target database in a thread-safe way,
# not modifying the model's design_doc
#
# See also save_design_doc! to always save the design doc even if there
# are no changes.
def save_design_doc(db = database, force = false)
update_design_doc(Design.new(design_doc), db, force)
end
# Force the update of the model's design_doc even if it hasn't changed.
def save_design_doc!(db = database)
save_design_doc(db, true)
end
protected
def design_doc_fresh(db, fresh = nil)
@design_doc_fresh ||= {}
if fresh.nil?
@design_doc_fresh[db.uri] || false
else
@design_doc_fresh[db.uri] = fresh
end
end
# Writes out a design_doc to a given database, returning the
# updated design doc
def update_design_doc(design_doc, db, force = false)
design_doc['couchrest-hash'] = design_doc.checksum
saved = stored_design_doc(db)
if saved
if force || saved['couchrest-hash'] != design_doc['couchrest-hash']
saved.merge!(design_doc)
db.save_doc(saved)
end
else
db.save_doc(design_doc)
end
design_doc
end
end # module ClassMethods end # module ClassMethods

View file

@ -28,8 +28,6 @@ module CouchRest
mapper.create_view_method(:all) mapper.create_view_method(:all)
mapper.instance_eval(&block) if block_given? mapper.instance_eval(&block) if block_given?
req_design_doc_refresh
end end
# Override the default page pagination value: # Override the default page pagination value:

View file

@ -48,7 +48,6 @@ module CouchRest
end end
# Base # Base
def new(*args) def new(*args)
proxy_update(model.new(*args)) proxy_update(model.new(*args))
end end
@ -118,15 +117,10 @@ module CouchRest
end end
# DesignDoc # DesignDoc
def design_doc def design_doc
@model.design_doc @model.design_doc
end end
def refresh_design_doc(db = nil)
@model.refresh_design_doc(db || @database)
end
def save_design_doc(db = nil) def save_design_doc(db = nil)
@model.save_design_doc(db || @database) @model.save_design_doc(db || @database)
end end

View file

@ -1,15 +0,0 @@
CouchRest::Database.class_eval do
alias :delete_orig! :delete!
def delete!
clear_model_fresh_cache
delete_orig!
end
# If the database is deleted, ensure that the design docs will be refreshed.
def clear_model_fresh_cache
::CouchRest::Model::Base.subclasses.each{|klass| klass.req_design_doc_refresh if klass.respond_to?(:req_design_doc_refresh)}
end
end

View file

@ -1,18 +1,19 @@
CouchRest::Design.class_eval do CouchRest::Design.class_eval do
# Calculate a checksum of the Design document. Used for ensuring the latest # Calculate and update the checksum of the Design document.
# version has been sent to the database. # Used for ensuring the latest version has been sent to the database.
# #
# This will generate an flatterned, ordered array of all the elements of the # This will generate an flatterned, ordered array of all the elements of the
# design document, convert to string then generate an MD5 Hash. This should # design document, convert to string then generate an MD5 Hash. This should
# result in a consisitent Hash accross all platforms. # result in a consisitent Hash accross all platforms.
# #
def checksum def checksum!
# create a copy of basic elements # create a copy of basic elements
base = self.dup base = self.dup
base.delete('_id') base.delete('_id')
base.delete('_rev') base.delete('_rev')
base.delete('couchrest-hash')
result = nil result = nil
flatten = flatten =
lambda {|r| lambda {|r|
@ -26,7 +27,7 @@ CouchRest::Design.class_eval do
end end
}).call(r) }).call(r)
} }
Digest::MD5.hexdigest(flatten.call(base).sort.join('')) self['couchrest-hash'] = Digest::MD5.hexdigest(flatten.call(base).sort.join(''))
end end
end end

View file

@ -81,7 +81,6 @@ module CouchRest
end end
keys.push opts keys.push opts
design_doc.view_by(*keys) design_doc.view_by(*keys)
req_design_doc_refresh
end end
# returns stored defaults if there is a view named this in the design doc # returns stored defaults if there is a view named this in the design doc
@ -99,9 +98,9 @@ module CouchRest
def view(name, query={}, &block) def view(name, query={}, &block)
query = query.dup # Modifications made on copy! query = query.dup # Modifications made on copy!
db = query.delete(:database) || database db = query.delete(:database) || database
refresh_design_doc(db)
query[:raw] = true if query[:reduce] query[:raw] = true if query[:reduce]
raw = query.delete(:raw) raw = query.delete(:raw)
save_design_doc(db)
fetch_view_with_docs(db, name, query, raw, &block) fetch_view_with_docs(db, name, query, raw, &block)
end end
@ -140,21 +139,8 @@ module CouchRest
def fetch_view(db, view_name, opts, &block) def fetch_view(db, view_name, opts, &block)
raise "A view needs a database to operate on (specify :database option, or use_database in the #{self.class} class)" unless db raise "A view needs a database to operate on (specify :database option, or use_database in the #{self.class} class)" unless db
retryable = true
begin
design_doc.view_on(db, view_name, opts, &block) design_doc.view_on(db, view_name, opts, &block)
# the design doc may not have been saved yet on this database
rescue RestClient::ResourceNotFound => e
if retryable
save_design_doc(db)
retryable = false
retry
else
raise e
end end
end
end
end # module ClassMethods end # module ClassMethods
end end

View file

@ -45,7 +45,6 @@ require "couchrest/model/designs"
require "couchrest/model/designs/view" require "couchrest/model/designs/view"
# Monkey patches applied to couchrest # Monkey patches applied to couchrest
require "couchrest/model/support/couchrest_database"
require "couchrest/model/support/couchrest_design" require "couchrest/model/support/couchrest_design"
# Core Extensions # Core Extensions
require "couchrest/model/core_extensions/hash" require "couchrest/model/core_extensions/hash"

View file

@ -262,7 +262,6 @@ describe "Model Base" do
describe "counting all instances of a model" do describe "counting all instances of a model" do
before(:each) do before(:each) do
@db = reset_test_db! @db = reset_test_db!
# WithTemplateAndUniqueID.req_design_doc_refresh
end end
it ".count should return 0 if there are no docuemtns" do it ".count should return 0 if there are no docuemtns" do

View file

@ -5,7 +5,6 @@ describe "Collections" do
before(:all) do before(:all) do
reset_test_db! reset_test_db!
Article.refresh_design_doc
titles = ["very uniq one", "really interesting", "some fun", titles = ["very uniq one", "really interesting", "some fun",
"really awesome", "crazy bob", "this rocks", "super rad"] "really awesome", "crazy bob", "this rocks", "super rad"]
titles.each_with_index do |title,i| titles.each_with_index do |title,i|

View file

@ -6,23 +6,93 @@ require File.join(FIXTURE_PATH, 'more', 'article')
describe "Design Documents" do describe "Design Documents" do
before :all do
reset_test_db!
end
describe "CouchRest Extension" do describe "CouchRest Extension" do
it "should have created a checksum method" do it "should have created a checksum! method" do
::CouchRest::Design.new.should respond_to(:checksum) ::CouchRest::Design.new.should respond_to(:checksum!)
end end
it "should calculate a consistent checksum for model" do it "should calculate a consistent checksum for model" do
WithTemplateAndUniqueID.design_doc.checksum.should eql('7786018bacb492e34a38436421a728d0') WithTemplateAndUniqueID.design_doc.checksum!.should eql('7786018bacb492e34a38436421a728d0')
end end
it "should calculate checksum for complex model" do it "should calculate checksum for complex model" do
Article.design_doc.checksum.should eql('1e6c315853cd5ff10e5c914863aee569') Article.design_doc.checksum!.should eql('1e6c315853cd5ff10e5c914863aee569')
end
it "should cache the generated checksum value" do
Article.design_doc.checksum!
Article.design_doc['couchrest-hash'].should_not be_blank
end end
end end
describe "class methods" do
describe ".design_doc" do
it "should provide Design document" do
Article.design_doc.should be_a(::CouchRest::Design)
end
end
describe ".design_doc_id" do
it "should provide a reasonable id" do
Article.design_doc_id.should eql("_design/Article")
end
end
describe ".design_doc_slug" do
it "should provide slug part of design doc" do
Article.design_doc_slug.should eql('Article')
end
end
describe ".design_doc_full_url" do
it "should provide complete url" do
Article.design_doc_full_url.should eql("#{DB.uri}/_design/Article")
end
it "should provide complete url for new DB" do
db = mock("Database")
db.should_receive(:uri).and_return('db')
Article.design_doc_full_url(db).should eql("db/_design/Article")
end
end
describe ".stored_design_doc" do
it "should load a stored design from the database" do
Article.by_date
Article.stored_design_doc['_rev'].should_not be_blank
end
it "should return nil if not already stored" do
WithDefaultValues.stored_design_doc.should be_nil
end
end
describe ".save_design_doc" do
it "should call up the design updater" do
Article.should_receive(:update_design_doc).with('db', false)
Article.save_design_doc('db')
end
end
describe ".save_design_doc!" do
it "should call save_design_doc with force" do
Article.should_receive(:save_design_doc).with('db', true)
Article.save_design_doc!('db')
end
end
end
describe "basics" do describe "basics" do
before :all do
reset_test_db!
end
it "should have been instantiated with views" do it "should have been instantiated with views" do
d = Article.design_doc d = Article.design_doc
d['views']['all']['map'].should include('Article') d['views']['all']['map'].should include('Article')
@ -54,6 +124,13 @@ describe "Design Documents" do
written_at += 24 * 3600 written_at += 24 * 3600
end end
end end
it "will send request for the saved design doc on view request" do
reset_test_db!
Article.should_receive(:stored_design_doc).and_return(nil)
Article.by_date
end
it "should have generated a design doc" do it "should have generated a design doc" do
Article.design_doc["views"]["by_date"].should_not be_nil Article.design_doc["views"]["by_date"].should_not be_nil
end end
@ -68,19 +145,54 @@ describe "Design Documents" do
design = Article.design_doc design = Article.design_doc
view = design['views']['by_date']['map'] view = design['views']['by_date']['map']
design['views']['by_date']['map'] = view + ' ' # little bit of white space design['views']['by_date']['map'] = view + ' ' # little bit of white space
Article.req_design_doc_refresh
Article.by_date Article.by_date
orig = Article.stored_design_doc Article.stored_design_doc['_rev'].should_not eql(orig['_rev'])
orig['views']['by_date']['map'].should eql(Article.design_doc['views']['by_date']['map']) orig['views']['by_date']['map'].should_not eql(Article.design_doc['views']['by_date']['map'])
end end
it "should not save design doc if not changed" do it "should not save design doc if not changed" do
Article.by_date Article.by_date
orig = Article.stored_design_doc['_rev'] orig = Article.stored_design_doc['_rev']
Article.req_design_doc_refresh
Article.by_date Article.by_date
Article.stored_design_doc['_rev'].should eql(orig) Article.stored_design_doc['_rev'].should eql(orig)
end end
end end
describe "when auto_update_design_doc false" do
before :all do
Article.auto_update_design_doc = false
Article.save_design_doc!
end
after :all do
Article.auto_update_design_doc = true
end
it "will not send a request for the saved design doc" do
Article.should_not_receive(:stored_design_doc)
Article.by_date
end
it "will not update stored design doc if view changed" do
Article.by_date
orig = Article.stored_design_doc
design = Article.design_doc
view = design['views']['by_date']['map']
design['views']['by_date']['map'] = view + ' '
Article.by_date
Article.stored_design_doc['_rev'].should eql(orig['_rev'])
end
it "will update stored design if forced" do
Article.by_date
orig = Article.stored_design_doc
design = Article.design_doc
view = design['views']['by_date']['map']
design['views']['by_date']['map'] = view + ' '
Article.save_design_doc!
Article.stored_design_doc['_rev'].should_not eql(orig['_rev'])
end
end
end end
describe "lazily refreshing the design document" do describe "lazily refreshing the design document" do
@ -90,11 +202,7 @@ describe "Design Documents" do
end end
it "should not save the design doc twice" do it "should not save the design doc twice" do
WithTemplateAndUniqueID.all WithTemplateAndUniqueID.all
WithTemplateAndUniqueID.req_design_doc_refresh
WithTemplateAndUniqueID.refresh_design_doc
rev = WithTemplateAndUniqueID.design_doc['_rev'] rev = WithTemplateAndUniqueID.design_doc['_rev']
WithTemplateAndUniqueID.req_design_doc_refresh
WithTemplateAndUniqueID.refresh_design_doc
WithTemplateAndUniqueID.design_doc['_rev'].should eql(rev) WithTemplateAndUniqueID.design_doc['_rev'].should eql(rev)
end end
end end

View file

@ -31,11 +31,6 @@ describe "Design" do
DesignModel.design { foo } DesignModel.design { foo }
end end
it "should request a design refresh" do
DesignModel.should_receive(:req_design_doc_refresh)
DesignModel.design() { }
end
it "should work even if a block is not provided" do it "should work even if a block is not provided" do
lambda { DesignModel.design }.should_not raise_error lambda { DesignModel.design }.should_not raise_error
end end

View file

@ -233,17 +233,6 @@ describe "Proxyable" do
@obj.design_doc @obj.design_doc
end end
describe "#refresh_design_doc" do
it "should be proxied without database arg" do
Cat.should_receive(:refresh_design_doc).with('database')
@obj.refresh_design_doc
end
it "should be proxied with database arg" do
Cat.should_receive(:refresh_design_doc).with('db')
@obj.refresh_design_doc('db')
end
end
describe "#save_design_doc" do describe "#save_design_doc" do
it "should be proxied without args" do it "should be proxied without args" do
Cat.should_receive(:save_design_doc).with('database') Cat.should_receive(:save_design_doc).with('database')

View file

@ -71,24 +71,14 @@ describe "Subclassing a Model" do
end end
it "should have a design doc slug based on the subclass name" do it "should have a design doc slug based on the subclass name" do
Course.refresh_design_doc
OnlineCourse.design_doc_slug.should =~ /^OnlineCourse/ OnlineCourse.design_doc_slug.should =~ /^OnlineCourse/
end end
it "should have its own design_doc_fresh" do
Animal.refresh_design_doc
Dog.send(:design_doc_fresh, Dog.database).should_not == true
Dog.refresh_design_doc
Dog.send(:design_doc_fresh, Dog.database).should == true
end
it "should not add views to the parent's design_doc" do it "should not add views to the parent's design_doc" do
Course.design_doc['views'].keys.should_not include('by_url') Course.design_doc['views'].keys.should_not include('by_url')
end end
it "should not add the parent's views to its design doc" do it "should not add the parent's views to its design doc" do
Course.refresh_design_doc
OnlineCourse.refresh_design_doc
OnlineCourse.design_doc['views'].keys.should_not include('by_title') OnlineCourse.design_doc['views'].keys.should_not include('by_title')
end end

View file

@ -23,7 +23,7 @@ describe "Model views" do
it "should not alter original query" do it "should not alter original query" do
options = { :database => DB } options = { :database => DB }
view = Article.view('by_date', options) view = Article.view('by_date', options)
options[:database].should_not be_nil options[:database].should eql(DB)
end end
end end
@ -267,18 +267,6 @@ describe "Model views" do
u.title.should == "aaa" u.title.should == "aaa"
end end
it "should barf on all_design_doc_versions if no database given" do
lambda{Unattached.all_design_doc_versions}.should raise_error
end
it "should be able to cleanup the db/bump the revision number" do
# if the previous specs were not run, the model_design_doc will be blank
Unattached.use_database DB
Unattached.view_by :questions
Unattached.by_questions(:database => @db)
original_revision = Unattached.model_design_doc(@db)['_rev']
Unattached.save_design_doc!(@db)
Unattached.model_design_doc(@db)['_rev'].should_not == original_revision
end
end end
describe "a model with a compound key view" do describe "a model with a compound key view" do
@ -346,7 +334,7 @@ describe "Model views" do
before(:each) do before(:each) do
reset_test_db! reset_test_db!
Article.by_date Article.by_date
@original_doc_rev = Article.model_design_doc['_rev'] @original_doc_rev = Article.stored_design_doc['_rev']
@design_docs = Article.database.documents :startkey => "_design/", :endkey => "_design/\u9999" @design_docs = Article.database.documents :startkey => "_design/", :endkey => "_design/\u9999"
end end
it "should not create a design doc on view definition" do it "should not create a design doc on view definition" do
@ -355,10 +343,9 @@ describe "Model views" do
newdocs["rows"].length.should == @design_docs["rows"].length newdocs["rows"].length.should == @design_docs["rows"].length
end end
it "should create a new version of the design document on view access" do it "should create a new version of the design document on view access" do
ddocs = Article.all_design_doc_versions["rows"].length
Article.view_by :updated_at Article.view_by :updated_at
Article.by_updated_at Article.by_updated_at
@original_doc_rev.should_not == Article.model_design_doc['_rev'] @original_doc_rev.should_not == Article.stored_design_doc['_rev']
Article.design_doc["views"].keys.should include("by_updated_at") Article.design_doc["views"].keys.should include("by_updated_at")
end end
end end

View file

@ -22,6 +22,8 @@ end
def reset_test_db! def reset_test_db!
DB.recreate! rescue nil DB.recreate! rescue nil
# Reset the Design Cache
Thread.current[:couchrest_design_cache] = {}
DB DB
end end