juno 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. data/.travis.yml +2 -4
  2. data/Gemfile +3 -1
  3. data/README.md +40 -8
  4. data/benchmarks/run.rb +17 -5
  5. data/lib/juno/adapters/activerecord.rb +23 -14
  6. data/lib/juno/adapters/cassandra.rb +11 -0
  7. data/lib/juno/adapters/couch.rb +9 -0
  8. data/lib/juno/adapters/datamapper.rb +10 -0
  9. data/lib/juno/adapters/dbm.rb +8 -0
  10. data/lib/juno/adapters/file.rb +2 -0
  11. data/lib/juno/adapters/fog.rb +9 -0
  12. data/lib/juno/adapters/gdbm.rb +8 -0
  13. data/lib/juno/adapters/localmemcache.rb +8 -0
  14. data/lib/juno/adapters/lruhash.rb +8 -0
  15. data/lib/juno/adapters/memcached_dalli.rb +9 -0
  16. data/lib/juno/adapters/memcached_native.rb +10 -0
  17. data/lib/juno/adapters/memory.rb +2 -0
  18. data/lib/juno/adapters/mongo.rb +11 -0
  19. data/lib/juno/adapters/null.rb +2 -0
  20. data/lib/juno/adapters/pstore.rb +9 -2
  21. data/lib/juno/adapters/redis.rb +5 -0
  22. data/lib/juno/adapters/riak.rb +9 -0
  23. data/lib/juno/adapters/sdbm.rb +8 -0
  24. data/lib/juno/adapters/sequel.rb +10 -0
  25. data/lib/juno/adapters/sqlite.rb +9 -0
  26. data/lib/juno/adapters/tokyocabinet.rb +16 -4
  27. data/lib/juno/adapters/yaml.rb +2 -0
  28. data/lib/juno/base.rb +1 -0
  29. data/lib/juno/builder.rb +2 -0
  30. data/lib/juno/cache.rb +2 -0
  31. data/lib/juno/expires.rb +1 -0
  32. data/lib/juno/lock.rb +37 -0
  33. data/lib/juno/proxy.rb +1 -0
  34. data/lib/juno/stack.rb +2 -0
  35. data/lib/juno/transformer.rb +16 -4
  36. data/lib/juno/version.rb +3 -1
  37. data/lib/juno.rb +33 -2
  38. data/spec/adapter_activerecord_spec.rb +20 -34
  39. data/spec/adapter_cassandra_spec.rb +9 -23
  40. data/spec/adapter_couch_spec.rb +9 -23
  41. data/spec/adapter_datamapper_spec.rb +36 -50
  42. data/spec/adapter_dbm_spec.rb +9 -23
  43. data/spec/adapter_file_spec.rb +9 -23
  44. data/spec/adapter_fog_spec.rb +12 -29
  45. data/spec/adapter_gdbm_spec.rb +9 -23
  46. data/spec/adapter_localmemcache_spec.rb +9 -23
  47. data/spec/adapter_lruhash_spec.rb +24 -38
  48. data/spec/adapter_memcached_dalli_spec.rb +10 -24
  49. data/spec/adapter_memcached_native_spec.rb +10 -24
  50. data/spec/adapter_memcached_spec.rb +10 -24
  51. data/spec/adapter_memory_spec.rb +24 -38
  52. data/spec/adapter_mongo_spec.rb +9 -23
  53. data/spec/adapter_pstore_spec.rb +12 -26
  54. data/spec/adapter_redis_spec.rb +10 -24
  55. data/spec/adapter_riak_spec.rb +9 -23
  56. data/spec/adapter_sdbm_spec.rb +9 -23
  57. data/spec/adapter_sequel_spec.rb +9 -23
  58. data/spec/adapter_sqlite_spec.rb +9 -23
  59. data/spec/adapter_tokyocabinet_bdb_spec.rb +13 -0
  60. data/spec/adapter_tokyocabinet_hdb_spec.rb +13 -0
  61. data/spec/adapter_yaml_spec.rb +12 -26
  62. data/spec/cache_file_memory_spec.rb +22 -43
  63. data/spec/cache_memory_null_spec.rb +13 -34
  64. data/spec/expires_file_spec.rb +56 -76
  65. data/spec/expires_memory_spec.rb +35 -54
  66. data/spec/generate.rb +147 -160
  67. data/spec/helper.rb +39 -0
  68. data/spec/junospecs.rb +612 -610
  69. data/spec/lock_spec.rb +31 -0
  70. data/spec/null_adapter_spec.rb +15 -29
  71. data/spec/proxy_expires_memory_spec.rb +37 -58
  72. data/spec/proxy_redis_spec.rb +13 -33
  73. data/spec/simple_activerecord_spec.rb +34 -48
  74. data/spec/simple_activerecord_with_expires_spec.rb +35 -49
  75. data/spec/simple_cassandra_spec.rb +35 -49
  76. data/spec/simple_couch_spec.rb +34 -48
  77. data/spec/simple_couch_with_expires_spec.rb +35 -49
  78. data/spec/simple_datamapper_spec.rb +34 -48
  79. data/spec/simple_datamapper_with_expires_spec.rb +35 -49
  80. data/spec/simple_datamapper_with_repository_spec.rb +34 -48
  81. data/spec/simple_dbm_spec.rb +34 -48
  82. data/spec/simple_dbm_with_expires_spec.rb +35 -49
  83. data/spec/simple_file_spec.rb +34 -48
  84. data/spec/simple_file_with_expires_spec.rb +35 -49
  85. data/spec/simple_fog_spec.rb +37 -54
  86. data/spec/simple_fog_with_expires_spec.rb +39 -57
  87. data/spec/simple_gdbm_spec.rb +34 -48
  88. data/spec/simple_gdbm_with_expires_spec.rb +35 -49
  89. data/spec/simple_hashfile_spec.rb +34 -48
  90. data/spec/simple_hashfile_with_expires_spec.rb +35 -49
  91. data/spec/simple_localmemcache_spec.rb +34 -48
  92. data/spec/simple_localmemcache_with_expires_spec.rb +35 -49
  93. data/spec/simple_lruhash_spec.rb +34 -48
  94. data/spec/simple_lruhash_with_expires_spec.rb +35 -49
  95. data/spec/simple_memcached_dalli_spec.rb +35 -49
  96. data/spec/simple_memcached_native_spec.rb +35 -49
  97. data/spec/simple_memcached_spec.rb +35 -49
  98. data/spec/simple_memory_spec.rb +34 -48
  99. data/spec/simple_memory_with_expires_spec.rb +35 -49
  100. data/spec/simple_mongo_spec.rb +34 -48
  101. data/spec/simple_mongo_with_expires_spec.rb +35 -49
  102. data/spec/simple_null_spec.rb +25 -39
  103. data/spec/simple_pstore_spec.rb +34 -48
  104. data/spec/simple_pstore_with_expires_spec.rb +35 -49
  105. data/spec/simple_redis_spec.rb +35 -49
  106. data/spec/simple_riak_spec.rb +34 -48
  107. data/spec/simple_riak_with_expires_spec.rb +35 -49
  108. data/spec/simple_sdbm_spec.rb +34 -48
  109. data/spec/simple_sdbm_with_expires_spec.rb +35 -49
  110. data/spec/simple_sequel_spec.rb +34 -48
  111. data/spec/simple_sequel_with_expires_spec.rb +35 -49
  112. data/spec/simple_sqlite_spec.rb +34 -48
  113. data/spec/simple_sqlite_with_expires_spec.rb +35 -49
  114. data/spec/simple_tokyocabinet_spec.rb +34 -48
  115. data/spec/simple_tokyocabinet_with_expires_spec.rb +35 -49
  116. data/spec/simple_yaml_spec.rb +34 -48
  117. data/spec/simple_yaml_with_expires_spec.rb +35 -49
  118. data/spec/stack_file_memory_spec.rb +15 -38
  119. data/spec/stack_memory_file_spec.rb +14 -37
  120. data/spec/transformer_bson_spec.rb +20 -39
  121. data/spec/transformer_compress_spec.rb +17 -36
  122. data/spec/transformer_json_spec.rb +20 -39
  123. data/spec/transformer_marshal_base64_spec.rb +36 -55
  124. data/spec/transformer_marshal_escape_spec.rb +36 -55
  125. data/spec/transformer_marshal_md5_spec.rb +36 -55
  126. data/spec/transformer_marshal_md5_spread_spec.rb +36 -55
  127. data/spec/transformer_msgpack_spec.rb +20 -39
  128. data/spec/transformer_ox_spec.rb +40 -0
  129. data/spec/transformer_yaml_spec.rb +35 -54
  130. metadata +11 -6
  131. data/spec/adapter_tokyocabinet_spec.rb +0 -27
  132. data/spec/simpl_memory_with_expires_spec.rb +0 -53
