couchrest_model/spec/database_spec.rb

61 lines
1.6 KiB
Ruby
Raw Normal View History

2008-03-19 07:11:44 +01:00
require File.dirname(__FILE__) + '/../lib/couch_rest'
2008-03-18 19:37:10 +01:00
2008-03-19 07:11:44 +01:00
describe CouchRest::Database do
2008-03-18 19:37:10 +01:00
before(:each) do
2008-03-19 07:11:44 +01:00
@cr = CouchRest.new("http://local.grabb.it:5984")
begin
2008-03-19 16:57:20 +01:00
@db = @cr.create_db('couchrest-test')
2008-03-19 07:11:44 +01:00
rescue RestClient::Request::RequestFailed
end
2008-03-18 19:37:10 +01:00
end
2008-03-19 16:57:20 +01:00
after(:each) do
begin
@db.delete!
rescue RestClient::Request::RequestFailed
end
end
describe "inserting documents without an id: POST" do
it "should start without the document" do
@db.documents.should_not include({'_id' => 'my-doc'})
# this needs to be a loop over docs on content with the post
# or instead make it return something with a fancy <=> method
end
it "should create the document" do
r = @db.save({'lemons' => 'from texas', 'and' => 'spain'})
@db.documents.should include(r)
end
end
describe "with documents in it" do
2008-03-19 07:11:44 +01:00
before(:each) do
2008-03-19 16:57:20 +01:00
# @db.create_doc()
end
it "should list them" do
ds = @db.documents
ds['rows'].should be_an_instance_of(Array)
# ds[:total_rows].should be_greater_than 0
# should I use a View class?
ds.should be_an_instance_of(CouchRest::View)
2008-03-19 07:11:44 +01:00
2008-03-19 16:57:20 +01:00
# ds.rows = []
# ds.rows.include?(...)
# ds.total_rows
2008-03-19 07:11:44 +01:00
end
2008-03-19 16:57:20 +01:00
end
describe "deleting a database" do
2008-03-18 19:37:10 +01:00
it "should start with the test database" do
@cr.databases.should include('couchrest-test')
end
it "should delete the database" do
db = @cr.database('couchrest-test')
2008-03-19 16:57:20 +01:00
# r =
db.delete!
# r['ok'].should == true
2008-03-18 19:37:10 +01:00
@cr.databases.should_not include('couchrest-test')
end
end
end