lolita 3.2.0.rc.17 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +22 -17
  3. data/Rakefile +3 -0
  4. data/app/assets/javascripts/lolita/list.js +2 -2
  5. data/app/assets/javascripts/lolita/main.js +2 -2
  6. data/app/assets/javascripts/lolita/tab.js +7 -7
  7. data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
  8. data/app/assets/stylesheets/lolita/PIE.htc +81 -81
  9. data/app/assets/stylesheets/lolita/application.css +6 -6
  10. data/app/assets/stylesheets/lolita/default.css.erb +169 -169
  11. data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
  12. data/app/assets/stylesheets/lolita/style.css.erb +4 -1
  13. data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
  14. data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
  15. data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
  16. data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
  17. data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
  18. data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
  19. data/app/views/components/lolita/configuration/filter/_display.html.haml +2 -2
  20. data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
  21. data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
  22. data/app/views/kaminari/lolita/_gap.html.erb +8 -8
  23. data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
  24. data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
  25. data/app/views/kaminari/lolita/_page.html.erb +12 -12
  26. data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
  27. data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
  28. data/app/views/lolita/info/index.html.erb +232 -232
  29. data/app/views/lolita/rest/index.html.haml +1 -1
  30. data/config/routes.rb +6 -6
  31. data/lib/generators/lolita/install_generator.rb +2 -4
  32. data/lib/generators/lolita/uninstall_generator.rb +3 -8
  33. data/lib/generators/templates/lolita.rb +13 -16
  34. data/lib/lolita.rb +4 -5
  35. data/lib/lolita/adapter/active_record.rb +4 -4
  36. data/lib/lolita/adapter/common_helper.rb +45 -71
  37. data/lib/lolita/adapter/field_helper.rb +18 -18
  38. data/lib/lolita/adapter/mongoid.rb +8 -8
  39. data/lib/lolita/configuration/field/big_decimal.rb +12 -12
  40. data/lib/lolita/configuration/field/boolean.rb +12 -12
  41. data/lib/lolita/configuration/field/date.rb +12 -12
  42. data/lib/lolita/configuration/field/hidden.rb +12 -12
  43. data/lib/lolita/configuration/field/integer.rb +11 -11
  44. data/lib/lolita/configuration/field/string.rb +16 -16
  45. data/lib/lolita/configuration/field/time.rb +13 -13
  46. data/lib/lolita/configuration/field_set.rb +25 -25
  47. data/lib/lolita/configuration/filter.rb +6 -0
  48. data/lib/lolita/configuration/list.rb +10 -10
  49. data/lib/lolita/configuration/nested_form.rb +104 -104
  50. data/lib/lolita/configuration/search.rb +104 -104
  51. data/lib/lolita/configuration/tab/content.rb +3 -3
  52. data/lib/lolita/controllers/component_helpers.rb +9 -9
  53. data/lib/lolita/controllers/rails_helpers.rb +5 -5
  54. data/lib/lolita/dbi/base.rb +56 -56
  55. data/lib/lolita/hooks.rb +16 -16
  56. data/lib/lolita/hooks/named_hook.rb +125 -125
  57. data/lib/lolita/lazy_loader.rb +54 -54
  58. data/lib/lolita/navigation/tree.rb +132 -132
  59. data/lib/lolita/rails/engine.rb +2 -2
  60. data/lib/lolita/rails/routes.rb +9 -9
  61. data/lib/lolita/ruby_ext/accessors.rb +26 -26
  62. data/lib/lolita/ruby_ext/lolita_model_name.rb +10 -2
  63. data/lib/lolita/search/simple.rb +75 -75
  64. data/lib/lolita/support/formatter.rb +62 -62
  65. data/lib/lolita/support/formatter/rails.rb +56 -56
  66. data/lib/lolita/test/matchers.rb +77 -77
  67. data/lib/lolita/version.rb +2 -2
  68. data/spec/adapter/common_helper_spec.rb +96 -0
  69. data/spec/adapter_helper.rb +3 -4
  70. data/spec/builder_spec.rb +120 -120
  71. data/spec/configuration/base_spec.rb +1 -1
  72. data/spec/configuration/column_spec.rb +1 -1
  73. data/spec/configuration/columns_spec.rb +1 -1
  74. data/spec/configuration/core_spec.rb +1 -1
  75. data/spec/configuration/field_set_spec.rb +1 -1
  76. data/spec/configuration/field_spec.rb +1 -1
  77. data/spec/configuration/filter_spec.rb +30 -1
  78. data/spec/configuration/list_spec.rb +44 -145
  79. data/spec/configuration/nested_list_spec.rb +1 -1
  80. data/spec/configuration/search_spec.rb +1 -1
  81. data/spec/configuration/tab_spec.rb +1 -1
  82. data/spec/configuration/tabs_spec.rb +1 -2
  83. data/spec/controllers/component_helpers_spec.rb +1 -1
  84. data/spec/controllers/configuration_spec.rb +1 -1
  85. data/spec/controllers/internal_helpers_spec.rb +1 -1
  86. data/spec/controllers/lolita_rest_nested_resources_spec.rb +1 -1
  87. data/spec/controllers/lolita_rest_spec.rb +2 -2
  88. data/spec/dbi/base_spec.rb +1 -4
  89. data/spec/extensions/authorization/cancan_adapter_spec.rb +4 -4
  90. data/spec/extensions/extensions_spec.rb +1 -1
  91. data/spec/generators/lolita/install_generator_spec.rb +55 -0
  92. data/spec/generators/lolita/uninstall_generator_spec.rb +49 -0
  93. data/spec/hooks_spec.rb +25 -25
  94. data/spec/mapping_spec.rb +1 -1
  95. data/spec/navigation/branch_spec.rb +1 -1
  96. data/spec/navigation/tree_spec.rb +1 -1
  97. data/spec/rails_app/app/controllers/application_controller.rb +3 -3
  98. data/spec/rails_app/app/helpers/application_helper.rb +3 -3
  99. data/spec/rails_app/app/mongoid/address.rb +7 -7
  100. data/spec/rails_app/app/mongoid/comment.rb +5 -5
  101. data/spec/rails_app/app/mongoid/preference.rb +5 -5
  102. data/spec/rails_app/app/mongoid/profile.rb +13 -13
  103. data/spec/rails_app/app/mongoid/tag.rb +3 -3
  104. data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
  105. data/spec/rails_app/config/boot.rb +4 -9
  106. data/spec/rails_app/config/environment.rb +5 -5
  107. data/spec/rails_app/config/environments/production.rb +37 -37
  108. data/spec/rails_app/config/environments/test.rb +37 -37
  109. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
  110. data/spec/rails_app/config/initializers/inflections.rb +2 -2
  111. data/spec/rails_app/config/initializers/secret_token.rb +1 -1
  112. data/spec/rails_app/config/routes.rb +1 -1
  113. data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
  114. data/spec/rails_app/log/development.log +12940 -43222
  115. data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
  116. data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
  117. data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
  118. data/spec/rails_app/public/javascripts/rails.js +137 -137
  119. data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
  120. data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
  121. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
  122. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
  123. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
  124. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
  125. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
  126. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
  127. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
  128. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
  129. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
  130. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
  131. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
  132. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
  133. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
  134. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
  135. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
  136. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
  137. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
  138. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  139. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  140. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  141. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
  142. data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
  143. data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
  144. data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
  145. data/spec/routing/routes_spec.rb +1 -1
  146. data/spec/search/simple_spec.rb +1 -1
  147. data/spec/simple_spec_helper.rb +1 -1
  148. data/spec/spec_helper.rb +6 -4
  149. data/spec/support/formatter_spec.rb +1 -1
  150. data/spec/tmp/config/routes.rb +0 -0
  151. data/vendor/assets/javascripts/jquery-numeric.js +279 -279
  152. data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
  153. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  154. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  155. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  156. data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
  157. metadata +380 -395
  158. data/spec/rails_app/coverage.data +0 -1
  159. data/spec/rails_app/log/test.log +0 -370