data/spec/lock_spec.rb ADDED
@@ -0,0 +1,31 @@
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
+ require 'helper'
3
+
4
+ describe_juno "lock" do
5
+ def new_store
6
+ Juno.build do
7
+ use :Lock
8
+ adapter :Memory
9
+ end
10
+ end
11
+
12
+ include_context 'setup_store'
13
+ it_should_behave_like 'null_objectkey_objectvalue'
14
+ it_should_behave_like 'null_objectkey_stringvalue'
15
+ it_should_behave_like 'null_objectkey_hashvalue'
16
+ it_should_behave_like 'null_stringkey_objectvalue'
17
+ it_should_behave_like 'null_stringkey_stringvalue'
18
+ it_should_behave_like 'null_stringkey_hashvalue'
19
+ it_should_behave_like 'null_hashkey_objectvalue'
20
+ it_should_behave_like 'null_hashkey_stringvalue'
21
+ it_should_behave_like 'null_hashkey_hashvalue'
22
+ it_should_behave_like 'store_objectkey_objectvalue'
23
+ it_should_behave_like 'store_objectkey_stringvalue'
24
+ it_should_behave_like 'store_objectkey_hashvalue'
25
+ it_should_behave_like 'store_stringkey_objectvalue'
26
+ it_should_behave_like 'store_stringkey_stringvalue'
27
+ it_should_behave_like 'store_stringkey_hashvalue'
28
+ it_should_behave_like 'store_hashkey_objectvalue'
29
+ it_should_behave_like 'store_hashkey_stringvalue'
30
+ it_should_behave_like 'store_hashkey_hashvalue'
31
+ end
@@ -1,33 +1,19 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
- Juno::Adapters::Null.new.close
6
-
7
- describe "null_adapter" do
8
- before do
9
- @store = Juno::Adapters::Null.new
10
- @store.clear
11
- end
12
-
13
- after do
14
- @store.close.should == nil if @store
15
- end
16
-
17
- it_should_behave_like 'null_objectkey_objectvalue'
18
- it_should_behave_like 'null_objectkey_stringvalue'
19
- it_should_behave_like 'null_objectkey_hashvalue'
20
- it_should_behave_like 'null_stringkey_objectvalue'
21
- it_should_behave_like 'null_stringkey_stringvalue'
22
- it_should_behave_like 'null_stringkey_hashvalue'
23
- it_should_behave_like 'null_hashkey_objectvalue'
24
- it_should_behave_like 'null_hashkey_stringvalue'
25
- it_should_behave_like 'null_hashkey_hashvalue'
26
-
4
+ describe_juno "null_adapter" do
5
+ def new_store
6
+ Juno::Adapters::Null.new
27
7
  end
