olabini / ribs

Ribs is a Ruby DAO/ORM framework built on top of Hibernate, running on JRuby.

This URL has Read+Write access

ribs / test / track_spec.rb
100644 430 lines (363 sloc) 12.91 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
require File.join(File.dirname(__FILE__), 'test_helper')
 
class Track
  attr_accessor :track_id
  attr_accessor :track_title
  attr_accessor :time
  attr_accessor :date_added
  attr_accessor :last_played_at
  attr_accessor :file_data
  attr_accessor :desc
  attr_accessor :some_fraction
  attr_accessor :is_good
  attr_accessor :full_price
  attr_accessor :volume
 
  Ribs! :table => :DB_TRACK, :identity_map => false do |track|
    track.TRACK_ID.primary_key!
 
    track.track_title :column => :title
    track.time :column => :playTime
    track.date_added :column => :added
    track.last_played_at :column => :lastPlayed
    track.file_data :column => :data
    track.desc :column => :description
    track.some_fraction :column => :fraction
    track.is_good :column => :good
    track.full_price :column => :price
 
    track.filePath :avoid, :default => "fluxie"
  end
end
 
# R(Track).define_accessors
 
R(Track)
 
describe Track do
  it "should be able to find things based on mapped primary key" do
    track = R(Track).get(2)
    track.track_id.should == 2
    track.track_title.should == "flux"
    track.time.should == Time.time_at(16,23,0)
    track.date_added.should == Time.local(1983, 12, 13, 0,0,0)
    track.volume.should == 13
  end
    
  it "should have property that wasn't named" do
    prop = R(Track).metadata['VOLUME']
    prop.name.should == 'VOLUME'
    colarr = prop.column_iterator.to_a
    colarr.length.should == 1
    colarr[0].name.should == 'VOLUME'
  end
 
  it "shouldn't have property that's avoided" do
    R(Track).metadata['filePath'].should be_nil
  end
 
  it "should have correct names for defined properties" do
    props = R(Track).metadata.properties
    # the primary keys aren't actually part of the properties
    props.keys.sort.should == ['OTHERFRACTION', 'VOLUME', 'track_title', 'time', 'date_added', 'file_data', 'desc', 'some_fraction', 'is_good', 'full_price', 'last_played_at'].sort
    props.values.map { |p| p.column_iterator.to_a[0].name }.sort.should ==
      ['VOLUME', 'TITLE', 'PLAYTIME', 'ADDED', 'OTHERFRACTION', 'LASTPLAYED', 'DATA', 'DESCRIPTION', 'FRACTION', 'GOOD', 'PRICE'].sort
  end
  
  it "should have correct value and type for OTHERFRACTION property from instance variable" do
    res = R(Track).all.map { |a| a.instance_variable_get :@otherfraction }.sort
    res[0].should be_close(5.7, 0.00001)
    res[1].should be_close(35435.4522234, 0.01)
  end
 
  it "should have correct value and type for VOLUME property" do
    R(Track).all.map { |a| a.volume }.sort.should == [13, 13]
  end
  
  it "should have correct value and type for track_title property" do
    R(Track).all.map { |a| a.track_title }.sort.should == ["flux", "foobar"]
  end
 
  it "should have correct value and type for time property" do
    R(Track).all.map { |a| a.time }.sort.should == [Time.time_at(14,50,0), Time.time_at(16,23,0)]
  end
 
  it "should have correct value and type for date_added property" do
    R(Track).all.map { |a| a.date_added }.sort.should == [Time.local(1983, 12, 13, 0, 0, 0),Time.local(1984, 12, 13, 0, 0, 0)]
  end
  
  it "should have correct value and type for file_data property" do
    R(Track).all.map { |a| a.file_data }.sort.should == ["abc", "mumsi"]
  end
 
  it "should have correct value and type for desc property" do
    R(Track).all.map { |a| a.desc }.sort.should == ["foobar", "maxi"]
  end
  
  it "should have correct value and type for some_fraction property" do
    res = R(Track).all.map { |a| a.some_fraction }.sort
    res[0].should be_close(3.4, 0.00001)
    res[1].should be_close(3.5, 0.00001)
  end
  
  it "should have correct value and type for is_good property" do
    R(Track).all.map { |a| a.is_good }.sort_by{|v| v ? 0 : 1}.should == [true, false]
  end
  
  it "should have correct value and type for full_price property" do
    R(Track).all.map { |a| a.full_price }.sort.should == [BigDecimal.new("13134.11"), BigDecimal.new("55454.33")]
  end
 
  it "should have correct value and type for last_played_at property" do
    R(Track).all.map { |a| a.last_played_at }.sort.should == [Time.local(1982, 5, 3, 13,3,7), Time.local(1984, 12, 14, 12,3,11)]
  end
  
  it "should be possible to create a new instance by setting properties" do
    begin
      track = Track.new
      track.track_id = 3
      track.track_title = "Born to raise hell"
      track.time = Time.time_at(0,3,25)
      track.date_added = Time.local(2003, 8, 31, 0, 0, 0)
      track.last_played_at = Time.local(2008, 8, 31, 21, 41, 30)
      track.file_data = "abc def"
      track.desc = "This track I really don't know anything about, in fact"
      track.some_fraction = 3.1415
      track.is_good = false
      track.full_price = BigDecimal.new("14.49")
      track.volume = 5
 
      R(Track).get(3).should be_nil
      
      R(track).save
 
      R(Track).get(3).should_not be_nil
    ensure
      reset_database!
    end
  end
 
  it "should be possible to create a new instance by giving properties to new" do
    begin
      track = R(Track).new(
                        :track_id => 3,
                        :track_title => "Born to raise hell",
                        :time => Time.time_at(0,3,25),
                        :date_added => Time.local(2003, 8, 31, 0, 0, 0),
                        :last_played_at => Time.local(2008, 8, 31, 21, 41, 30),
                        :file_data => "abc def",
                        :desc => "This track I really don't know anything about, in fact",
                        :some_fraction => 3.1415,
                        :is_good => false,
                        :full_price => BigDecimal.new("14.49"),
                        :volume => 5)
 
      R(Track).get(3).should be_nil
 
      R(track).save
 
      R(Track).get(3).should_not be_nil
    ensure
      reset_database!
    end
  end
 
  it "should be possible to create a new instance by using create" do
    begin
      R(Track).get(3).should be_nil
      track = R(Track).create(
                        :track_id => 3,
                        :track_title => "Born to raise hell",
                        :time => Time.time_at(0,3,25),
                        :date_added => Time.local(2003, 8, 31, 0, 0, 0),
                        :last_played_at => Time.local(2008, 8, 31, 21, 41, 30),
                        :file_data => "abc def",
                        :desc => "This track I really don't know anything about, in fact",
                        :some_fraction => 3.1415,
                        :is_good => false,
                        :full_price => BigDecimal.new("14.49"),
                        :volume => 5)
 
      R(Track).get(3).should_not be_nil
    ensure
      reset_database!
    end
  end
 
  def create_simple
    R(Track).create(
                 :track_id => 3,
                 :track_title => "Born to raise hell",
                 :time => Time.time_at(0,3,25),
                 :date_added => Time.local(2003, 8, 31, 0, 0, 0),
                 :last_played_at => Time.local(2008, 8, 31, 21, 41, 30),
                 :file_data => "abc def",
                 :desc => "This track I really don't know anything about, in fact",
                 :some_fraction => 3.1415,
                 :is_good => false,
                 :full_price => BigDecimal.new("14.49"),
                 :volume => 5)
    
    R(Track).get(3)
  end
  
  it "should have correct value and type for TRACK_ID property on newly created bean" do
    begin
      create_simple.track_id.should == 3
    ensure
      reset_database!
    end
  end
 
  it "should have correct value and type for track_title property on newly created bean" do
    begin
      create_simple.track_title.should == "Born to raise hell"
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for time property on newly created bean" do
    begin
      create_simple.time.should == Time.time_at(0,3,25)
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for date_added property on newly created bean" do
    begin
      create_simple.date_added.should == Time.local(2003, 8, 31, 0, 0, 0)
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for last_played_at property on newly created bean" do
    begin
      create_simple.last_played_at.should == Time.local(2008, 8, 31, 21, 41, 30)
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for file_data property on newly created bean" do
    begin
      create_simple.file_data.should == "abc def"
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for desc property on newly created bean" do
    begin
      create_simple.desc.should == "This track I really don't know anything about, in fact"
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for some_fraction property on newly created bean" do
    begin
      create_simple.some_fraction.should be_close(3.1415, 0.00001)
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for is_good property on newly created bean" do
    begin
      create_simple.is_good.should be_false
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for full_price property on newly created bean" do
    begin
      create_simple.full_price.should == BigDecimal.new("14.49")
    ensure
      reset_database!
    end
  end
  
  it "should have correct value and type for volume property on newly created bean" do
    begin
      create_simple.volume.should == 5
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update track_title property on existing bean" do
    begin
      v = R(Track).get(1)
      v.track_title = "new value here"
      R(v).save
      
      R(Track).get(1).track_title.should == "new value here"
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update time property on existing bean" do
    begin
      v = R(Track).get(1)
      v.time = Time.time_at(23,32,33)
      R(v).save
      
      R(Track).get(1).time.should == Time.time_at(23,32,33)
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update date_added property on existing bean" do
    begin
      v = R(Track).get(1)
      v.date_added = Time.local(2004,10,9,0,0,0)
      R(v).save
      
      R(Track).get(1).date_added.should == Time.local(2004,10,9,0,0,0)
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update last_played_at property on existing bean" do
    begin
      v = R(Track).get(1)
      v.last_played_at = Time.local(2005,8,8,10,24,12)
      R(v).save
      
      R(Track).get(1).last_played_at.should == Time.local(2005,8,8,10,24,12)
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update file_data property on existing bean" do
    begin
      v = R(Track).get(1)
      v.file_data = "Some data"
      R(v).save
      
      R(Track).get(1).file_data.should == "Some data"
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update desc property on existing bean" do
    begin
      v = R(Track).get(1)
      v.desc = "Some description"
      R(v).save
      
      R(Track).get(1).desc.should == "Some description"
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update some_fraction property on existing bean" do
    begin
      v = R(Track).get(1)
      v.some_fraction = 3.1416 #Anal test
      R(v).save
      
      R(Track).get(1).some_fraction.should be_close(3.1416, 0.00001)
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update is_good property on existing bean" do
    begin
      v = R(Track).get(1)
      v.is_good = false
      R(v).save
      
      R(Track).get(1).is_good.should be_false
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update full_price property on existing bean" do
    begin
      v = R(Track).get(1)
      v.full_price = BigDecimal.new("142.12")
      R(v).save
      
      R(Track).get(1).full_price.should == BigDecimal.new("142.12")
    ensure
      reset_database!
    end
  end
 
  it "should be possible to update volume property on existing bean" do
    begin
      v = R(Track).get(1)
      v.volume = 42
      R(v).save
      
      R(Track).get(1).volume.should == 42
    ensure
      reset_database!
    end
  end
  
  it "should be possible to delete existing bean" do
    begin
      R(R(Track).get(1)).destroy!
      R(Track).get(1).should be_nil
    ensure
      reset_database!
    end
  end
  
  it "should be possible to delete existing bean by id" do
    begin
      R(Track).destroy(2)
      R(Track).get(2).should be_nil
    ensure
      reset_database!
    end
  end
end