@@ -1,57 +1,57 @@
1
- module Lolita
2
- module Support
3
- class Formatter
4
-
5
- # Formater for work with rails, it localize Date and Time.
6
- # Also
7
- class Rails < Lolita::Support::Formatter
8
-
9
-
10
- private
11
-
12
- def use_format_for(value,*optional_values)
13
- if @format && (value.is_a?(Time) || value.is_a?(Date))
14
- localize_time_with_format(value,*optional_values)
15
- else
16
- use_default_format(value,*optional_values)
17
- end
18
- end
19
-
20
- def localize_time_with_format(value,*optional_values)
21
- if defined?(::I18n)
22
- ::I18n.localize(value, :format => @format)
23
- else
24
- use_default_format(value,*optional_values)
25
- end
26
- end
27
-
28
- def use_default_format(value,*optional_values)
29
- if value
30
- if value.is_a?(String)
31
- @format ? (@format % value) : value
32
- elsif value.is_a?(Numeric)
33
- @format ? (@format % value) : value
34
- elsif value.is_a?(Date)
35
- if defined?(::I18n)
36
- ::I18n.localize(value, :format => :long)
37
- else
38
- value.strftime("%Y/%m%/%d")
39
- end
40
- elsif value.is_a?(Time)
41
- if defined?(::I18n)
42
- ::I18n.localize(value, :format => :long)
43
- else
44
- value.strftime("%Y/%m/%d %H:%M:%S")
45
- end
46
- else
47
- value.to_s
48
- end
49
- else
50
- ""
51
- end
52
- end
53
- end
54
-
55
- end
56
- end
1
+ module Lolita
2
+ module Support
3
+ class Formatter
4
+
5
+ # Formater for work with rails, it localize Date and Time.
6
+ # Also
7
+ class Rails < Lolita::Support::Formatter
8
+
9
+
10
+ private
11
+
12
+ def use_format_for(value,*optional_values)
13
+ if @format && (value.is_a?(Time) || value.is_a?(Date))
14
+ localize_time_with_format(value,*optional_values)
15
+ else
16
+ use_default_format(value,*optional_values)
17
+ end
18
+ end
19
+
20
+ def localize_time_with_format(value,*optional_values)
21
+ if defined?(::I18n)
22
+ ::I18n.localize(value, :format => @format)
23
+ else
24
+ use_default_format(value,*optional_values)
25
+ end
26
+ end
27
+
28
+ def use_default_format(value,*optional_values)
29
+ if value
30
+ if value.is_a?(String)
31
+ @format ? (@format % value) : value
32
+ elsif value.is_a?(Numeric)
33
+ @format ? (@format % value) : value
34
+ elsif value.is_a?(Date)
35
+ if defined?(::I18n)
36
+ ::I18n.localize(value, :format => :long)
37
+ else
38
+ value.strftime("%Y/%m%/%d")
39
+ end
40
+ elsif value.is_a?(Time)
41
+ if defined?(::I18n)
42
+ ::I18n.localize(value, :format => :long)
43
+ else
44
+ value.strftime("%Y/%m/%d %H:%M:%S")
45
+ end
46
+ else
47
+ value.to_s
48
+ end
49
+ else
50
+ ""
51
+ end
52
+ end
53
+ end
54
+
55
+ end
56
+ end
57
57
  end