28
- rescue LoadError => ex
29
- puts "Test null_adapter not executed: #{ex.message}"
30
- rescue Exception => ex
31
- puts "Test null_adapter not executed: #{ex.message}"
32
- #puts "#{ex.backtrace.join("\n")}"
8
+
9
+ include_context 'setup_store'
10
+ it_should_behave_like 'null_objectkey_objectvalue'
11
+ it_should_behave_like 'null_objectkey_stringvalue'
12
+ it_should_behave_like 'null_objectkey_hashvalue'
13
+ it_should_behave_like 'null_stringkey_objectvalue'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'null_stringkey_hashvalue'
16
+ it_should_behave_like 'null_hashkey_objectvalue'
17
+ it_should_behave_like 'null_hashkey_stringvalue'
18
+ it_should_behave_like 'null_hashkey_hashvalue'
33
19
  end
@@ -1,63 +1,42 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
-
6
- Juno.build do
7
- use :Proxy
8
- use :Expires
9
- use :Proxy
10
- adapter :Memory
11
- end.close
12
-
13
- describe "proxy_expires_memory" do
14
- before do
15
- @store =
16
- Juno.build do
17
- use :Proxy
18
- use :Expires
19
- use :Proxy
20
- adapter :Memory
21
- end
22
- @store.clear
23
- end
24
-
25
- after do
26
- @store.close.should == nil if @store
4
+ describe_juno "proxy_expires_memory" do
5
+ def new_store
6
+ Juno.build do
7
+ use :Proxy
8
+ use :Expires
9
+ use :Proxy
10
+ adapter :Memory
27
11
  end
28
-
29
- it_should_behave_like 'null_objectkey_objectvalue'
30
- it_should_behave_like 'null_objectkey_stringvalue'
31
- it_should_behave_like 'null_objectkey_hashvalue'
32
- it_should_behave_like 'null_stringkey_objectvalue'
33
- it_should_behave_like 'null_stringkey_stringvalue'
34
- it_should_behave_like 'null_stringkey_hashvalue'
35
- it_should_behave_like 'null_hashkey_objectvalue'
36
- it_should_behave_like 'null_hashkey_stringvalue'
37
- it_should_behave_like 'null_hashkey_hashvalue'
38
- it_should_behave_like 'store_objectkey_objectvalue'
39
- it_should_behave_like 'store_objectkey_stringvalue'
40
- it_should_behave_like 'store_objectkey_hashvalue'
41
- it_should_behave_like 'store_stringkey_objectvalue'
42
- it_should_behave_like 'store_stringkey_stringvalue'
43
- it_should_behave_like 'store_stringkey_hashvalue'
44
- it_should_behave_like 'store_hashkey_objectvalue'
45
- it_should_behave_like 'store_hashkey_stringvalue'
46
- it_should_behave_like 'store_hashkey_hashvalue'
47
- it_should_behave_like 'expires_objectkey_objectvalue'
48
- it_should_behave_like 'expires_objectkey_stringvalue'
49
- it_should_behave_like 'expires_objectkey_hashvalue'
50
- it_should_behave_like 'expires_stringkey_objectvalue'
51
- it_should_behave_like 'expires_stringkey_stringvalue'
52
- it_should_behave_like 'expires_stringkey_hashvalue'
53
- it_should_behave_like 'expires_hashkey_objectvalue'
54
- it_should_behave_like 'expires_hashkey_stringvalue'
55
- it_should_behave_like 'expires_hashkey_hashvalue'
56
-
57
12
  end
