sporkd-couchrest 0.30

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. data/LICENSE +176 -0
  2. data/README.md +176 -0
  3. data/Rakefile +74 -0
  4. data/THANKS.md +18 -0
  5. data/examples/model/example.rb +144 -0
  6. data/examples/word_count/markov +38 -0
  7. data/examples/word_count/views/books/chunked-map.js +3 -0
  8. data/examples/word_count/views/books/united-map.js +1 -0
  9. data/examples/word_count/views/markov/chain-map.js +6 -0
  10. data/examples/word_count/views/markov/chain-reduce.js +7 -0
  11. data/examples/word_count/views/word_count/count-map.js +6 -0
  12. data/examples/word_count/views/word_count/count-reduce.js +3 -0
  13. data/examples/word_count/word_count.rb +46 -0
  14. data/examples/word_count/word_count_query.rb +40 -0
  15. data/examples/word_count/word_count_views.rb +26 -0
  16. data/history.txt +33 -0
  17. data/lib/couchrest/commands/generate.rb +71 -0
  18. data/lib/couchrest/commands/push.rb +103 -0
  19. data/lib/couchrest/core/database.rb +317 -0
  20. data/lib/couchrest/core/design.rb +79 -0
  21. data/lib/couchrest/core/document.rb +84 -0
  22. data/lib/couchrest/core/response.rb +16 -0
  23. data/lib/couchrest/core/server.rb +88 -0
  24. data/lib/couchrest/core/view.rb +4 -0
  25. data/lib/couchrest/helper/pager.rb +103 -0
  26. data/lib/couchrest/helper/streamer.rb +44 -0
  27. data/lib/couchrest/helper/upgrade.rb +51 -0
  28. data/lib/couchrest/mixins/attachments.rb +31 -0
  29. data/lib/couchrest/mixins/callbacks.rb +532 -0
  30. data/lib/couchrest/mixins/class_proxy.rb +112 -0
  31. data/lib/couchrest/mixins/collection.rb +222 -0
  32. data/lib/couchrest/mixins/design_doc.rb +98 -0
  33. data/lib/couchrest/mixins/document_queries.rb +51 -0
  34. data/lib/couchrest/mixins/extended_attachments.rb +74 -0
  35. data/lib/couchrest/mixins/extended_document_mixins.rb +8 -0
  36. data/lib/couchrest/mixins/properties.rb +181 -0
  37. data/lib/couchrest/mixins/validation.rb +246 -0
  38. data/lib/couchrest/mixins/views.rb +173 -0
  39. data/lib/couchrest/mixins.rb +4 -0
  40. data/lib/couchrest/monkeypatches.rb +113 -0
  41. data/lib/couchrest/more/casted_model.rb +57 -0
  42. data/lib/couchrest/more/extended_document.rb +283 -0
  43. data/lib/couchrest/more/property.rb +59 -0
  44. data/lib/couchrest/support/blank.rb +42 -0
  45. data/lib/couchrest/support/class.rb +190 -0
  46. data/lib/couchrest/support/rails.rb +47 -0
  47. data/lib/couchrest/validation/auto_validate.rb +161 -0
  48. data/lib/couchrest/validation/contextual_validators.rb +78 -0
  49. data/lib/couchrest/validation/validation_errors.rb +118 -0
  50. data/lib/couchrest/validation/validators/absent_field_validator.rb +74 -0
  51. data/lib/couchrest/validation/validators/confirmation_validator.rb +99 -0
  52. data/lib/couchrest/validation/validators/format_validator.rb +117 -0
  53. data/lib/couchrest/validation/validators/formats/email.rb +66 -0
  54. data/lib/couchrest/validation/validators/formats/url.rb +43 -0
  55. data/lib/couchrest/validation/validators/generic_validator.rb +120 -0
  56. data/lib/couchrest/validation/validators/length_validator.rb +134 -0
  57. data/lib/couchrest/validation/validators/method_validator.rb +89 -0
  58. data/lib/couchrest/validation/validators/numeric_validator.rb +104 -0
  59. data/lib/couchrest/validation/validators/required_field_validator.rb +109 -0
  60. data/lib/couchrest.rb +200 -0
  61. data/spec/couchrest/core/couchrest_spec.rb +201 -0
  62. data/spec/couchrest/core/database_spec.rb +700 -0
  63. data/spec/couchrest/core/design_spec.rb +138 -0
  64. data/spec/couchrest/core/document_spec.rb +267 -0
  65. data/spec/couchrest/core/server_spec.rb +35 -0
  66. data/spec/couchrest/helpers/pager_spec.rb +122 -0
  67. data/spec/couchrest/helpers/streamer_spec.rb +23 -0
  68. data/spec/couchrest/more/casted_extended_doc_spec.rb +73 -0
  69. data/spec/couchrest/more/casted_model_spec.rb +406 -0
  70. data/spec/couchrest/more/extended_doc_attachment_spec.rb +135 -0
  71. data/spec/couchrest/more/extended_doc_spec.rb +712 -0
  72. data/spec/couchrest/more/extended_doc_subclass_spec.rb +98 -0
  73. data/spec/couchrest/more/extended_doc_view_spec.rb +415 -0
  74. data/spec/couchrest/more/property_spec.rb +233 -0
  75. data/spec/fixtures/attachments/README +3 -0
  76. data/spec/fixtures/attachments/couchdb.png +0 -0
  77. data/spec/fixtures/attachments/test.html +11 -0
  78. data/spec/fixtures/more/article.rb +34 -0
  79. data/spec/fixtures/more/card.rb +22 -0
  80. data/spec/fixtures/more/cat.rb +19 -0
  81. data/spec/fixtures/more/course.rb +14 -0
  82. data/spec/fixtures/more/event.rb +6 -0
  83. data/spec/fixtures/more/invoice.rb +17 -0
  84. data/spec/fixtures/more/person.rb +9 -0
  85. data/spec/fixtures/more/question.rb +6 -0
  86. data/spec/fixtures/more/service.rb +12 -0
  87. data/spec/fixtures/views/lib.js +3 -0
  88. data/spec/fixtures/views/test_view/lib.js +3 -0
  89. data/spec/fixtures/views/test_view/only-map.js +4 -0
  90. data/spec/fixtures/views/test_view/test-map.js +3 -0
  91. data/spec/fixtures/views/test_view/test-reduce.js +3 -0
  92. data/spec/spec.opts +6 -0
  93. data/spec/spec_helper.rb +37 -0
  94. data/utils/remap.rb +27 -0
  95. data/utils/subset.rb +30 -0
  96. metadata +194 -0