@@ -1,77 +1,77 @@
1
- module Lolita
2
- module Test
3
- # Matchers that make easier to test Lolita and Lolita addons
4
- module Matchers
5
-
6
- class BeRoutable
7
-
8
- def matches?(actual)
9
- @actual=actual
10
- collect_routes
11
- set_method_and_url
12
- result=@routes.detect{|route|
13
- method_match(route) && @url.to_s.match(route[:path_info])
14
- }
15
- !!result
16
- end
17
-
18
- def failure_message
19
- "expected #{@url.inspect}#{@method ? " with method #{@method.inspect}" : ""} to be routable"
20
- end
21
- def negative_failure_message
22
- "expected #{@url.inspect}#{@method ? " with method #{@method.inspect}" : ""} to not be routable"
23
- end
24
-
25
- private
26
-
27
- def method_match(route)
28
- if route[:request_method]
29
- if @method
30
- @method.to_s.upcase.match(route[:request_method])
31
- else
32
- false
33
- end
34
- else
35
- true
36
- end
37
- end
38
-
39
- def set_method_and_url
40
- if @actual.is_a?(Hash)
41
- @method,@url=@actual.keys.first,@actual.values.first
42
- elsif @actual.is_a?(Array)
43
- if @actual.size>=2
44
- @method,@url=@actual[0],@actual[1]
45
- elsif
46
- @url=@actual.first
47
- end
48
- else
49
- @url=@actual.to_s
50
- end
51
- end
52
-
53
- def collect_routes
54
- @routes=[]
55
- all_applications.each do |application|
56
- @routes+=application.routes.routes.map(&:conditions)
57
- end
58
- end
59
-
60
- def all_applications
61
- if defined?(Rails) && defined?(Rails::Application)
62
- ObjectSpace.each_object(Rails::Application).select { |klass|
63
- klass.class < Rails::Application
64
- }.map(&:class)
65
- else
66
- []
67
- end
68
- end
69
- end
70
-
71
- def be_routable
72
- BeRoutable.new
73
- end
74
- end
75
- end
76
- end
77
-
1
+ module Lolita
2
+ module Test
3
+ # Matchers that make easier to test Lolita and Lolita addons
4
+ module Matchers
5
+
6
+ class BeRoutable
7
+
8
+ def matches?(actual)
9
+ @actual=actual
10
+ collect_routes
11
+ set_method_and_url
12
+ result=@routes.detect{|route|
13
+ method_match(route) && @url.to_s.match(route[:path_info])
14
+ }
15
+ !!result
16
+ end
17
+
18
+ def failure_message
19
+ "expected #{@url.inspect}#{@method ? " with method #{@method.inspect}" : ""} to be routable"
20
+ end
21
+ def negative_failure_message
22
+ "expected #{@url.inspect}#{@method ? " with method #{@method.inspect}" : ""} to not be routable"
23
+ end
24
+
25
+ private
26
+
27
+ def method_match(route)
28
+ if route[:request_method]
29
+ if @method
30
+ @method.to_s.upcase.match(route[:request_method])
31
+ else
32
+ false
33
+ end
34
+ else
35
+ true
36
+ end
37
+ end
38
+
39
+ def set_method_and_url
40
+ if @actual.is_a?(Hash)
41
+ @method,@url=@actual.keys.first,@actual.values.first
42
+ elsif @actual.is_a?(Array)
43
+ if @actual.size>=2
44
+ @method,@url=@actual[0],@actual[1]
45
+ elsif
46
+ @url=@actual.first
47
+ end
48
+ else
49
+ @url=@actual.to_s
50
+ end
51
+ end
52
+
53
+ def collect_routes
54
+ @routes=[]
55
+ all_applications.each do |application|
56
+ @routes+=application.routes.routes.map(&:conditions)
57
+ end
58
+ end
59
+
60
+ def all_applications
61
+ if defined?(Rails) && defined?(Rails::Application)
62
+ ObjectSpace.each_object(Rails::Application).select { |klass|
63
+ klass.class < Rails::Application
64
+ }.map(&:class)
65
+ else
66
+ []
67
+ end
68
+ end
69
+ end
70
+
71
+ def be_routable
72
+ BeRoutable.new
73
+ end
74
+ end
75
+ end
76
+ end
77
+
@@ -2,8 +2,8 @@ module Lolita
2
2
  module Version
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- PATCH = 0
6
- BUILD = 'rc.17'
5
+ PATCH = 1
6
+ BUILD = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
9
9
 