58
- rescue LoadError => ex
59
- puts "Test proxy_expires_memory not executed: #{ex.message}"
60
- rescue Exception => ex
61
- puts "Test proxy_expires_memory not executed: #{ex.message}"
62
- #puts "#{ex.backtrace.join("\n")}"
13
+
14
+ include_context 'setup_store'
15
+ it_should_behave_like 'null_objectkey_objectvalue'
16
+ it_should_behave_like 'null_objectkey_stringvalue'
17
+ it_should_behave_like 'null_objectkey_hashvalue'
18
+ it_should_behave_like 'null_stringkey_objectvalue'
19
+ it_should_behave_like 'null_stringkey_stringvalue'
20
+ it_should_behave_like 'null_stringkey_hashvalue'
21
+ it_should_behave_like 'null_hashkey_objectvalue'
22
+ it_should_behave_like 'null_hashkey_stringvalue'
23
+ it_should_behave_like 'null_hashkey_hashvalue'
24
+ it_should_behave_like 'store_objectkey_objectvalue'
25
+ it_should_behave_like 'store_objectkey_stringvalue'
26
+ it_should_behave_like 'store_objectkey_hashvalue'
27
+ it_should_behave_like 'store_stringkey_objectvalue'
28
+ it_should_behave_like 'store_stringkey_stringvalue'
29
+ it_should_behave_like 'store_stringkey_hashvalue'
30
+ it_should_behave_like 'store_hashkey_objectvalue'
31
+ it_should_behave_like 'store_hashkey_stringvalue'
32
+ it_should_behave_like 'store_hashkey_hashvalue'
33
+ it_should_behave_like 'expires_objectkey_objectvalue'
34
+ it_should_behave_like 'expires_objectkey_stringvalue'
35
+ it_should_behave_like 'expires_objectkey_hashvalue'
36
+ it_should_behave_like 'expires_stringkey_objectvalue'
37
+ it_should_behave_like 'expires_stringkey_stringvalue'
38
+ it_should_behave_like 'expires_stringkey_hashvalue'
39
+ it_should_behave_like 'expires_hashkey_objectvalue'
40
+ it_should_behave_like 'expires_hashkey_stringvalue'
41
+ it_should_behave_like 'expires_hashkey_hashvalue'
63
42
  end
@@ -1,38 +1,18 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
-
6
- Juno.build do
7
- use :Proxy
8
- use :Proxy
9
- adapter :Redis
10
- end.close
11
-
12
- describe "proxy_redis" do
13
- before do
14
- @store =
15
- Juno.build do
16
- use :Proxy
17
- use :Proxy
18
- adapter :Redis
19
- end
20
- @store.clear
21
- end
22
-
23
- after do
24
- @store.close.should == nil if @store
4
+ describe_juno "proxy_redis" do
5
+ def new_store
6
+ Juno.build do
7
+ use :Proxy
8
+ use :Proxy
9
+ adapter :Redis
25
10
  end
26
-
27
- it_should_behave_like 'null_stringkey_stringvalue'
28
- it_should_behave_like 'store_stringkey_stringvalue'
29
- it_should_behave_like 'returndifferent_stringkey_stringvalue'
30
- it_should_behave_like 'expires_stringkey_stringvalue'
31
-
32
11
  end
33
- rescue LoadError => ex
34
- puts "Test proxy_redis not executed: #{ex.message}"
35
- rescue Exception => ex
36
- puts "Test proxy_redis not executed: #{ex.message}"
37
- #puts "#{ex.backtrace.join("\n")}"
12
+
13
+ include_context 'setup_store'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'store_stringkey_stringvalue'
16
+ it_should_behave_like 'returndifferent_stringkey_stringvalue'
17
+ it_should_behave_like 'expires_stringkey_stringvalue'
38
18
  end
