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.
- checksums.yaml +7 -0
- data/README.md +22 -17
- data/Rakefile +3 -0
- data/app/assets/javascripts/lolita/list.js +2 -2
- data/app/assets/javascripts/lolita/main.js +2 -2
- data/app/assets/javascripts/lolita/tab.js +7 -7
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +6 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +4 -1
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/filter/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/index.html.haml +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +2 -4
- data/lib/generators/lolita/uninstall_generator.rb +3 -8
- data/lib/generators/templates/lolita.rb +13 -16
- data/lib/lolita.rb +4 -5
- data/lib/lolita/adapter/active_record.rb +4 -4
- data/lib/lolita/adapter/common_helper.rb +45 -71
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +8 -8
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +6 -0
- data/lib/lolita/configuration/list.rb +10 -10
- data/lib/lolita/configuration/nested_form.rb +104 -104
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/configuration/tab/content.rb +3 -3
- data/lib/lolita/controllers/component_helpers.rb +9 -9
- data/lib/lolita/controllers/rails_helpers.rb +5 -5
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks.rb +16 -16
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +2 -2
- data/lib/lolita/rails/routes.rb +9 -9
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/ruby_ext/lolita_model_name.rb +10 -2
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +2 -2
- data/spec/adapter/common_helper_spec.rb +96 -0
- data/spec/adapter_helper.rb +3 -4
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +1 -1
- data/spec/configuration/column_spec.rb +1 -1
- data/spec/configuration/columns_spec.rb +1 -1
- data/spec/configuration/core_spec.rb +1 -1
- data/spec/configuration/field_set_spec.rb +1 -1
- data/spec/configuration/field_spec.rb +1 -1
- data/spec/configuration/filter_spec.rb +30 -1
- data/spec/configuration/list_spec.rb +44 -145
- data/spec/configuration/nested_list_spec.rb +1 -1
- data/spec/configuration/search_spec.rb +1 -1
- data/spec/configuration/tab_spec.rb +1 -1
- data/spec/configuration/tabs_spec.rb +1 -2
- data/spec/controllers/component_helpers_spec.rb +1 -1
- data/spec/controllers/configuration_spec.rb +1 -1
- data/spec/controllers/internal_helpers_spec.rb +1 -1
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +1 -1
- data/spec/controllers/lolita_rest_spec.rb +2 -2
- data/spec/dbi/base_spec.rb +1 -4
- data/spec/extensions/authorization/cancan_adapter_spec.rb +4 -4
- data/spec/extensions/extensions_spec.rb +1 -1
- data/spec/generators/lolita/install_generator_spec.rb +55 -0
- data/spec/generators/lolita/uninstall_generator_spec.rb +49 -0
- data/spec/hooks_spec.rb +25 -25
- data/spec/mapping_spec.rb +1 -1
- data/spec/navigation/branch_spec.rb +1 -1
- data/spec/navigation/tree_spec.rb +1 -1
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/boot.rb +4 -9
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +37 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +1 -1
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/log/development.log +12940 -43222
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/routing/routes_spec.rb +1 -1
- data/spec/search/simple_spec.rb +1 -1
- data/spec/simple_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +6 -4
- data/spec/support/formatter_spec.rb +1 -1
- data/spec/tmp/config/routes.rb +0 -0
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +380 -395
- data/spec/rails_app/coverage.data +0 -1
- 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
|
data/lib/lolita/test/matchers.rb
CHANGED
@@ -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
|
+
|
data/lib/lolita/version.rb
CHANGED
@@ -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
|
data/spec/adapter_helper.rb
CHANGED
@@ -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
|