lolita 3.1.10 → 3.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -5
- data/.rspec +2 -2
- data/GUIDELINES.rdoc +24 -24
- data/Gemfile +26 -26
- data/History.rdoc +162 -154
- data/LICENSE.txt +22 -22
- data/README.rdoc +98 -98
- data/Rakefile +40 -40
- data/VERSION +1 -1
- data/app/controllers/lolita/info_controller.rb +41 -41
- data/app/controllers/lolita/rest_controller.rb +130 -130
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/lolita_helper.rb +11 -11
- data/app/views/components/lolita/configuration/column/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/column/_header.html.erb +7 -7
- data/app/views/components/lolita/configuration/column/_sort.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_body.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/columns/_first.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_first_column_header.html.erb +3 -3
- data/app/views/components/lolita/configuration/columns/_header.html.erb +8 -8
- data/app/views/components/lolita/configuration/columns/_last.html.erb +4 -4
- data/app/views/components/lolita/configuration/columns/_last_column_header.html.erb +2 -2
- data/app/views/components/lolita/configuration/columns/_row.html.erb +7 -7
- data/app/views/components/lolita/configuration/field/_display.html.erb +9 -9
- data/app/views/components/lolita/configuration/field/_label.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/_object.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/array/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/array/habtm/_display.html.erb +26 -26
- data/app/views/components/lolita/configuration/field/array/select/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/field/boolean/filter/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/date_time/date/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/integer/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/_display.html.erb +4 -4
- data/app/views/components/lolita/configuration/field/string/disabled/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/string/password/_display.html.erb +3 -3
- data/app/views/components/lolita/configuration/field/string/text/_display.html.erb +18 -18
- data/app/views/components/lolita/configuration/field_set/_display.html.erb +5 -5
- data/app/views/components/lolita/configuration/list/_display.html.erb +10 -10
- data/app/views/components/lolita/configuration/list/_filter.html.erb +7 -7
- data/app/views/components/lolita/configuration/list/_new_resource.html.erb +4 -4
- data/app/views/components/lolita/configuration/list/_title.html.erb +4 -4
- data/app/views/components/lolita/configuration/tab/_display.html.erb +17 -17
- data/app/views/components/lolita/configuration/tab/_fields.html.erb +6 -6
- data/app/views/components/lolita/configuration/tab/content/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/tab/default/_display.html.erb +8 -8
- data/app/views/components/lolita/configuration/tabs/_display.html.erb +10 -10
- data/app/views/components/lolita/navigation/_display.html.erb +2 -2
- data/app/views/components/lolita/navigation/_tree.html.erb +38 -38
- data/app/views/components/lolita/shared/_flash.html.erb +5 -5
- data/app/views/components/lolita/shared/_header.html.erb +8 -8
- data/app/views/components/lolita/shared/_right_sidebar.html.erb +13 -13
- data/app/views/layouts/lolita/application.html.erb +44 -44
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/form.html.erb +1 -1
- data/app/views/lolita/rest/index.html.erb +1 -1
- data/author +1 -1
- data/config/locales/default/lv.yml +180 -180
- data/config/locales/en.yml +20 -20
- data/config/locales/lv.yml +20 -20
- data/config/routes.rb +3 -3
- data/db/seed.rb +1 -1
- data/features/create_page.feature +19 -19
- data/features/step_definitions/lolita_steps.rb +7 -7
- data/features/step_definitions/web_steps.rb +219 -219
- data/features/support/env.rb +73 -73
- data/features/support/paths.rb +35 -35
- data/lib/generators/helpers/file_helper.rb +22 -22
- data/lib/generators/lolita/assets_generator.rb +18 -18
- data/lib/generators/lolita/install_generator.rb +28 -28
- data/lib/generators/templates/lolita.rb +19 -19
- data/lib/lolita.rb +184 -184
- data/lib/lolita/adapter/abstract_adapter.rb +13 -13
- data/lib/lolita/adapter/active_record.rb +148 -148
- data/lib/lolita/adapter/mongoid.rb +127 -127
- data/lib/lolita/base_configuration.rb +165 -165
- data/lib/lolita/builder.rb +249 -249
- data/lib/lolita/configuration/base.rb +76 -76
- data/lib/lolita/configuration/column.rb +93 -94
- data/lib/lolita/configuration/columns.rb +66 -66
- data/lib/lolita/configuration/factory.rb +55 -55
- data/lib/lolita/configuration/field.rb +216 -216
- data/lib/lolita/configuration/field/array.rb +75 -75
- 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/date_time.rb +13 -13
- data/lib/lolita/configuration/field/integer.rb +12 -12
- data/lib/lolita/configuration/field/string.rb +13 -13
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/fields.rb +35 -35
- data/lib/lolita/configuration/filter.rb +108 -108
- data/lib/lolita/configuration/list.rb +104 -104
- data/lib/lolita/configuration/page.rb +125 -124
- data/lib/lolita/configuration/tab.rb +187 -187
- data/lib/lolita/configuration/tab/content.rb +21 -21
- data/lib/lolita/configuration/tab/default.rb +25 -25
- data/lib/lolita/configuration/tabs.rb +132 -132
- data/lib/lolita/controllers/component_helpers.rb +127 -127
- data/lib/lolita/controllers/internal_helpers.rb +109 -109
- data/lib/lolita/controllers/url_helpers.rb +111 -111
- data/lib/lolita/controllers/user_helpers.rb +32 -32
- data/lib/lolita/controllers/view_user_helpers.rb +12 -12
- data/lib/lolita/dbi/base.rb +50 -50
- data/lib/lolita/errors.rb +12 -12
- data/lib/lolita/hooks.rb +355 -355
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +46 -46
- data/lib/lolita/mapping.rb +55 -55
- data/lib/lolita/modules.rb +6 -6
- data/lib/lolita/modules/rest.rb +10 -10
- data/lib/lolita/navigation/branch.rb +132 -132
- data/lib/lolita/navigation/tree.rb +116 -116
- data/lib/lolita/observed_array.rb +74 -74
- data/lib/lolita/rails.rb +20 -20
- data/lib/lolita/rails/all.rb +10 -10
- data/lib/lolita/rails/routes.rb +133 -133
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- 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/lolita.gemspec +2 -2
- data/public/javascripts/jquery-1.6.min.js +15 -15
- data/public/javascripts/jquery-ui-1.8.13.min.js +407 -407
- data/public/javascripts/lolita/main.js +39 -39
- data/public/javascripts/lolita/tab.js +41 -41
- data/public/javascripts/modernizr-1.7.min.js +1 -1
- data/public/javascripts/rails.js +137 -137
- data/public/javascripts/tinymce/langs/en.js +221 -221
- data/public/javascripts/tinymce/license.txt +504 -504
- data/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/public/javascripts/tinymce_config.js +15 -15
- data/public/stylesheets/lolita/default.css +169 -169
- data/public/stylesheets/lolita/style.css +253 -253
- data/spec/adapter_helper.rb +43 -43
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +44 -44
- data/spec/configuration/column_spec.rb +89 -89
- data/spec/configuration/columns_spec.rb +54 -54
- data/spec/configuration/field_set_spec.rb +12 -12
- data/spec/configuration/field_spec.rb +118 -118
- data/spec/configuration/filter_spec.rb +122 -122
- data/spec/configuration/list_spec.rb +76 -76
- data/spec/configuration/page_spec.rb +19 -19
- data/spec/configuration/tab_spec.rb +165 -165
- data/spec/configuration/tabs_spec.rb +106 -106
- data/spec/controllers/component_helpers_spec.rb +5 -5
- data/spec/controllers/internal_helpers_spec.rb +76 -76
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +33 -33
- data/spec/controllers/lolita_rest_spec.rb +53 -53
- data/spec/dbi/base_spec.rb +44 -44
- data/spec/hooks_spec.rb +257 -257
- data/spec/lolita_spec.rb +13 -13
- data/spec/mapping_spec.rb +29 -29
- data/spec/navigation/branch_spec.rb +81 -81
- data/spec/navigation/tree_spec.rb +73 -73
- data/spec/orm/mongoid.rb +11 -11
- 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/category.rb +5 -5
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/post.rb +18 -18
- 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/application.rb +26 -26
- data/spec/rails_app/config/boot.rb +13 -13
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +19 -19
- data/spec/rails_app/config/environments/production.rb +33 -33
- data/spec/rails_app/config/environments/test.rb +33 -33
- 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 +2 -2
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- 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/lolita/tab.js +40 -40
- 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 +15 -15
- data/spec/spec_helper.rb +46 -46
- data/spec/support/factories/category.rb +3 -3
- data/spec/support/factories/post.rb +4 -4
- data/spec/support/factories/tag.rb +2 -2
- data/spec/support/formatter_spec.rb +42 -42
- metadata +31 -31
data/spec/adapter_helper.rb
CHANGED
@@ -1,44 +1,44 @@
|
|
1
|
-
if ADAPTER=='mongoid'
|
2
|
-
require 'mongoid'
|
3
|
-
Mongoid.configure do |config|
|
4
|
-
name = "lolita3_test"
|
5
|
-
host = "localhost"
|
6
|
-
config.master = Mongo::Connection.new.db(name)
|
7
|
-
config.slaves = [
|
8
|
-
Mongo::Connection.new(host, 27017, :slave_ok => true).db(name)
|
9
|
-
]
|
10
|
-
#config.use_object_ids = true
|
11
|
-
config.persist_in_safe_mode = false
|
12
|
-
end
|
13
|
-
else
|
14
|
-
require 'active_record'
|
15
|
-
ActiveRecord::Base.establish_connection({ :database => ":memory:", :adapter => 'sqlite3', :timeout => 500 })
|
16
|
-
ActiveRecord::Schema.define do
|
17
|
-
create_table :posts, :force => true do |t|
|
18
|
-
t.string :field_one
|
19
|
-
end
|
20
|
-
create_table :test_class2, :force => true do |t|
|
21
|
-
t.string :field_one
|
22
|
-
end
|
23
|
-
create_table :pages,:force=>true do |t|
|
24
|
-
t.string :name
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
class Comment < ActiveRecord::Base
|
29
|
-
belongs_to :test_class1, :class_name=>"Post"
|
30
|
-
end
|
31
|
-
|
32
|
-
class Post < ActiveRecord::Base
|
33
|
-
has_many :pages
|
34
|
-
include Lolita::Configuration
|
35
|
-
lolita
|
36
|
-
end
|
37
|
-
|
38
|
-
class Profile < ActiveRecord::Base
|
39
|
-
include Lolita::Configuration
|
40
|
-
lolita do
|
41
|
-
|
42
|
-
end
|
43
|
-
end
|
1
|
+
if ADAPTER=='mongoid'
|
2
|
+
require 'mongoid'
|
3
|
+
Mongoid.configure do |config|
|
4
|
+
name = "lolita3_test"
|
5
|
+
host = "localhost"
|
6
|
+
config.master = Mongo::Connection.new.db(name)
|
7
|
+
config.slaves = [
|
8
|
+
Mongo::Connection.new(host, 27017, :slave_ok => true).db(name)
|
9
|
+
]
|
10
|
+
#config.use_object_ids = true
|
11
|
+
config.persist_in_safe_mode = false
|
12
|
+
end
|
13
|
+
else
|
14
|
+
require 'active_record'
|
15
|
+
ActiveRecord::Base.establish_connection({ :database => ":memory:", :adapter => 'sqlite3', :timeout => 500 })
|
16
|
+
ActiveRecord::Schema.define do
|
17
|
+
create_table :posts, :force => true do |t|
|
18
|
+
t.string :field_one
|
19
|
+
end
|
20
|
+
create_table :test_class2, :force => true do |t|
|
21
|
+
t.string :field_one
|
22
|
+
end
|
23
|
+
create_table :pages,:force=>true do |t|
|
24
|
+
t.string :name
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
class Comment < ActiveRecord::Base
|
29
|
+
belongs_to :test_class1, :class_name=>"Post"
|
30
|
+
end
|
31
|
+
|
32
|
+
class Post < ActiveRecord::Base
|
33
|
+
has_many :pages
|
34
|
+
include Lolita::Configuration
|
35
|
+
lolita
|
36
|
+
end
|
37
|
+
|
38
|
+
class Profile < ActiveRecord::Base
|
39
|
+
include Lolita::Configuration
|
40
|
+
lolita do
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
44
44
|
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
|
@@ -1,44 +1,44 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
-
|
3
|
-
describe Lolita::Configuration::Base do
|
4
|
-
# before(:each) do
|
5
|
-
# @base = Lolita::Configuration::Base.new
|
6
|
-
# end
|
7
|
-
|
8
|
-
it "should define configuration without block" do
|
9
|
-
Post.lolita.should_not be_nil
|
10
|
-
end
|
11
|
-
|
12
|
-
it "should define configuration with block" do
|
13
|
-
Profile.lolita.should_not be_nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it "should not initialize instance methods for configuration without calling them" do
|
17
|
-
Profile.lolita.list.to_s.should match(/Lolita::LazyLoader/)
|
18
|
-
Post.lolita.list.to_s.should match(/Lolita::LazyLoader/)
|
19
|
-
end
|
20
|
-
|
21
|
-
it "should return real object when calling it" do
|
22
|
-
define_config do
|
23
|
-
list
|
24
|
-
end
|
25
|
-
Post.lolita.list.class.to_s.should == "Lolita::Configuration::List"
|
26
|
-
end
|
27
|
-
|
28
|
-
it "should return tabs" do
|
29
|
-
define_config
|
30
|
-
Post.lolita.tabs.class.should == Lolita::Configuration::Tabs
|
31
|
-
end
|
32
|
-
|
33
|
-
it "should allow add tabs" do
|
34
|
-
define_config do
|
35
|
-
tab(:content)
|
36
|
-
end
|
37
|
-
Post.lolita.tabs.size.should == 1
|
38
|
-
end
|
39
|
-
|
40
|
-
def define_config &block
|
41
|
-
Post.lolita=Lolita::Configuration::Base.new(Post,&block)
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
+
|
3
|
+
describe Lolita::Configuration::Base do
|
4
|
+
# before(:each) do
|
5
|
+
# @base = Lolita::Configuration::Base.new
|
6
|
+
# end
|
7
|
+
|
8
|
+
it "should define configuration without block" do
|
9
|
+
Post.lolita.should_not be_nil
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should define configuration with block" do
|
13
|
+
Profile.lolita.should_not be_nil
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should not initialize instance methods for configuration without calling them" do
|
17
|
+
Profile.lolita.list.to_s.should match(/Lolita::LazyLoader/)
|
18
|
+
Post.lolita.list.to_s.should match(/Lolita::LazyLoader/)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should return real object when calling it" do
|
22
|
+
define_config do
|
23
|
+
list
|
24
|
+
end
|
25
|
+
Post.lolita.list.class.to_s.should == "Lolita::Configuration::List"
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should return tabs" do
|
29
|
+
define_config
|
30
|
+
Post.lolita.tabs.class.should == Lolita::Configuration::Tabs
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should allow add tabs" do
|
34
|
+
define_config do
|
35
|
+
tab(:content)
|
36
|
+
end
|
37
|
+
Post.lolita.tabs.size.should == 1
|
38
|
+
end
|
39
|
+
|
40
|
+
def define_config &block
|
41
|
+
Post.lolita=Lolita::Configuration::Base.new(Post,&block)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
@@ -1,89 +1,89 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
-
|
3
|
-
describe Lolita::Configuration::Column do
|
4
|
-
let(:dbi){Lolita::DBI::Base.new(Post)}
|
5
|
-
let(:column){Lolita::Configuration::Column.new(dbi,:col1)}
|
6
|
-
|
7
|
-
|
8
|
-
it "should create new column with Hash attributes" do
|
9
|
-
column=Lolita::Configuration::Column.new(dbi,:name=>"col1",:title=>"Col1",:type=>String)
|
10
|
-
column.name.should == "col1"
|
11
|
-
end
|
12
|
-
|
13
|
-
it "should create new column with Proc as block given" do
|
14
|
-
p=Proc.new{
|
15
|
-
name "col1"
|
16
|
-
title "Col one"
|
17
|
-
type String
|
18
|
-
}
|
19
|
-
column=Lolita::Configuration::Column.new dbi,&p
|
20
|
-
column.type.should == String
|
21
|
-
end
|
22
|
-
|
23
|
-
it "should create new column with block given" do
|
24
|
-
column=Lolita::Configuration::Column.new(dbi) do
|
25
|
-
name "col1"
|
26
|
-
title "Col one"
|
27
|
-
type String
|
28
|
-
end
|
29
|
-
column.title.size.should > 0
|
30
|
-
end
|
31
|
-
|
32
|
-
it "should create new column when String or Symbol is given" do
|
33
|
-
column=Lolita::Configuration::Column.new(dbi,:col1)
|
34
|
-
column.name.should == "col1"
|
35
|
-
column=Lolita::Configuration::Column.new(dbi,"col2")
|
36
|
-
column.name.should == "col2"
|
37
|
-
end
|
38
|
-
|
39
|
-
it "should raise error when no name is provided for column" do
|
40
|
-
lambda{
|
41
|
-
Lolita::Configuration::Column.new(dbi) do
|
42
|
-
title "Col one"
|
43
|
-
end
|
44
|
-
}.should raise_error(ArgumentError, "Column must have name.")
|
45
|
-
end
|
46
|
-
|
47
|
-
it "should allow to add formatter with block" do
|
48
|
-
column.formatter do|value|
|
49
|
-
"value #{value}"
|
50
|
-
end
|
51
|
-
column.formatter.with("1").should == "value 1"
|
52
|
-
end
|
53
|
-
|
54
|
-
it "should allow to add formatter as attribute" do
|
55
|
-
column.type :float
|
56
|
-
column.formatter = "%.3f"
|
57
|
-
column.formatter.with(44.88).should == "44.880"
|
58
|
-
end
|
59
|
-
|
60
|
-
it "should allow to add formatter as attribute with Lolita::Support instance" do
|
61
|
-
column.formatter = Lolita::Support::Formatter.new("%s")
|
62
|
-
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_false
|
63
|
-
column.formatter = "%s"
|
64
|
-
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_true
|
65
|
-
end
|
66
|
-
|
67
|
-
it "should allow to add formatter as block with Lolita::Support instance" do
|
68
|
-
column=Lolita::Configuration::Column.new(dbi) do
|
69
|
-
name "col1"
|
70
|
-
title "Col one"
|
71
|
-
type String
|
72
|
-
formatter Lolita::Support::Formatter.new("%s")
|
73
|
-
end
|
74
|
-
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_false
|
75
|
-
column=Lolita::Configuration::Column.new(dbi) do
|
76
|
-
name "col1"
|
77
|
-
title "Col one"
|
78
|
-
type String
|
79
|
-
formatter "%s"
|
80
|
-
end
|
81
|
-
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_true
|
82
|
-
end
|
83
|
-
|
84
|
-
it "should make default formater not defined" do
|
85
|
-
column.formatter.with(1).should == 1
|
86
|
-
end
|
87
|
-
|
88
|
-
end
|
89
|
-
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
+
|
3
|
+
describe Lolita::Configuration::Column do
|
4
|
+
let(:dbi){Lolita::DBI::Base.new(Post)}
|
5
|
+
let(:column){Lolita::Configuration::Column.new(dbi,:col1)}
|
6
|
+
|
7
|
+
|
8
|
+
it "should create new column with Hash attributes" do
|
9
|
+
column=Lolita::Configuration::Column.new(dbi,:name=>"col1",:title=>"Col1",:type=>String)
|
10
|
+
column.name.should == "col1"
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should create new column with Proc as block given" do
|
14
|
+
p=Proc.new{
|
15
|
+
name "col1"
|
16
|
+
title "Col one"
|
17
|
+
type String
|
18
|
+
}
|
19
|
+
column=Lolita::Configuration::Column.new dbi,&p
|
20
|
+
column.type.should == String
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should create new column with block given" do
|
24
|
+
column=Lolita::Configuration::Column.new(dbi) do
|
25
|
+
name "col1"
|
26
|
+
title "Col one"
|
27
|
+
type String
|
28
|
+
end
|
29
|
+
column.title.size.should > 0
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should create new column when String or Symbol is given" do
|
33
|
+
column=Lolita::Configuration::Column.new(dbi,:col1)
|
34
|
+
column.name.should == "col1"
|
35
|
+
column=Lolita::Configuration::Column.new(dbi,"col2")
|
36
|
+
column.name.should == "col2"
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should raise error when no name is provided for column" do
|
40
|
+
lambda{
|
41
|
+
Lolita::Configuration::Column.new(dbi) do
|
42
|
+
title "Col one"
|
43
|
+
end
|
44
|
+
}.should raise_error(ArgumentError, "Column must have name.")
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should allow to add formatter with block" do
|
48
|
+
column.formatter do|value|
|
49
|
+
"value #{value}"
|
50
|
+
end
|
51
|
+
column.formatter.with("1").should == "value 1"
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should allow to add formatter as attribute" do
|
55
|
+
column.type :float
|
56
|
+
column.formatter = "%.3f"
|
57
|
+
column.formatter.with(44.88).should == "44.880"
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should allow to add formatter as attribute with Lolita::Support instance" do
|
61
|
+
column.formatter = Lolita::Support::Formatter.new("%s")
|
62
|
+
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_false
|
63
|
+
column.formatter = "%s"
|
64
|
+
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_true
|
65
|
+
end
|
66
|
+
|
67
|
+
it "should allow to add formatter as block with Lolita::Support instance" do
|
68
|
+
column=Lolita::Configuration::Column.new(dbi) do
|
69
|
+
name "col1"
|
70
|
+
title "Col one"
|
71
|
+
type String
|
72
|
+
formatter Lolita::Support::Formatter.new("%s")
|
73
|
+
end
|
74
|
+
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_false
|
75
|
+
column=Lolita::Configuration::Column.new(dbi) do
|
76
|
+
name "col1"
|
77
|
+
title "Col one"
|
78
|
+
type String
|
79
|
+
formatter "%s"
|
80
|
+
end
|
81
|
+
column.formatter.is_a?(Lolita::Support::Formatter::Rails).should be_true
|
82
|
+
end
|
83
|
+
|
84
|
+
it "should make default formater not defined" do
|
85
|
+
column.formatter.with(1).should == 1
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|