@@ -1,52 +1,38 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
- Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord') }).close
6
-
7
- describe "simple_activerecord" do
8
- before do
9
- @store = Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord') })
10
- @store.clear
11
- end
12
-
13
- after do
14
- @store.close.should == nil if @store
15
- end
16
-
17
- it_should_behave_like 'null_objectkey_objectvalue'
18
- it_should_behave_like 'null_objectkey_stringvalue'
19
- it_should_behave_like 'null_objectkey_hashvalue'
20
- it_should_behave_like 'null_stringkey_objectvalue'
21
- it_should_behave_like 'null_stringkey_stringvalue'
22
- it_should_behave_like 'null_stringkey_hashvalue'
23
- it_should_behave_like 'null_hashkey_objectvalue'
24
- it_should_behave_like 'null_hashkey_stringvalue'
25
- it_should_behave_like 'null_hashkey_hashvalue'
26
- it_should_behave_like 'store_objectkey_objectvalue'
27
- it_should_behave_like 'store_objectkey_stringvalue'
28
- it_should_behave_like 'store_objectkey_hashvalue'
29
- it_should_behave_like 'store_stringkey_objectvalue'
30
- it_should_behave_like 'store_stringkey_stringvalue'
31
- it_should_behave_like 'store_stringkey_hashvalue'
32
- it_should_behave_like 'store_hashkey_objectvalue'
33
- it_should_behave_like 'store_hashkey_stringvalue'
34
- it_should_behave_like 'store_hashkey_hashvalue'
35
- it_should_behave_like 'returndifferent_objectkey_objectvalue'
36
- it_should_behave_like 'returndifferent_objectkey_stringvalue'
37
- it_should_behave_like 'returndifferent_objectkey_hashvalue'
38
- it_should_behave_like 'returndifferent_stringkey_objectvalue'
39
- it_should_behave_like 'returndifferent_stringkey_stringvalue'
40
- it_should_behave_like 'returndifferent_stringkey_hashvalue'
41
- it_should_behave_like 'returndifferent_hashkey_objectvalue'
42
- it_should_behave_like 'returndifferent_hashkey_stringvalue'
43
- it_should_behave_like 'returndifferent_hashkey_hashvalue'
44
- it_should_behave_like 'marshallable_key'
45
-
4
+ describe_juno "simple_activerecord" do
5
+ def new_store
6
+ Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord') })
46
7
  end
47
- rescue LoadError => ex
48
- puts "Test simple_activerecord not executed: #{ex.message}"
49
- rescue Exception => ex
50
- puts "Test simple_activerecord not executed: #{ex.message}"
51
- #puts "#{ex.backtrace.join("\n")}"
8
+
9
+ include_context 'setup_store'
10
+ it_should_behave_like 'null_objectkey_objectvalue'
11
+ it_should_behave_like 'null_objectkey_stringvalue'
12
+ it_should_behave_like 'null_objectkey_hashvalue'
13
+ it_should_behave_like 'null_stringkey_objectvalue'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'null_stringkey_hashvalue'
16
+ it_should_behave_like 'null_hashkey_objectvalue'
17
+ it_should_behave_like 'null_hashkey_stringvalue'
18
+ it_should_behave_like 'null_hashkey_hashvalue'
19
+ it_should_behave_like 'store_objectkey_objectvalue'
20
+ it_should_behave_like 'store_objectkey_stringvalue'
21
+ it_should_behave_like 'store_objectkey_hashvalue'
22
+ it_should_behave_like 'store_stringkey_objectvalue'
23
+ it_should_behave_like 'store_stringkey_stringvalue'
24
+ it_should_behave_like 'store_stringkey_hashvalue'
25
+ it_should_behave_like 'store_hashkey_objectvalue'
26
+ it_should_behave_like 'store_hashkey_stringvalue'
27
+ it_should_behave_like 'store_hashkey_hashvalue'
28
+ it_should_behave_like 'returndifferent_objectkey_objectvalue'
29
+ it_should_behave_like 'returndifferent_objectkey_stringvalue'
30
+ it_should_behave_like 'returndifferent_objectkey_hashvalue'
31
+ it_should_behave_like 'returndifferent_stringkey_objectvalue'
32
+ it_should_behave_like 'returndifferent_stringkey_stringvalue'
33
+ it_should_behave_like 'returndifferent_stringkey_hashvalue'
34
+ it_should_behave_like 'returndifferent_hashkey_objectvalue'
35
+ it_should_behave_like 'returndifferent_hashkey_stringvalue'
36
+ it_should_behave_like 'returndifferent_hashkey_hashvalue'
37
+ it_should_behave_like 'marshallable_key'
52
38
  end