@@ -0,0 +1,96 @@
1
+ require 'simple_spec_helper'
2
+
3
+ describe Lolita::Adapter::CommonHelper do
4
+ describe Lolita::Adapter::CommonHelper::Record do
5
+ let(:orm_record){ double('orm_record') }
6
+ let(:adapter){ double('adapter', fields: []) }
7
+ subject(:record){ Lolita::Adapter::CommonHelper::Record.new adapter, orm_record }
8
+
9
+ describe '#title' do
10
+ context "record has title" do
11
+ let(:orm_record){ double('orm_record', title: 'some title') }
12
+ its(:title){ should eq('some title') }
13
+ end
14
+
15
+ context "record has name" do
16
+ let(:orm_record){ double('orm_record', name: 'some name') }
17
+ its(:title){ should eq('some name') }
18
+ end
19
+
20
+ context "record has content field" do
21
+ let(:adapter){ double('adapter', fields: [double(type: 'int', name: 'id'), double(type: 'string', name: 'first_name')]) }
22
+ let(:orm_record){ double('orm_record', first_name: 'Max') }
23
+ its(:title){ should eq('Max') }
24
+ end
25
+
26
+ context "else, return klass name with id" do
27
+ let(:orm_record){ double('orm_record', id: 9, class: double(lolita_model_name: double(human: 'Foo'))) }
28
+ its(:title){ should eq('Foo 9') }
29
+ end
30
+ end
31
+ end
32
+
33
+ describe Lolita::Adapter::CommonHelper::PaginationBuilder do
34
+ let(:unscoped){ double('unscoped') }
35
+ let(:klass){ double('klass', unscoped: unscoped) }
36
+ let(:adapter){ double('adapter', klass: klass) }
37
+ let(:page){ 1 }
38
+ let(:per){ 5 }
39
+ let(:request){ double('request', headers: {}) }
40
+ let(:options){ {request: request} }
41
+
42
+ subject(:builder){ Lolita::Adapter::CommonHelper::PaginationBuilder.new(adapter, page, per, options) }
43
+ describe '#params' do
44
+ context "with params" do
45
+ let(:request){ double('request', params: {a: 1}) }
46
+ its(:params){ should eq({a: 1})}
47
+ end
48
+
49
+ context "without params" do
50
+ its(:params){ should eq({})}
51
+ end
52
+ end
53
+
54
+ describe '#request' do
55
+ its(:request){ should eq(request) }
56
+ end
57
+
58
+ describe '#nested_criteria' do
59
+ context "with nested params" do
60
+ let(:request){ double('request', params: {nested: {category_id: 3}})}
61
+ it "filters by nested data" do
62
+ klass.should_receive(:where).with({category_id: 3})
63
+ subject.nested_criteria
64
+ end
65
+ end
66
+ context "without nested params" do
67
+ its(:nested_criteria){ should eq(unscoped) }
68
+ end
69
+ end
70
+
71
+ describe '#ability_criteria' do
72
+ context "without" do
73
+ its(:ability_criteria){ should eq(unscoped) }
74
+ end
75
+
76
+ context "with abilities" do
77
+ let(:klass){ double('klass', accessible_by: double)}
78
+ it "return accessible_by scope" do
79
+ klass.should_receive(:accessible_by)
80
+ subject.ability_criteria
81
+ end
82
+ end
83
+ end
84
+
85
+ describe '#sorting' do
86
+ context "with sort params" do
87
+ let(:request){ double('request', params: {s: 'name|surname,asc'}) }
88
+ its(:sorting){ should eq('name,surname asc')}
89
+ end
90
+
91
+ context "without params" do
92
+ its(:sorting){ should be_nil }
93
+ end
94
+ end
95
+ end
96
+ end
@@ -7,7 +7,6 @@ if ADAPTER=='mongoid'
7
7
  config.slaves = [
8
8
  Mongo::Connection.new(host, 27017, :slave_ok => true).db(name)
9
9
  ]