@@ -0,0 +1,98 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+ require File.join(FIXTURE_PATH, 'more', 'card')
3
+ require File.join(FIXTURE_PATH, 'more', 'course')
4
+
5
+ # add a default value
6
+ Card.property :bg_color, :default => '#ccc'
7
+
8
+ class BusinessCard < Card
9
+ property :extension_code
10
+ property :job_title
11
+ end
12
+
13
+ class DesignBusinessCard < BusinessCard
14
+ property :bg_color, :default => '#eee'
15
+ end
16
+
17
+ class OnlineCourse < Course
18
+ property :url
19
+ view_by :url
20
+ end
21
+
22
+ class Animal < CouchRest::ExtendedDocument
23
+ use_database TEST_SERVER.default_database
24
+ property :name
25
+ view_by :name
26
+ end
27
+
28
+ class Dog < Animal; end
29
+
30
+ describe "Subclassing an ExtendedDocument" do
31
+
32
+ before(:each) do
33
+ @card = BusinessCard.new
34
+ end
35
+
36
+ it "shouldn't messup the parent's properties" do
37
+ Card.properties.should_not == BusinessCard.properties
38
+ end
39
+
40
+ it "should share the same db default" do
41
+ @card.database.uri.should == Card.database.uri
42
+ end
43
+
44
+ it "should share the same autovalidation details" do
45
+ @card.auto_validation.should be_true
46
+ end
47
+
48
+ it "should have kept the validation details" do
49
+ @card.should_not be_valid
50
+ end
51
+
52
+ it "should have added the new validation details" do
53
+ validated_fields = @card.class.validators.contexts[:default].map{|v| v.field_name}
54
+ validated_fields.should include(:extension_code)
55
+ validated_fields.should include(:job_title)
56
+ end
57
+
58
+ it "should not add to the parent's validations" do
59
+ validated_fields = Card.validators.contexts[:default].map{|v| v.field_name}
60
+ validated_fields.should_not include(:extension_code)
61
+ validated_fields.should_not include(:job_title)
62
+ end
63
+
64
+ it "should inherit default property values" do
65
+ @card.bg_color.should == '#ccc'
66
+ end
67
+
68
+ it "should be able to overwrite a default property" do
69
+ DesignBusinessCard.new.bg_color.should == '#eee'
70
+ end
71
+
72
+ it "should have a design doc slug based on the subclass name" do
73
+ Course.refresh_design_doc
74
+ OnlineCourse.design_doc_slug.should =~ /^OnlineCourse/
75
+ end
76
+
77
+ it "should have its own design_doc_fresh" do
78
+ Animal.refresh_design_doc
79
+ Dog.design_doc_fresh.should_not == true
80
+ Dog.refresh_design_doc
81
+ Dog.design_doc_fresh.should == true
82
+ end
83
+
84
+ it "should not add views to the parent's design_doc" do
85
+ Course.design_doc['views'].keys.should_not include('by_url')
86
+ end
87
+
88
+ it "should not add the parent's views to its design doc" do
89
+ Course.refresh_design_doc
90
+ OnlineCourse.refresh_design_doc
91
+ OnlineCourse.design_doc['views'].keys.should_not include('by_title')
92
+ end
93
+
94
+ it "should have an all view with a guard clause for couchrest-type == subclass name in the map function" do
95
+ OnlineCourse.design_doc['views']['all']['map'].should =~ /if \(doc\['couchrest-type'\] == 'OnlineCourse'\)/
96
+ end
97
+ end
98
+
@@ -0,0 +1,415 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+ require File.join(FIXTURE_PATH, 'more', 'article')
3
+ require File.join(FIXTURE_PATH, 'more', 'course')
4
+
5
+ describe "ExtendedDocument views" do
6
+
7
+ class Unattached < CouchRest::ExtendedDocument
8
+ # Note: no use_database here
9
+ property :title
10
+ property :questions
11
+ property :professor
12
+ view_by :title
13
+ end
14
+
15
+ describe "a model with simple views and a default param" do
16
+ before(:all) do
17
+ Article.all.map{|a| a.destroy(true)}
18
+ Article.database.bulk_delete
19
+ written_at = Time.now - 24 * 3600 * 7
20
+ @titles = ["this and that", "also interesting", "more fun", "some junk"]
21
+ @titles.each do |title|
22
+ a = Article.new(:title => title)
23
+ a.date = written_at
24
+ a.save
25
+ written_at += 24 * 3600
26
+ end
27
+ end
28
+
29
+ it "should have a design doc" do
30
+ Article.design_doc["views"]["by_date"].should_not be_nil
31
+ end
32
+
33
+ it "should save the design doc" do
34
+ Article.by_date #rescue nil
35
+ doc = Article.database.get Article.design_doc.id
36
+ doc['views']['by_date'].should_not be_nil
37
+ end
38
+
39
+ it "should return the matching raw view result" do
40
+ view = Article.by_date :raw => true
41
+ view['rows'].length.should == 4
42
+ end
43
+
44
+ it "should not include non-Articles" do
45
+ Article.database.save_doc({"date" => 1})
46
+ view = Article.by_date :raw => true
47
+ view['rows'].length.should == 4
48
+ end
49
+
50
+ it "should return the matching objects (with default argument :descending => true)" do
51
+ articles = Article.by_date
52
+ articles.collect{|a|a.title}.should == @titles.reverse
53
+ end
54
+
55
+ it "should allow you to override default args" do
56
+ articles = Article.by_date :descending => false
57
+ articles.collect{|a|a.title}.should == @titles
58
+ end
59
+ end
60
+
61
+ describe "another model with a simple view" do
62
+ before(:all) do
63
+ reset_test_db!
64
+ %w{aaa bbb ddd eee}.each do |title|
65
+ Course.new(:title => title).save
66
+ end
67
+ end
68
+ it "should make the design doc upon first query" do
69
+ Course.by_title
70
+ doc = Course.design_doc
71
+ doc['views']['all']['map'].should include('Course')
72
+ end
73
+ it "should can query via view" do
74
+ # register methods with method-missing, for local dispatch. method
75
+ # missing lookup table, no heuristics.
76
+ view = Course.view :by_title
77
+ designed = Course.by_title
78
+ view.should == designed
79
+ end
80
+ it "should get them" do
81
+ rs = Course.by_title
82
+ rs.length.should == 4
83
+ end
84
+ it "should yield" do
85
+ courses = []
86
+ Course.view(:by_title) do |course|
87
+ courses << course
88
+ end
89
+ courses[0]["doc"]["title"].should =='aaa'
90
+ end
91
+ it "should yield with by_key method" do
92
+ courses = []
93
+ Course.by_title do |course|
94
+ courses << course
95
+ end
96
+ courses[0]["doc"]["title"].should =='aaa'
97
+ end
98
+ end
99
+
100
+
101
+ describe "a ducktype view" do
102
+ before(:all) do
103
+ reset_test_db!
104
+ @id = DB.save_doc({:dept => true})['id']
105
+ end
106
+ it "should setup" do
107
+ duck = Course.get(@id) # from a different db
108
+ duck["dept"].should == true
109
+ end
110
+ it "should make the design doc" do
111
+ @as = Course.by_dept
112
+ @doc = Course.design_doc
113
+ @doc["views"]["by_dept"]["map"].should_not include("couchrest")
114
+ end
115
+ it "should not look for class" do
116
+ @as = Course.by_dept
117
+ @as[0]['_id'].should == @id
118
+ end
119
+ end
120
+
121
+ describe "a model class not tied to a database" do
122
+ before(:all) do
123
+ reset_test_db!
124
+ @db = DB
125
+ %w{aaa bbb ddd eee}.each do |title|
126
+ u = Unattached.new(:title => title)
127
+ u.database = @db
128
+ u.save
129
+ @first_id ||= u.id
130
+ end
131
+ end
132
+ it "should barf on all if no database given" do
133
+ lambda{Unattached.all}.should raise_error
134
+ end
135
+ it "should query all" do
136
+ Unattached.cleanup_design_docs!(@db)
137
+ rs = Unattached.all :database => @db
138
+ rs.length.should == 4
139
+ end
140
+ it "should barf on query if no database given" do
141
+ lambda{Unattached.view :by_title}.should raise_error
142
+ end
143
+ it "should make the design doc upon first query" do
144
+ Unattached.by_title :database => @db
145
+ doc = Unattached.design_doc
146
+ doc['views']['all']['map'].should include('Unattached')
147
+ end
148
+ it "should merge query params" do
149
+ rs = Unattached.by_title :database=>@db, :startkey=>"bbb", :endkey=>"eee"
150
+ rs.length.should == 3
151
+ end
152
+ it "should query via view" do
153
+ view = Unattached.view :by_title, :database=>@db
154
+ designed = Unattached.by_title :database=>@db
155
+ view.should == designed
156
+ end
157
+ it "should yield" do
158
+ things = []
159
+ Unattached.view(:by_title, :database=>@db) do |thing|
160
+ things << thing
161
+ end
162
+ things[0]["doc"]["title"].should =='aaa'
163
+ end
164
+ it "should yield with by_key method" do
165
+ things = []
166
+ Unattached.by_title(:database=>@db) do |thing|
167
+ things << thing
168
+ end
169
+ things[0]["doc"]["title"].should =='aaa'
170
+ end
171
+ it "should barf on get if no database given" do
172
+ lambda{Unattached.get("aaa")}.should raise_error
173
+ end
174
+ it "should get from specific database" do
175
+ u = Unattached.get(@first_id, @db)
176
+ u.title.should == "aaa"
177
+ end
178
+ it "should barf on first if no database given" do
179
+ lambda{Unattached.first}.should raise_error
180
+ end
181
+ it "should get first" do
182
+ u = Unattached.first :database=>@db
183
+ u.title.should =~ /\A...\z/
184
+ end
185
+ it "should barf on all_design_doc_versions if no database given" do
186
+ lambda{Unattached.all_design_doc_versions}.should raise_error
187
+ end
188
+ it "should be able to cleanup the db/bump the revision number" do
189
+ # if the previous specs were not run, the model_design_doc will be blank
190
+ Unattached.use_database DB
191
+ Unattached.view_by :questions
192
+ Unattached.by_questions(:database => @db)
193
+ original_revision = Unattached.model_design_doc(@db)['_rev']
194
+ Unattached.cleanup_design_docs!(@db)
195
+ Unattached.model_design_doc(@db)['_rev'].should_not == original_revision
196
+ end
197
+ end
198
+
199
+ describe "class proxy" do
200
+ before(:all) do
201
+ reset_test_db!
202
+ # setup the class default doc to save the design doc
203
+ Unattached.use_database DB
204
+ @us = Unattached.on(DB)
205
+ %w{aaa bbb ddd eee}.each do |title|
206
+ u = @us.new(:title => title)
207
+ u.save
208
+ @first_id ||= u.id
209
+ end
210
+ end
211
+ it "should query all" do
212
+ rs = @us.all
213
+ rs.length.should == 4
214
+ end
215
+ it "should make the design doc upon first query" do
216
+ @us.by_title
217
+ doc = @us.design_doc
218
+ doc['views']['all']['map'].should include('Unattached')
219
+ end
220
+ it "should merge query params" do
221
+ rs = @us.by_title :startkey=>"bbb", :endkey=>"eee"
222
+ rs.length.should == 3
223
+ end
224
+ it "should query via view" do
225
+ view = @us.view :by_title
226
+ designed = @us.by_title
227
+ view.should == designed
228
+ end
229
+ it "should yield" do
230
+ things = []
231
+ @us.view(:by_title) do |thing|
232
+ things << thing
233
+ end
234
+ things[0]["doc"]["title"].should =='aaa'
235
+ end
236
+ it "should yield with by_key method" do
237
+ things = []
238
+ @us.by_title do |thing|
239
+ things << thing
240
+ end
241
+ things[0]["doc"]["title"].should =='aaa'
242
+ end
243
+ it "should get from specific database" do
244
+ u = @us.get(@first_id)
245
+ u.title.should == "aaa"
246
+ end
247
+ it "should get first" do
248
+ u = @us.first
249
+ u.title.should =~ /\A...\z/
250
+ end
251
+ it "should clean up design docs left around on specific database" do
252
+ @us.by_title
253
+ original_id = @us.model_design_doc['_rev']
254
+ Unattached.view_by :professor
255
+ @us.by_professor
256
+ @us.model_design_doc['_rev'].should_not == original_id
257
+ end
258
+ end
259
+
260
+ describe "a model with a compound key view" do
261
+ before(:all) do
262
+ Article.by_user_id_and_date.each{|a| a.destroy(true)}
263
+ Article.database.bulk_delete
264
+ written_at = Time.now - 24 * 3600 * 7
265
+ @titles = ["uniq one", "even more interesting", "less fun", "not junk"]
266
+ @user_ids = ["quentin", "aaron"]
267
+ @titles.each_with_index do |title,i|
268
+ u = i % 2
269
+ a = Article.new(:title => title, :user_id => @user_ids[u])
270
+ a.date = written_at
271
+ a.save
272
+ written_at += 24 * 3600
273
+ end
274
+ end
275
+ it "should create the design doc" do
276
+ Article.by_user_id_and_date rescue nil
277
+ doc = Article.design_doc
278
+ doc['views']['by_date'].should_not be_nil
279
+ end
280
+ it "should sort correctly" do
281
+ articles = Article.by_user_id_and_date
282
+ articles.collect{|a|a['user_id']}.should == ['aaron', 'aaron', 'quentin',
283
+ 'quentin']
284
+ articles[1].title.should == 'not junk'
285
+ end
286
+ it "should be queryable with couchrest options" do
287
+ articles = Article.by_user_id_and_date :limit => 1, :startkey => 'quentin'
288
+ articles.length.should == 1
289
+ articles[0].title.should == "even more interesting"
290
+ end
291
+ end
292
+
293
+ describe "with a custom view" do
294
+ before(:all) do
295
+ @titles = ["very uniq one", "even less interesting", "some fun",
296
+ "really junk", "crazy bob"]
297
+ @tags = ["cool", "lame"]
298
+ @titles.each_with_index do |title,i|
299
+ u = i % 2
300
+ a = Article.new(:title => title, :tags => [@tags[u]])
301
+ a.save
302
+ end
303
+ end
304
+ it "should be available raw" do
305
+ view = Article.by_tags :raw => true
306
+ view['rows'].length.should == 5
307
+ end
308
+
309
+ it "should be default to :reduce => false" do
310
+ ars = Article.by_tags
311
+ ars.first.tags.first.should == 'cool'
312
+ end
313
+
314
+ it "should be raw when reduce is true" do
315
+ view = Article.by_tags :reduce => true, :group => true
316
+ view['rows'].find{|r|r['key'] == 'cool'}['value'].should == 3
317
+ end
318
+ end
319
+
320
+ # TODO: moved to Design, delete
321
+ describe "adding a view" do
322
+ before(:each) do
323
+ reset_test_db!
324
+ Article.by_date
325
+ @original_doc_rev = Article.model_design_doc['_rev']
326
+ @design_docs = Article.database.documents :startkey => "_design/", :endkey => "_design/\u9999"
327
+ end
328
+ it "should not create a design doc on view definition" do
329
+ Article.view_by :created_at
330
+ newdocs = Article.database.documents :startkey => "_design/", :endkey => "_design/\u9999"
331
+ newdocs["rows"].length.should == @design_docs["rows"].length
332
+ end
333
+ it "should create a new version of the design document on view access" do
334
+ ddocs = Article.all_design_doc_versions["rows"].length
335
+ Article.view_by :updated_at
336
+ Article.by_updated_at
337
+ @original_doc_rev.should_not == Article.model_design_doc['_rev']
338
+ Article.design_doc["views"].keys.should include("by_updated_at")
339
+ end
340
+ end
341
+
342
+ describe "with a collection" do
343
+ before(:all) do
344
+ reset_test_db!
345
+ @titles = ["very uniq one", "really interesting", "some fun",
346
+ "really awesome", "crazy bob", "this rocks", "super rad"]
347
+ @titles.each_with_index do |title,i|
348
+ a = Article.new(:title => title, :date => Date.today)
349
+ a.save
350
+ end
351
+ end
352
+ it "should return a proxy that looks like an array of 7 Article objects" do
353
+ articles = Article.by_date :key => Date.today
354
+ articles.class.should == Array
355
+ articles.size.should == 7
356
+ end
357
+ it "should get a subset of articles using paginate" do
358
+ articles = Article.by_date :key => Date.today
359
+ articles.paginate(:page => 1, :per_page => 3).size.should == 3
360
+ articles.paginate(:page => 2, :per_page => 3).size.should == 3
361
+ articles.paginate(:page => 3, :per_page => 3).size.should == 1
362
+ end
363
+ it "should get all articles, a few at a time, using paginated each" do
364
+ articles = Article.by_date :key => Date.today
365
+ articles.paginated_each(:per_page => 3) do |a|
366
+ a.should_not be_nil
367
+ end
368
+ end
369
+ it "should provide a class method to access the collection directly" do
370
+ articles = Article.collection_proxy_for('Article', 'by_date', :descending => true,
371
+ :key => Date.today, :include_docs => true)
372
+ articles.class.should == Array
373
+ articles.size.should == 7
374
+ end
375
+ it "should provide a class method for paginate" do
376
+ articles = Article.paginate(:design_doc => 'Article', :view_name => 'by_date',
377
+ :per_page => 3, :descending => true, :key => Date.today, :include_docs => true)
378
+ articles.size.should == 3
379
+
380
+ articles = Article.paginate(:design_doc => 'Article', :view_name => 'by_date',
381
+ :per_page => 3, :page => 2, :descending => true, :key => Date.today, :include_docs => true)
382
+ articles.size.should == 3
383
+
384
+ articles = Article.paginate(:design_doc => 'Article', :view_name => 'by_date',
385
+ :per_page => 3, :page => 3, :descending => true, :key => Date.today, :include_docs => true)
386
+ articles.size.should == 1
387
+ end
388
+ it "should provide a class method for paginated_each" do
389
+ options = { :design_doc => 'Article', :view_name => 'by_date',
390
+ :per_page => 3, :page => 1, :descending => true, :key => Date.today,
391
+ :include_docs => true }
392
+ Article.paginated_each(options) do |a|
393
+ a.should_not be_nil
394
+ end
395
+ end
396
+ it "should provide a class method to get a collection for a view" do
397
+ class Article
398
+ provides_collection :article_details, 'Article', 'by_date', :descending => true, :include_docs => true
399
+ end
400
+
401
+ articles = Article.find_all_article_details(:key => Date.today)
402
+ articles.class.should == Array
403
+ articles.size.should == 7
404
+ end
405
+ it "should raise an exception if design_doc is not provided" do
406
+ lambda{Article.collection_proxy_for(nil, 'by_date')}.should raise_error
407
+ lambda{Article.paginate(:view_name => 'by_date')}.should raise_error
408
+ end
409
+ it "should raise an exception if view_name is not provided" do
410
+ lambda{Article.collection_proxy_for('Article', nil)}.should raise_error
411
+ lambda{Article.paginate(:design_doc => 'Article')}.should raise_error
412
+ end
413
+ end
414
+
415
+ end