@@ -1,53 +1,39 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
- Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord_with_expires') }, :expires => true).close
6
-
7
- describe "simple_activerecord_with_expires" do
8
- before do
9
- @store = Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord_with_expires') }, :expires => true)
10
- @store.clear
11
- end
12
-
13
- after do
14
- @store.close.should == nil if @store
15
- end
16
-
17
- it_should_behave_like 'null_objectkey_objectvalue'
18
- it_should_behave_like 'null_objectkey_stringvalue'
19
- it_should_behave_like 'null_objectkey_hashvalue'
20
- it_should_behave_like 'null_stringkey_objectvalue'
21
- it_should_behave_like 'null_stringkey_stringvalue'
22
- it_should_behave_like 'null_stringkey_hashvalue'
23
- it_should_behave_like 'null_hashkey_objectvalue'
24
- it_should_behave_like 'null_hashkey_stringvalue'
25
- it_should_behave_like 'null_hashkey_hashvalue'
26
- it_should_behave_like 'store_objectkey_objectvalue'
27
- it_should_behave_like 'store_objectkey_stringvalue'
28
- it_should_behave_like 'store_objectkey_hashvalue'
29
- it_should_behave_like 'store_stringkey_objectvalue'
30
- it_should_behave_like 'store_stringkey_stringvalue'
31
- it_should_behave_like 'store_stringkey_hashvalue'
32
- it_should_behave_like 'store_hashkey_objectvalue'
33
- it_should_behave_like 'store_hashkey_stringvalue'
34
- it_should_behave_like 'store_hashkey_hashvalue'
35
- it_should_behave_like 'returndifferent_objectkey_objectvalue'
36
- it_should_behave_like 'returndifferent_objectkey_stringvalue'
37
- it_should_behave_like 'returndifferent_objectkey_hashvalue'
38
- it_should_behave_like 'returndifferent_stringkey_objectvalue'
39
- it_should_behave_like 'returndifferent_stringkey_stringvalue'
40
- it_should_behave_like 'returndifferent_stringkey_hashvalue'
41
- it_should_behave_like 'returndifferent_hashkey_objectvalue'
42
- it_should_behave_like 'returndifferent_hashkey_stringvalue'
43
- it_should_behave_like 'returndifferent_hashkey_hashvalue'
44
- it_should_behave_like 'marshallable_key'
45
- it_should_behave_like 'expires_stringkey_stringvalue'
46
-
4
+ describe_juno "simple_activerecord_with_expires" do
5
+ def new_store
6
+ Juno.new(:ActiveRecord, :connection => { :adapter => (defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'), :database => File.join(make_tempdir, 'simple_activerecord_with_expires') }, :expires => true)
47
7
  end
48
- rescue LoadError => ex
49
- puts "Test simple_activerecord_with_expires not executed: #{ex.message}"
50
- rescue Exception => ex
51
- puts "Test simple_activerecord_with_expires not executed: #{ex.message}"
52
- #puts "#{ex.backtrace.join("\n")}"
8
+
9
+ include_context 'setup_store'
10
+ it_should_behave_like 'null_objectkey_objectvalue'
11
+ it_should_behave_like 'null_objectkey_stringvalue'
12
+ it_should_behave_like 'null_objectkey_hashvalue'
13
+ it_should_behave_like 'null_stringkey_objectvalue'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'null_stringkey_hashvalue'
16
+ it_should_behave_like 'null_hashkey_objectvalue'
17
+ it_should_behave_like 'null_hashkey_stringvalue'
18
+ it_should_behave_like 'null_hashkey_hashvalue'
19
+ it_should_behave_like 'store_objectkey_objectvalue'
20
+ it_should_behave_like 'store_objectkey_stringvalue'
21
+ it_should_behave_like 'store_objectkey_hashvalue'
22
+ it_should_behave_like 'store_stringkey_objectvalue'
23
+ it_should_behave_like 'store_stringkey_stringvalue'
24
+ it_should_behave_like 'store_stringkey_hashvalue'
25
+ it_should_behave_like 'store_hashkey_objectvalue'
26
+ it_should_behave_like 'store_hashkey_stringvalue'
27
+ it_should_behave_like 'store_hashkey_hashvalue'
28
+ it_should_behave_like 'returndifferent_objectkey_objectvalue'
29
+ it_should_behave_like 'returndifferent_objectkey_stringvalue'
30
+ it_should_behave_like 'returndifferent_objectkey_hashvalue'
31
+ it_should_behave_like 'returndifferent_stringkey_objectvalue'
32
+ it_should_behave_like 'returndifferent_stringkey_stringvalue'
33
+ it_should_behave_like 'returndifferent_stringkey_hashvalue'
34
+ it_should_behave_like 'returndifferent_hashkey_objectvalue'
35
+ it_should_behave_like 'returndifferent_hashkey_stringvalue'
36
+ it_should_behave_like 'returndifferent_hashkey_hashvalue'
37
+ it_should_behave_like 'marshallable_key'
38
+ it_should_behave_like 'expires_stringkey_stringvalue'
53
39
  end
@@ -1,53 +1,39 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
- Juno.new(:Cassandra).close
6
-
7
- describe "simple_cassandra" do
8
- before do
9
- @store = Juno.new(:Cassandra)
10
- @store.clear
11
- end
12
-
13
- after do
14
- @store.close.should == nil if @store
15
- end
16
-
17
- it_should_behave_like 'null_objectkey_objectvalue'
18
- it_should_behave_like 'null_objectkey_stringvalue'
19
- it_should_behave_like 'null_objectkey_hashvalue'
20
- it_should_behave_like 'null_stringkey_objectvalue'
21
- it_should_behave_like 'null_stringkey_stringvalue'
22
- it_should_behave_like 'null_stringkey_hashvalue'
23
- it_should_behave_like 'null_hashkey_objectvalue'
24
- it_should_behave_like 'null_hashkey_stringvalue'
25
- it_should_behave_like 'null_hashkey_hashvalue'
26
- it_should_behave_like 'store_objectkey_objectvalue'
27
- it_should_behave_like 'store_objectkey_stringvalue'
28
- it_should_behave_like 'store_objectkey_hashvalue'
29
- it_should_behave_like 'store_stringkey_objectvalue'
30
- it_should_behave_like 'store_stringkey_stringvalue'
31
- it_should_behave_like 'store_stringkey_hashvalue'
32
- it_should_behave_like 'store_hashkey_objectvalue'
33
- it_should_behave_like 'store_hashkey_stringvalue'
34
- it_should_behave_like 'store_hashkey_hashvalue'
35
- it_should_behave_like 'returndifferent_objectkey_objectvalue'
36
- it_should_behave_like 'returndifferent_objectkey_stringvalue'
37
- it_should_behave_like 'returndifferent_objectkey_hashvalue'
38
- it_should_behave_like 'returndifferent_stringkey_objectvalue'
39
- it_should_behave_like 'returndifferent_stringkey_stringvalue'
40
- it_should_behave_like 'returndifferent_stringkey_hashvalue'
41
- it_should_behave_like 'returndifferent_hashkey_objectvalue'
42
- it_should_behave_like 'returndifferent_hashkey_stringvalue'
43
- it_should_behave_like 'returndifferent_hashkey_hashvalue'
44
- it_should_behave_like 'marshallable_key'
45
- it_should_behave_like 'expires_stringkey_stringvalue'
46
-
4
+ describe_juno "simple_cassandra" do
5
+ def new_store
6
+ Juno.new(:Cassandra)
47
7
  end
48
- rescue LoadError => ex
49
- puts "Test simple_cassandra not executed: #{ex.message}"
50
- rescue Exception => ex
51
- puts "Test simple_cassandra not executed: #{ex.message}"
52
- #puts "#{ex.backtrace.join("\n")}"
8
+
9
+ include_context 'setup_store'
10
+ it_should_behave_like 'null_objectkey_objectvalue'
11
+ it_should_behave_like 'null_objectkey_stringvalue'
12
+ it_should_behave_like 'null_objectkey_hashvalue'
13
+ it_should_behave_like 'null_stringkey_objectvalue'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'null_stringkey_hashvalue'
16
+ it_should_behave_like 'null_hashkey_objectvalue'
17
+ it_should_behave_like 'null_hashkey_stringvalue'
18
+ it_should_behave_like 'null_hashkey_hashvalue'
19
+ it_should_behave_like 'store_objectkey_objectvalue'
20
+ it_should_behave_like 'store_objectkey_stringvalue'
21
+ it_should_behave_like 'store_objectkey_hashvalue'
22
+ it_should_behave_like 'store_stringkey_objectvalue'
23
+ it_should_behave_like 'store_stringkey_stringvalue'
24
+ it_should_behave_like 'store_stringkey_hashvalue'
25
+ it_should_behave_like 'store_hashkey_objectvalue'
26
+ it_should_behave_like 'store_hashkey_stringvalue'
27
+ it_should_behave_like 'store_hashkey_hashvalue'
28
+ it_should_behave_like 'returndifferent_objectkey_objectvalue'
29
+ it_should_behave_like 'returndifferent_objectkey_stringvalue'
30
+ it_should_behave_like 'returndifferent_objectkey_hashvalue'
31
+ it_should_behave_like 'returndifferent_stringkey_objectvalue'
32
+ it_should_behave_like 'returndifferent_stringkey_stringvalue'
33
+ it_should_behave_like 'returndifferent_stringkey_hashvalue'
34
+ it_should_behave_like 'returndifferent_hashkey_objectvalue'
35
+ it_should_behave_like 'returndifferent_hashkey_stringvalue'
36
+ it_should_behave_like 'returndifferent_hashkey_hashvalue'
37
+ it_should_behave_like 'marshallable_key'
38
+ it_should_behave_like 'expires_stringkey_stringvalue'
53
39
  end
@@ -1,52 +1,38 @@
1
- # Generated file
1
+ # Generated by generate.rb at 2012-12-02 18:03:24 +0100, heads/master-0-g9a90bb4
2
2
  require 'helper'
3
3
 
4
- begin
5
- Juno.new(:Couch, :db => 'simple_couch').close
6
-
7
- describe "simple_couch" do
8
- before do
9
- @store = Juno.new(:Couch, :db => 'simple_couch')
10
- @store.clear
11
- end
12
-
13
- after do
14
- @store.close.should == nil if @store
15
- end
16
-
17
- it_should_behave_like 'null_objectkey_objectvalue'
18
- it_should_behave_like 'null_objectkey_stringvalue'
19
- it_should_behave_like 'null_objectkey_hashvalue'
20
- it_should_behave_like 'null_stringkey_objectvalue'
21
- it_should_behave_like 'null_stringkey_stringvalue'
22
- it_should_behave_like 'null_stringkey_hashvalue'
23
- it_should_behave_like 'null_hashkey_objectvalue'
24
- it_should_behave_like 'null_hashkey_stringvalue'
25
- it_should_behave_like 'null_hashkey_hashvalue'
26
- it_should_behave_like 'store_objectkey_objectvalue'
27
- it_should_behave_like 'store_objectkey_stringvalue'
28
- it_should_behave_like 'store_objectkey_hashvalue'
29
- it_should_behave_like 'store_stringkey_objectvalue'
30
- it_should_behave_like 'store_stringkey_stringvalue'
31
- it_should_behave_like 'store_stringkey_hashvalue'
32
- it_should_behave_like 'store_hashkey_objectvalue'
33
- it_should_behave_like 'store_hashkey_stringvalue'
34
- it_should_behave_like 'store_hashkey_hashvalue'
35
- it_should_behave_like 'returndifferent_objectkey_objectvalue'
36
- it_should_behave_like 'returndifferent_objectkey_stringvalue'
37
- it_should_behave_like 'returndifferent_objectkey_hashvalue'
38
- it_should_behave_like 'returndifferent_stringkey_objectvalue'
39
- it_should_behave_like 'returndifferent_stringkey_stringvalue'
40
- it_should_behave_like 'returndifferent_stringkey_hashvalue'
41
- it_should_behave_like 'returndifferent_hashkey_objectvalue'
42
- it_should_behave_like 'returndifferent_hashkey_stringvalue'
43
- it_should_behave_like 'returndifferent_hashkey_hashvalue'
44
- it_should_behave_like 'marshallable_key'
45
-
4
+ describe_juno "simple_couch" do
5
+ def new_store
6
+ Juno.new(:Couch, :db => 'simple_couch')
46
7
  end
47
- rescue LoadError => ex
48
- puts "Test simple_couch not executed: #{ex.message}"
49
- rescue Exception => ex
50
- puts "Test simple_couch not executed: #{ex.message}"
51
- #puts "#{ex.backtrace.join("\n")}"
8
+
9
+ include_context 'setup_store'
10
+ it_should_behave_like 'null_objectkey_objectvalue'
11
+ it_should_behave_like 'null_objectkey_stringvalue'
12
+ it_should_behave_like 'null_objectkey_hashvalue'
13
+ it_should_behave_like 'null_stringkey_objectvalue'
14
+ it_should_behave_like 'null_stringkey_stringvalue'
15
+ it_should_behave_like 'null_stringkey_hashvalue'
16
+ it_should_behave_like 'null_hashkey_objectvalue'
17
+ it_should_behave_like 'null_hashkey_stringvalue'
18
+ it_should_behave_like 'null_hashkey_hashvalue'
19
+ it_should_behave_like 'store_objectkey_objectvalue'
20
+ it_should_behave_like 'store_objectkey_stringvalue'
21
+ it_should_behave_like 'store_objectkey_hashvalue'
22
+ it_should_behave_like 'store_stringkey_objectvalue'
23
+ it_should_behave_like 'store_stringkey_stringvalue'
24
+ it_should_behave_like 'store_stringkey_hashvalue'
25
+ it_should_behave_like 'store_hashkey_objectvalue'
26
+ it_should_behave_like 'store_hashkey_stringvalue'
27
+ it_should_behave_like 'store_hashkey_hashvalue'
28
+ it_should_behave_like 'returndifferent_objectkey_objectvalue'
29
+ it_should_behave_like 'returndifferent_objectkey_stringvalue'
30
+ it_should_behave_like 'returndifferent_objectkey_hashvalue'
31
+ it_should_behave_like 'returndifferent_stringkey_objectvalue'
32
+ it_should_behave_like 'returndifferent_stringkey_stringvalue'
33
+ it_should_behave_like 'returndifferent_stringkey_hashvalue'
34
+ it_should_behave_like 'returndifferent_hashkey_objectvalue'
35
+ it_should_behave_like 'returndifferent_hashkey_stringvalue'
36
+ it_should_behave_like 'returndifferent_hashkey_hashvalue'
37
+ it_should_behave_like 'marshallable_key'
52
38
  end