10
- #config.use_object_ids = true
11
10
  config.persist_in_safe_mode = false
12
11
  end
13
12
  else
@@ -24,7 +23,7 @@ else
24
23
  t.string :name
25
24
  end
26
25
  end
27
-
26
+
28
27
  class Comment < ActiveRecord::Base
29
28
  belongs_to :test_class1, :class_name=>"Post"
30
29
  end
@@ -32,13 +31,13 @@ else
32
31
  class Post < ActiveRecord::Base
33
32
  has_many :pages
34
33
  include Lolita::Configuration
35
- lolita
34
+ lolita
36
35
  end
37
36
 
38
37
  class Profile < ActiveRecord::Base
39
38
  include Lolita::Configuration
40
39
  lolita do
41
-
40
+
42
41
  end
43
42
  end
44
43
  end
data/spec/builder_spec.rb CHANGED
@@ -1,121 +1,121 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/simple_spec_helper')
2
-
3
- class SimpleObject
4
- include Lolita::Builder
5
- end
6
-
7
- describe Lolita::Builder::Custom do
8
- let(:object){SimpleObject.new}
9
- let(:builder){Lolita::Builder::Custom.new(object,{})}
10
- let(:klass){Lolita::Builder::Custom}
11
-
12
- it "should create new Custom builder" do
13
- builder = Lolita::Builder::Custom.new(object,{})
14
- end
15
-
16
- it "should set name and state" do
17
- builder = Lolita::Builder::Custom.new(object,{:name => "name", :state=>"state"})
18
- builder.instance_variable_get(:"@name").should == "name"
19
- builder.instance_variable_get(:"@state").should == "state"
20
- end
21
-
22
- it "should set default attributes" do
23
- builder = Lolita::Builder::Custom.new(object,{:name => "name"})
24
- builder.instance_variable_get(:"@state").should == :display
25
- end
26
-
27
- describe "build attributes" do
28
- it "should set through #with" do
29
- builder.with("name","state").build_attributes.should == {:name => "name", :state => "state"}
30
- builder.with({:name=>"name",:state=>"state"}).build_attributes.should == {:name => "name", :state=>"state"}
31
- builder.with("name",:state=>"state").build_attributes.should == {:name=>"name",:state=>"state"}
32
- end
33
- end
34
-
35
- it "should return default state when no build attributes given" do
36
- builder.state.should == :display
37
- end
38
-
39
- it "should return build attributes state when given" do
40
- builder.with(:state=>"state").state.should == :"state"
41
- end
42
-
43
- it "should return default name when no build name given" do
44
- builder.name.should == :"/simple_object"
45
- end
46
-
47
- it "should return build name when given" do
48
- builder.with(:name => "name").name.should == :"/simple_object/name"
49
- builder.with(:name => "/name").name.should == :"/name"
50
- end
51
-
52
- describe "#build" do
53
- it "should return array with name,state and options" do
54
- builder.build.should == [:"/simple_object",:"display",{}]
55
- builder.with({:display_value => 1}).build.should == [:"/simple_object",:display,{:display_value=>1}]
56
- end
57
- end
58
-
59
- describe "conditions" do
60
- it "should use given over default when there's no conditions" do
61
- builder = klass.new(object,:name => "/custom", :state => "special")
62
- builder.build.should == [:"/custom",:"special",{}]
63
- end
64
-
65
- it "should use given over default when conditions met" do
66
- builder = klass.new(object, :name => "/custom", :state=>"special", :unless=>{:state=>"display"})
67
- builder.build.should == [:"/simple_object",:"display",{}]
68
- builder.class_eval do
69
- def default_state
70
- :other
71
- end
72
- end
73
- builder.build.should == [:"/custom",:special,{}]
74
- end
75
-
76
- it "should use given over build given when conditions met" do
77
- builder = klass.new(object,:name => "/custom", :"state" => "special", :if=>{:state=>"default"})
78
- builder.with(:state => "other").build.should == [:"/simple_object",:other,{}]
79
- builder.with(:state => :default).build.should == [:"/custom",:special,{}]
80
- end
81
- end
82
- end
83
-
84
- describe Lolita::Builder do
85
-
86
- let(:object){SimpleObject.new}
87
-
88
- describe "#build" do
89
-
90
- describe "default path" do
91
-
92
- it "should be /:class_name/display" do
93
- info=object.build
94
- info.first.should == :"/simple_object"
95
- info[1].should == :display
96
- end
97
-
98
- it "should use given name when it starts with /" do
99
- object.builder = {:name =>"/custom"}
100
- info = object.build
101
- info.first.should == :"/custom"
102
- info[1].should == :display
103
- end
104
-
105
- it "should make name /:class_name/:custom_name when it doesn't start with /" do
106
- object.builder = {:name => "custom"}
107
- info = object.build
108
- info.first.should == :"/simple_object/custom"
109
- info[1].should == :display
110
- end
111
-
112
- end
113
-
114
- it "should use received name" do
115
- object.builder = {:name=>"/custom"}
116
- info = object.build("/other_custom")
117
- info.first.should == :"/other_custom"
118
- end
119
-
120
- end
1
+ require File.expand_path(File.dirname(__FILE__) + '/simple_spec_helper')
2
+
3
+ class SimpleObject
4
+ include Lolita::Builder
5
+ end
6
+
7
+ describe Lolita::Builder::Custom do
8
+ let(:object){SimpleObject.new}
9
+ let(:builder){Lolita::Builder::Custom.new(object,{})}
10
+ let(:klass){Lolita::Builder::Custom}
11
+
12
+ it "should create new Custom builder" do
13
+ builder = Lolita::Builder::Custom.new(object,{})
14
+ end
15
+
16
+ it "should set name and state" do
17
+ builder = Lolita::Builder::Custom.new(object,{:name => "name", :state=>"state"})
18
+ builder.instance_variable_get(:"@name").should == "name"
19
+ builder.instance_variable_get(:"@state").should == "state"
20
+ end
21
+
22
+ it "should set default attributes" do
23
+ builder = Lolita::Builder::Custom.new(object,{:name => "name"})
24
+ builder.instance_variable_get(:"@state").should == :display
25
+ end
26
+
27
+ describe "build attributes" do
28
+ it "should set through #with" do
29
+ builder.with("name","state").build_attributes.should == {:name => "name", :state => "state"}
30
+ builder.with({:name=>"name",:state=>"state"}).build_attributes.should == {:name => "name", :state=>"state"}
31
+ builder.with("name",:state=>"state").build_attributes.should == {:name=>"name",:state=>"state"}
32
+ end
33
+ end
34
+
35
+ it "should return default state when no build attributes given" do
36
+ builder.state.should == :display
37
+ end
38
+
39
+ it "should return build attributes state when given" do
40
+ builder.with(:state=>"state").state.should == :"state"
41
+ end
42
+
43
+ it "should return default name when no build name given" do
44
+ builder.name.should == :"/simple_object"
45
+ end
46
+
47
+ it "should return build name when given" do
48
+ builder.with(:name => "name").name.should == :"/simple_object/name"
49
+ builder.with(:name => "/name").name.should == :"/name"
50
+ end
51
+
52
+ describe "#build" do
53
+ it "should return array with name,state and options" do
54
+ builder.build.should == [:"/simple_object",:"display",{}]
55
+ builder.with({:display_value => 1}).build.should == [:"/simple_object",:display,{:display_value=>1}]
56
+ end
57
+ end
58
+
59
+ describe "conditions" do
60
+ it "should use given over default when there's no conditions" do
61
+ builder = klass.new(object,:name => "/custom", :state => "special")
62
+ builder.build.should == [:"/custom",:"special",{}]
63
+ end
64
+
65
+ it "should use given over default when conditions met" do
66
+ builder = klass.new(object, :name => "/custom", :state=>"special", :unless=>{:state=>"display"})
67
+ builder.build.should == [:"/simple_object",:"display",{}]
68
+ builder.class_eval do
69
+ def default_state
70
+ :other
71
+ end
72
+ end
73
+ builder.build.should == [:"/custom",:special,{}]
74
+ end
75
+
76
+ it "should use given over build given when conditions met" do
77
+ builder = klass.new(object,:name => "/custom", :"state" => "special", :if=>{:state=>"default"})
78
+ builder.with(:state => "other").build.should == [:"/simple_object",:other,{}]
79
+ builder.with(:state => :default).build.should == [:"/custom",:special,{}]
80
+ end
81
+ end
82
+ end
83
+
84
+ describe Lolita::Builder do
85
+
86
+ let(:object){SimpleObject.new}
87
+
88
+ describe "#build" do
89
+
90
+ describe "default path" do
91
+
92
+ it "should be /:class_name/display" do
93
+ info=object.build
94
+ info.first.should == :"/simple_object"
95
+ info[1].should == :display
96
+ end
97
+
98
+ it "should use given name when it starts with /" do
99
+ object.builder = {:name =>"/custom"}
100
+ info = object.build
101
+ info.first.should == :"/custom"
102
+ info[1].should == :display
103
+ end
104
+
105
+ it "should make name /:class_name/:custom_name when it doesn't start with /" do
106
+ object.builder = {:name => "custom"}
107
+ info = object.build
108
+ info.first.should == :"/simple_object/custom"
109
+ info[1].should == :display
110
+ end
111
+
112
+ end
113
+
114
+ it "should use received name" do
115
+ object.builder = {:name=>"/custom"}
116
+ info = object.build("/other_custom")
117
+ info.first.should == :"/other_custom"
118
+ end
119
+
120
+ end
121
121
  end