netzke-basepack-zh 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +1 -0
- data/.travis.yml +11 -0
- data/CHANGELOG.rdoc +445 -0
- data/LICENSE +1 -0
- data/README.md +94 -0
- data/Rakefile +44 -0
- data/TODO.rdoc +8 -0
- data/config/ci/before-travis.sh +28 -0
- data/init.rb +1 -0
- data/install.rb +1 -0
- data/javascripts/basepack.js +139 -0
- data/javascripts/xdatetime.js +196 -0
- data/lib/generators/netzke/basepack_generator.rb +10 -0
- data/lib/generators/netzke/templates/assets/ts-checkbox.gif +0 -0
- data/lib/generators/netzke/templates/create_netzke_field_lists.rb +18 -0
- data/lib/netzke-basepack.rb +26 -0
- data/lib/netzke/active_record.rb +20 -0
- data/lib/netzke/active_record/attributes.rb +256 -0
- data/lib/netzke/active_record/combobox_options.rb +16 -0
- data/lib/netzke/active_record/relation_extensions.rb +37 -0
- data/lib/netzke/basepack.rb +45 -0
- data/lib/netzke/basepack/accordion_panel.rb +39 -0
- data/lib/netzke/basepack/action_column.rb +68 -0
- data/lib/netzke/basepack/action_column/javascripts/action_column.js +61 -0
- data/lib/netzke/basepack/auth_app.rb +159 -0
- data/lib/netzke/basepack/basic_app.rb +7 -0
- data/lib/netzke/basepack/border_layout_panel.rb +53 -0
- data/lib/netzke/basepack/border_layout_panel/javascripts/border_layout_panel.js +40 -0
- data/lib/netzke/basepack/data_accessor.rb +53 -0
- data/lib/netzke/basepack/data_adapters/abstract_adapter.rb +164 -0
- data/lib/netzke/basepack/data_adapters/active_record_adapter.rb +279 -0
- data/lib/netzke/basepack/data_adapters/data_mapper_adapter.rb +264 -0
- data/lib/netzke/basepack/data_adapters/sequel_adapter.rb +260 -0
- data/lib/netzke/basepack/form_panel.rb +144 -0
- data/lib/netzke/basepack/form_panel/fields.rb +208 -0
- data/lib/netzke/basepack/form_panel/javascripts/comma_list_cbg.js +51 -0
- data/lib/netzke/basepack/form_panel/javascripts/form_panel.js +225 -0
- data/lib/netzke/basepack/form_panel/javascripts/misc.js +4 -0
- data/lib/netzke/basepack/form_panel/javascripts/n_radio_group.js +43 -0
- data/lib/netzke/basepack/form_panel/javascripts/readonly_mode.js +35 -0
- data/lib/netzke/basepack/form_panel/services.rb +142 -0
- data/lib/netzke/basepack/form_panel/stylesheets/readonly_mode.css +14 -0
- data/lib/netzke/basepack/grid_panel.rb +440 -0
- data/lib/netzke/basepack/grid_panel/columns.rb +394 -0
- data/lib/netzke/basepack/grid_panel/javascripts/advanced_search.js +27 -0
- data/lib/netzke/basepack/grid_panel/javascripts/check_column_fix.js +6 -0
- data/lib/netzke/basepack/grid_panel/javascripts/edit_in_form.js +51 -0
- data/lib/netzke/basepack/grid_panel/javascripts/event_handling.js +179 -0
- data/lib/netzke/basepack/grid_panel/javascripts/grid_panel.js +438 -0
- data/lib/netzke/basepack/grid_panel/javascripts/misc.js +4 -0
- data/lib/netzke/basepack/grid_panel/javascripts/rows-dd.js +281 -0
- data/lib/netzke/basepack/grid_panel/record_form_window.rb +41 -0
- data/lib/netzke/basepack/grid_panel/services.rb +235 -0
- data/lib/netzke/basepack/paging_form_panel.rb +72 -0
- data/lib/netzke/basepack/paging_form_panel/javascripts/paging_form_panel.js +76 -0
- data/lib/netzke/basepack/panel.rb +11 -0
- data/lib/netzke/basepack/query_builder.rb +107 -0
- data/lib/netzke/basepack/query_builder/javascripts/query_builder.js +153 -0
- data/lib/netzke/basepack/search_panel.rb +79 -0
- data/lib/netzke/basepack/search_panel/javascripts/condition_field.js +160 -0
- data/lib/netzke/basepack/search_panel/javascripts/search_panel.js +65 -0
- data/lib/netzke/basepack/search_window.rb +66 -0
- data/lib/netzke/basepack/simple_app.rb +104 -0
- data/lib/netzke/basepack/simple_app/javascripts/simple_app.js +64 -0
- data/lib/netzke/basepack/simple_app/javascripts/statusbar_ext.js +8 -0
- data/lib/netzke/basepack/tab_panel.rb +21 -0
- data/lib/netzke/basepack/tab_panel/javascripts/tab_panel.js +11 -0
- data/lib/netzke/basepack/version.rb +11 -0
- data/lib/netzke/basepack/window.rb +29 -0
- data/lib/netzke/basepack/window/javascripts/window.js +20 -0
- data/lib/netzke/basepack/wrap_lazy_loaded.rb +28 -0
- data/lib/netzke/basepack/wrapper.rb +28 -0
- data/lib/netzke/data_mapper.rb +18 -0
- data/lib/netzke/data_mapper/attributes.rb +273 -0
- data/lib/netzke/data_mapper/combobox_options.rb +11 -0
- data/lib/netzke/data_mapper/relation_extensions.rb +38 -0
- data/lib/netzke/sequel.rb +18 -0
- data/lib/netzke/sequel/attributes.rb +274 -0
- data/lib/netzke/sequel/combobox_options.rb +10 -0
- data/lib/netzke/sequel/relation_extensions.rb +40 -0
- data/lib/tasks/netzke_basepack_tasks.rake +4 -0
- data/locales/de.yml +79 -0
- data/locales/en.yml +79 -0
- data/netzke-basepack.gemspec +306 -0
- data/stylesheets/basepack.css +72 -0
- data/stylesheets/datetimefield.css +54 -0
- data/test/basepack_test_app/.gitignore +6 -0
- data/test/basepack_test_app/.rvmrc +1 -0
- data/test/basepack_test_app/Gemfile +59 -0
- data/test/basepack_test_app/Gemfile.lock +196 -0
- data/test/basepack_test_app/Guardfile +46 -0
- data/test/basepack_test_app/README +1 -0
- data/test/basepack_test_app/Rakefile +7 -0
- data/test/basepack_test_app/app/components/author_form.rb +32 -0
- data/test/basepack_test_app/app/components/author_grid.rb +3 -0
- data/test/basepack_test_app/app/components/book_form.rb +38 -0
- data/test/basepack_test_app/app/components/book_form_with_custom_fields.rb +21 -0
- data/test/basepack_test_app/app/components/book_form_with_defaults.rb +8 -0
- data/test/basepack_test_app/app/components/book_form_with_nested_attributes.rb +18 -0
- data/test/basepack_test_app/app/components/book_grid.rb +12 -0
- data/test/basepack_test_app/app/components/book_grid_filtering.rb +10 -0
- data/test/basepack_test_app/app/components/book_grid_loader.rb +24 -0
- data/test/basepack_test_app/app/components/book_grid_with_column_actions.rb +15 -0
- data/test/basepack_test_app/app/components/book_grid_with_custom_columns.rb +27 -0
- data/test/basepack_test_app/app/components/book_grid_with_default_values.rb +9 -0
- data/test/basepack_test_app/app/components/book_grid_with_extra_feedback.rb +8 -0
- data/test/basepack_test_app/app/components/book_grid_with_extra_filters.rb +14 -0
- data/test/basepack_test_app/app/components/book_grid_with_nested_attributes.rb +13 -0
- data/test/basepack_test_app/app/components/book_grid_with_overridden_columns.rb +15 -0
- data/test/basepack_test_app/app/components/book_grid_with_paging.rb +10 -0
- data/test/basepack_test_app/app/components/book_grid_with_persistence.rb +8 -0
- data/test/basepack_test_app/app/components/book_grid_with_scoped_authors.rb +8 -0
- data/test/basepack_test_app/app/components/book_grid_with_virtual_attributes.rb +21 -0
- data/test/basepack_test_app/app/components/book_paging_form_panel.rb +22 -0
- data/test/basepack_test_app/app/components/book_query_builder.rb +8 -0
- data/test/basepack_test_app/app/components/book_search_panel.rb +5 -0
- data/test/basepack_test_app/app/components/book_search_panel/javascripts/i18n_de.js +6 -0
- data/test/basepack_test_app/app/components/book_with_custom_primary_key_grid.rb +10 -0
- data/test/basepack_test_app/app/components/books_bound_to_author.rb +10 -0
- data/test/basepack_test_app/app/components/double_book_grid.rb +18 -0
- data/test/basepack_test_app/app/components/extras/book_presentation.rb +27 -0
- data/test/basepack_test_app/app/components/form_without_model.rb +21 -0
- data/test/basepack_test_app/app/components/generic_user_form.rb +12 -0
- data/test/basepack_test_app/app/components/lockable_book_form.rb +17 -0
- data/test/basepack_test_app/app/components/lockable_user_form.rb +7 -0
- data/test/basepack_test_app/app/components/paging_form_with_search.rb +40 -0
- data/test/basepack_test_app/app/components/simple_accordion.rb +11 -0
- data/test/basepack_test_app/app/components/simple_panel.rb +17 -0
- data/test/basepack_test_app/app/components/simple_tab_panel.rb +11 -0
- data/test/basepack_test_app/app/components/simple_window.rb +10 -0
- data/test/basepack_test_app/app/components/simple_wrapper.rb +7 -0
- data/test/basepack_test_app/app/components/some_accordion_panel.rb +22 -0
- data/test/basepack_test_app/app/components/some_auth_app.rb +32 -0
- data/test/basepack_test_app/app/components/some_border_layout.rb +28 -0
- data/test/basepack_test_app/app/components/some_simple_app.rb +35 -0
- data/test/basepack_test_app/app/components/some_tab_panel.rb +20 -0
- data/test/basepack_test_app/app/components/user_form.rb +25 -0
- data/test/basepack_test_app/app/components/user_form_with_default_fields.rb +8 -0
- data/test/basepack_test_app/app/components/user_grid.rb +8 -0
- data/test/basepack_test_app/app/components/user_grid_with_customized_form_fields.rb +18 -0
- data/test/basepack_test_app/app/components/window_component_loader.rb +27 -0
- data/test/basepack_test_app/app/controllers/application_controller.rb +9 -0
- data/test/basepack_test_app/app/controllers/components_controller.rb +10 -0
- data/test/basepack_test_app/app/controllers/welcome_controller.rb +9 -0
- data/test/basepack_test_app/app/helpers/application_helper.rb +8 -0
- data/test/basepack_test_app/app/helpers/embedded_components_helper.rb +2 -0
- data/test/basepack_test_app/app/models/address.rb +29 -0
- data/test/basepack_test_app/app/models/author.rb +38 -0
- data/test/basepack_test_app/app/models/book.rb +49 -0
- data/test/basepack_test_app/app/models/book_with_custom_primary_key.rb +26 -0
- data/test/basepack_test_app/app/models/role.rb +24 -0
- data/test/basepack_test_app/app/models/user.rb +29 -0
- data/test/basepack_test_app/app/presenters/forms/generic_user.rb +6 -0
- data/test/basepack_test_app/app/views/components/loadable_window.html.erb +9 -0
- data/test/basepack_test_app/app/views/components/simple_panel.html.erb +1 -0
- data/test/basepack_test_app/app/views/layouts/application.html.erb +12 -0
- data/test/basepack_test_app/app/views/layouts/components.html.erb +13 -0
- data/test/basepack_test_app/app/views/layouts/nested.html.erb +5 -0
- data/test/basepack_test_app/app/views/welcome/index.html.erb +10 -0
- data/test/basepack_test_app/config.ru +4 -0
- data/test/basepack_test_app/config/application.rb +57 -0
- data/test/basepack_test_app/config/boot.rb +13 -0
- data/test/basepack_test_app/config/cucumber.yml +8 -0
- data/test/basepack_test_app/config/database.yml.sample +41 -0
- data/test/basepack_test_app/config/database.yml.travis +15 -0
- data/test/basepack_test_app/config/environment.rb +6 -0
- data/test/basepack_test_app/config/environments/development.rb +22 -0
- data/test/basepack_test_app/config/environments/production.rb +49 -0
- data/test/basepack_test_app/config/environments/test.rb +35 -0
- data/test/basepack_test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/basepack_test_app/config/initializers/data_mapper_logging.rb +3 -0
- data/test/basepack_test_app/config/initializers/inflections.rb +10 -0
- data/test/basepack_test_app/config/initializers/mime_types.rb +5 -0
- data/test/basepack_test_app/config/initializers/netzke.rb +9 -0
- data/test/basepack_test_app/config/initializers/secret_token.rb +7 -0
- data/test/basepack_test_app/config/initializers/sequel.rb +26 -0
- data/test/basepack_test_app/config/initializers/session_store.rb +8 -0
- data/test/basepack_test_app/config/locales/de.yml +35 -0
- data/test/basepack_test_app/config/locales/es.yml +96 -0
- data/test/basepack_test_app/config/routes.rb +68 -0
- data/test/basepack_test_app/db/development_structure.sql +88 -0
- data/test/basepack_test_app/db/migrate/20100914104207_create_users.rb +15 -0
- data/test/basepack_test_app/db/migrate/20100914104236_create_roles.rb +13 -0
- data/test/basepack_test_app/db/migrate/20101026185816_create_authors.rb +14 -0
- data/test/basepack_test_app/db/migrate/20101026190021_create_books.rb +19 -0
- data/test/basepack_test_app/db/migrate/20110101143818_create_addresses.rb +17 -0
- data/test/basepack_test_app/db/migrate/20110213213050_create_netzke_component_states.rb +20 -0
- data/test/basepack_test_app/db/migrate/20110701070052_create_book_with_custom_primary_keys.rb +15 -0
- data/test/basepack_test_app/db/migrate/20110901114016_add_last_read_at_to_books.rb +9 -0
- data/test/basepack_test_app/db/migrate/20110909071740_add_published_on_to_books.rb +5 -0
- data/test/basepack_test_app/db/schema.rb +81 -0
- data/test/basepack_test_app/db/seeds.rb +44 -0
- data/test/basepack_test_app/features/accordion_panel.feature +12 -0
- data/test/basepack_test_app/features/components_in_view.feature +11 -0
- data/test/basepack_test_app/features/form_panel.feature +142 -0
- data/test/basepack_test_app/features/grid_panel.feature +277 -0
- data/test/basepack_test_app/features/grid_panel_filters.feature +73 -0
- data/test/basepack_test_app/features/grid_panel_with_custom_primary_key.feature +15 -0
- data/test/basepack_test_app/features/grid_sorting.feature +47 -0
- data/test/basepack_test_app/features/i18n.feature +18 -0
- data/test/basepack_test_app/features/nested_attributes.feature +26 -0
- data/test/basepack_test_app/features/paging_form_panel.feature +43 -0
- data/test/basepack_test_app/features/search_in_grid.feature +49 -0
- data/test/basepack_test_app/features/simple_app.feature +15 -0
- data/test/basepack_test_app/features/simple_panel.feature +11 -0
- data/test/basepack_test_app/features/step_definitions/accordion_steps.rb +5 -0
- data/test/basepack_test_app/features/step_definitions/ext_steps.rb +16 -0
- data/test/basepack_test_app/features/step_definitions/form_panel_steps.rb +46 -0
- data/test/basepack_test_app/features/step_definitions/generic_steps.rb +44 -0
- data/test/basepack_test_app/features/step_definitions/grid_panel_steps.rb +186 -0
- data/test/basepack_test_app/features/step_definitions/pickle_steps.rb +100 -0
- data/test/basepack_test_app/features/step_definitions/web_steps.rb +219 -0
- data/test/basepack_test_app/features/support/env.rb +81 -0
- data/test/basepack_test_app/features/support/paths.rb +65 -0
- data/test/basepack_test_app/features/support/pickle.rb +24 -0
- data/test/basepack_test_app/features/support/selectors.rb +39 -0
- data/test/basepack_test_app/features/tab_panel.feature +12 -0
- data/test/basepack_test_app/features/validations_in_grid.feature +13 -0
- data/test/basepack_test_app/features/virtual_attributes.feature +16 -0
- data/test/basepack_test_app/features/window.feature +11 -0
- data/test/basepack_test_app/lib/tasks/.gitkeep +0 -0
- data/test/basepack_test_app/lib/tasks/cucumber.rake +71 -0
- data/test/basepack_test_app/lib/tasks/travis.rake +7 -0
- data/test/basepack_test_app/public/404.html +26 -0
- data/test/basepack_test_app/public/422.html +26 -0
- data/test/basepack_test_app/public/500.html +26 -0
- data/test/basepack_test_app/public/favicon.ico +0 -0
- data/test/basepack_test_app/public/images/header-deco.gif +0 -0
- data/test/basepack_test_app/public/images/rails.png +0 -0
- data/test/basepack_test_app/public/javascripts/application.js +2 -0
- data/test/basepack_test_app/public/javascripts/controls.js +965 -0
- data/test/basepack_test_app/public/javascripts/dragdrop.js +974 -0
- data/test/basepack_test_app/public/javascripts/effects.js +1123 -0
- data/test/basepack_test_app/public/javascripts/prototype.js +6001 -0
- data/test/basepack_test_app/public/javascripts/rails.js +175 -0
- data/test/basepack_test_app/public/robots.txt +5 -0
- data/test/basepack_test_app/public/stylesheets/.gitkeep +0 -0
- data/test/basepack_test_app/script/cucumber +10 -0
- data/test/basepack_test_app/script/rails +6 -0
- data/test/basepack_test_app/spec/components/form_panel_spec.rb +53 -0
- data/test/basepack_test_app/spec/components/grid_panel_spec.rb +10 -0
- data/test/basepack_test_app/spec/data_adapter/adapter_spec.rb +68 -0
- data/test/basepack_test_app/spec/data_adapter/attributes_spec.rb +56 -0
- data/test/basepack_test_app/spec/data_adapter/relation_extensions_spec.rb +125 -0
- data/test/basepack_test_app/spec/factories.rb +28 -0
- data/test/basepack_test_app/spec/spec_helper.rb +39 -0
- data/test/basepack_test_app/test/performance/browsing_test.rb +9 -0
- data/test/basepack_test_app/test/test_helper.rb +13 -0
- data/test/basepack_test_app/vendor/plugins/.gitkeep +0 -0
- data/test/console_with_fixtures.rb +4 -0
- data/test/fixtures/books.yml +11 -0
- data/test/fixtures/categories.yml +7 -0
- data/test/fixtures/cities.yml +21 -0
- data/test/fixtures/continents.yml +7 -0
- data/test/fixtures/countries.yml +9 -0
- data/test/fixtures/genres.yml +9 -0
- data/test/fixtures/roles.yml +8 -0
- data/test/fixtures/users.yml +11 -0
- data/test/schema.rb +10 -0
- data/test/test_helper.rb +21 -0
- data/test/unit/accordion_panel_test.rb +20 -0
- data/test/unit/active_record_basepack_test.rb +54 -0
- data/test/unit/fields_configuration_test.rb +18 -0
- data/test/unit/grid_panel_test.rb +52 -0
- data/test/unit/netzke_basepack_test.rb +4 -0
- data/test/unit/tab_panel_test.rb +21 -0
- data/uninstall.rb +1 -0
- metadata +332 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# this file generated by script/generate pickle
|
|
2
|
+
|
|
3
|
+
# create a model
|
|
4
|
+
Given(/^#{capture_model} exists?(?: with #{capture_fields})?$/) do |name, fields|
|
|
5
|
+
create_model(name, fields)
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
# create n models
|
|
9
|
+
Given(/^(\d+) #{capture_plural_factory} exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
|
|
10
|
+
count.to_i.times { create_model(plural_factory.singularize, fields) }
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
# create models from a table
|
|
14
|
+
Given(/^the following #{capture_plural_factory} exists?:?$/) do |plural_factory, table|
|
|
15
|
+
create_models_from_table(plural_factory, table)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# find a model
|
|
19
|
+
Then(/^#{capture_model} should exist(?: with #{capture_fields})?$/) do |name, fields|
|
|
20
|
+
find_model!(name, fields)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
# not find a model
|
|
24
|
+
Then(/^#{capture_model} should not exist(?: with #{capture_fields})?$/) do |name, fields|
|
|
25
|
+
find_model(name, fields).should be_nil
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# find models with a table
|
|
29
|
+
Then(/^the following #{capture_plural_factory} should exists?:?$/) do |plural_factory, table|
|
|
30
|
+
find_models_from_table(plural_factory, table).should_not be_any(&:nil?)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# find exactly n models
|
|
34
|
+
Then(/^(\d+) #{capture_plural_factory} should exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
|
|
35
|
+
find_models(plural_factory.singularize, fields).size.should == count.to_i
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# assert equality of models
|
|
39
|
+
Then(/^#{capture_model} should be #{capture_model}$/) do |a, b|
|
|
40
|
+
model!(a).should == model!(b)
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
# assert model is in another model's has_many assoc
|
|
44
|
+
Then(/^#{capture_model} should be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
|
|
45
|
+
model!(owner).send(association).should include(model!(target))
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# assert model is not in another model's has_many assoc
|
|
49
|
+
Then(/^#{capture_model} should not be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
|
|
50
|
+
model!(owner).send(association).should_not include(model!(target))
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# assert model is another model's has_one/belongs_to assoc
|
|
54
|
+
Then(/^#{capture_model} should be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
|
|
55
|
+
model!(owner).send(association).should == model!(target)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# assert model is not another model's has_one/belongs_to assoc
|
|
59
|
+
Then(/^#{capture_model} should not be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
|
|
60
|
+
model!(owner).send(association).should_not == model!(target)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# assert model.predicate?
|
|
64
|
+
Then(/^#{capture_model} should (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
|
|
65
|
+
if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
|
|
66
|
+
model!(name).should send("have_#{predicate.gsub(' ', '_')}")
|
|
67
|
+
else
|
|
68
|
+
model!(name).should send("be_#{predicate.gsub(' ', '_')}")
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# assert not model.predicate?
|
|
73
|
+
Then(/^#{capture_model} should not (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
|
|
74
|
+
if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
|
|
75
|
+
model!(name).should_not send("have_#{predicate.gsub(' ', '_')}")
|
|
76
|
+
else
|
|
77
|
+
model!(name).should_not send("be_#{predicate.gsub(' ', '_')}")
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# model.attribute.should eql(value)
|
|
82
|
+
# model.attribute.should_not eql(value)
|
|
83
|
+
Then(/^#{capture_model}'s (\w+) (should(?: not)?) be #{capture_value}$/) do |name, attribute, expectation, expected|
|
|
84
|
+
actual_value = model(name).send(attribute)
|
|
85
|
+
expectation = expectation.gsub(' ', '_')
|
|
86
|
+
|
|
87
|
+
case expected
|
|
88
|
+
when 'nil', 'true', 'false'
|
|
89
|
+
actual_value.send(expectation, send("be_#{expected}"))
|
|
90
|
+
when /^[+-]?[0-9_]+(\.\d+)?$/
|
|
91
|
+
actual_value.send(expectation, eql(expected.to_f))
|
|
92
|
+
else
|
|
93
|
+
actual_value.to_s.send(expectation, eql(eval(expected)))
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# assert size of association
|
|
98
|
+
Then /^#{capture_model} should have (\d+) (\w+)$/ do |name, size, association|
|
|
99
|
+
model!(name).send(association).size.should == size.to_i
|
|
100
|
+
end
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
|
2
|
+
# It is recommended to regenerate this file in the future when you upgrade to a
|
|
3
|
+
# newer version of cucumber-rails. Consider adding your own code to a new file
|
|
4
|
+
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
|
5
|
+
# files.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
require 'uri'
|
|
9
|
+
require 'cgi'
|
|
10
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
|
11
|
+
|
|
12
|
+
module WithinHelpers
|
|
13
|
+
def with_scope(locator)
|
|
14
|
+
locator ? within(locator) { yield } : yield
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
World(WithinHelpers)
|
|
18
|
+
|
|
19
|
+
Given /^(?:|I )am on (.+)$/ do |page_name|
|
|
20
|
+
visit path_to(page_name)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
When /^(?:|I )go to (.+)$/ do |page_name|
|
|
24
|
+
visit path_to(page_name)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
When /^(?:|I )press "([^"]*)"(?: within "([^"]*)")?$/ do |button, selector|
|
|
28
|
+
with_scope(selector) do
|
|
29
|
+
click_button(button)
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
When /^(?:|I )follow "([^"]*)"(?: within "([^"]*)")?$/ do |link, selector|
|
|
34
|
+
with_scope(selector) do
|
|
35
|
+
click_link(link)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
When /^(?:|I )fill in "([^"]*)" with "([^"]*)"(?: within "([^"]*)")?$/ do |field, value, selector|
|
|
40
|
+
with_scope(selector) do
|
|
41
|
+
fill_in(field, :with => value)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
When /^(?:|I )fill in "([^"]*)" for "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
|
|
46
|
+
with_scope(selector) do
|
|
47
|
+
fill_in(field, :with => value)
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# Use this to fill in an entire form with data from a table. Example:
|
|
52
|
+
#
|
|
53
|
+
# When I fill in the following:
|
|
54
|
+
# | Account Number | 5002 |
|
|
55
|
+
# | Expiry date | 2009-11-01 |
|
|
56
|
+
# | Note | Nice guy |
|
|
57
|
+
# | Wants Email? | |
|
|
58
|
+
#
|
|
59
|
+
# TODO: Add support for checkbox, select og option
|
|
60
|
+
# based on naming conventions.
|
|
61
|
+
#
|
|
62
|
+
When /^(?:|I )fill in the following(?: within "([^"]*)")?:$/ do |selector, fields|
|
|
63
|
+
with_scope(selector) do
|
|
64
|
+
fields.rows_hash.each do |name, value|
|
|
65
|
+
When %{I fill in "#{name}" with "#{value}"}
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
When /^(?:|I )select "([^"]*)" from "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
|
|
71
|
+
with_scope(selector) do
|
|
72
|
+
select(value, :from => field)
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
When /^(?:|I )check "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
77
|
+
with_scope(selector) do
|
|
78
|
+
check(field)
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
When /^(?:|I )uncheck "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
83
|
+
with_scope(selector) do
|
|
84
|
+
uncheck(field)
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
When /^(?:|I )choose "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
89
|
+
with_scope(selector) do
|
|
90
|
+
choose(field)
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"(?: within "([^"]*)")?$/ do |path, field, selector|
|
|
95
|
+
with_scope(selector) do
|
|
96
|
+
attach_file(field, path)
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
Then /^(?:|I )should see JSON:$/ do |expected_json|
|
|
101
|
+
require 'json'
|
|
102
|
+
expected = JSON.pretty_generate(JSON.parse(expected_json))
|
|
103
|
+
actual = JSON.pretty_generate(JSON.parse(response.body))
|
|
104
|
+
expected.should == actual
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
Then /^(?:|I )should see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
|
|
108
|
+
with_scope(selector) do
|
|
109
|
+
if page.respond_to? :should
|
|
110
|
+
page.should have_content(text)
|
|
111
|
+
else
|
|
112
|
+
assert page.has_content?(text)
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
Then /^(?:|I )should see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
|
|
118
|
+
regexp = Regexp.new(regexp)
|
|
119
|
+
with_scope(selector) do
|
|
120
|
+
if page.respond_to? :should
|
|
121
|
+
page.should have_xpath('//*', :text => regexp)
|
|
122
|
+
else
|
|
123
|
+
assert page.has_xpath?('//*', :text => regexp)
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
Then /^(?:|I )should not see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
|
|
129
|
+
with_scope(selector) do
|
|
130
|
+
if page.respond_to? :should
|
|
131
|
+
page.should have_no_content(text)
|
|
132
|
+
else
|
|
133
|
+
assert page.has_no_content?(text)
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
Then /^(?:|I )should not see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
|
|
139
|
+
regexp = Regexp.new(regexp)
|
|
140
|
+
with_scope(selector) do
|
|
141
|
+
if page.respond_to? :should
|
|
142
|
+
page.should have_no_xpath('//*', :text => regexp)
|
|
143
|
+
else
|
|
144
|
+
assert page.has_no_xpath?('//*', :text => regexp)
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
Then /^the "([^"]*)" field(?: within "([^"]*)")? should contain "([^"]*)"$/ do |field, selector, value|
|
|
150
|
+
with_scope(selector) do
|
|
151
|
+
field = find_field(field)
|
|
152
|
+
field_value = (field.tag_name == 'textarea') ? field.text : field.value
|
|
153
|
+
if field_value.respond_to? :should
|
|
154
|
+
field_value.should =~ /#{value}/
|
|
155
|
+
else
|
|
156
|
+
assert_match(/#{value}/, field_value)
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
Then /^the "([^"]*)" field(?: within "([^"]*)")? should not contain "([^"]*)"$/ do |field, selector, value|
|
|
162
|
+
with_scope(selector) do
|
|
163
|
+
field = find_field(field)
|
|
164
|
+
field_value = (field.tag_name == 'textarea') ? field.text : field.value
|
|
165
|
+
if field_value.respond_to? :should_not
|
|
166
|
+
field_value.should_not =~ /#{value}/
|
|
167
|
+
else
|
|
168
|
+
assert_no_match(/#{value}/, field_value)
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should be checked$/ do |label, selector|
|
|
174
|
+
with_scope(selector) do
|
|
175
|
+
field_checked = find_field(label)['checked']
|
|
176
|
+
if field_checked.respond_to? :should
|
|
177
|
+
field_checked.should be_true
|
|
178
|
+
else
|
|
179
|
+
assert field_checked
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should not be checked$/ do |label, selector|
|
|
185
|
+
with_scope(selector) do
|
|
186
|
+
field_checked = find_field(label)['checked']
|
|
187
|
+
if field_checked.respond_to? :should
|
|
188
|
+
field_checked.should be_false
|
|
189
|
+
else
|
|
190
|
+
assert !field_checked
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
Then /^(?:|I )should be on (.+)$/ do |page_name|
|
|
196
|
+
current_path = URI.parse(current_url).path
|
|
197
|
+
if current_path.respond_to? :should
|
|
198
|
+
current_path.should == path_to(page_name)
|
|
199
|
+
else
|
|
200
|
+
assert_equal path_to(page_name), current_path
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
Then /^(?:|I )should have the following query string:$/ do |expected_pairs|
|
|
205
|
+
query = URI.parse(current_url).query
|
|
206
|
+
actual_params = query ? CGI.parse(query) : {}
|
|
207
|
+
expected_params = {}
|
|
208
|
+
expected_pairs.rows_hash.each_pair{|k,v| expected_params[k] = v.split(',')}
|
|
209
|
+
|
|
210
|
+
if actual_params.respond_to? :should
|
|
211
|
+
actual_params.should == expected_params
|
|
212
|
+
else
|
|
213
|
+
assert_equal expected_params, actual_params
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
Then /^show me the page$/ do
|
|
218
|
+
save_and_open_page
|
|
219
|
+
end
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
|
2
|
+
# It is recommended to regenerate this file in the future when you upgrade to a
|
|
3
|
+
# newer version of cucumber-rails. Consider adding your own code to a new file
|
|
4
|
+
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
|
5
|
+
# files.
|
|
6
|
+
|
|
7
|
+
ENV["RAILS_ENV"] ||= "test"
|
|
8
|
+
|
|
9
|
+
# Each time recreate test database with migrations
|
|
10
|
+
# db_file = File.dirname(__FILE__) + "/../../test/basepack_test_app/db/test.sqlite3"
|
|
11
|
+
# File.delete(db_file) if File.exists?(db_file)
|
|
12
|
+
# ActiveRecord::Migrator.migrate(File.dirname(__FILE__) + "/../test/basepack_test_app/db/migrate")
|
|
13
|
+
|
|
14
|
+
# require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
|
|
15
|
+
# require 'cucumber/rails/rspec'
|
|
16
|
+
# require 'cucumber/rails/world'
|
|
17
|
+
# require 'cucumber/rails/active_record'
|
|
18
|
+
require 'cucumber/rails'
|
|
19
|
+
# require 'cucumber/web/tableish'
|
|
20
|
+
|
|
21
|
+
require 'capybara/rails'
|
|
22
|
+
require 'capybara/cucumber'
|
|
23
|
+
require 'capybara/session'
|
|
24
|
+
# require 'cucumber/rails/capybara_javascript_emulation' # Lets you click links with onclick javascript handlers without using @culerity or @javascript
|
|
25
|
+
|
|
26
|
+
# resynchronize after ajax call
|
|
27
|
+
# from README at (https://github.com/jnicklas/capybara)
|
|
28
|
+
Capybara.register_driver :selenium do |app|
|
|
29
|
+
Capybara::Selenium::Driver.new(app, {:resynchronize => true } )
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# wait a bit longer (default 2s)
|
|
33
|
+
Capybara.default_wait_time = 5
|
|
34
|
+
|
|
35
|
+
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
|
36
|
+
# order to ease the transition to Capybara we set the default here. If you'd
|
|
37
|
+
# prefer to use XPath just remove this line and adjust any selectors in your
|
|
38
|
+
# steps to use the XPath syntax.
|
|
39
|
+
Capybara.default_selector = :css
|
|
40
|
+
|
|
41
|
+
# If you set this to false, any error raised from within your app will bubble
|
|
42
|
+
# up to your step definition and out to cucumber unless you catch it somewhere
|
|
43
|
+
# on the way. You can make Rails rescue errors and render error pages on a
|
|
44
|
+
# per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
|
|
45
|
+
#
|
|
46
|
+
# If you set this to true, Rails will rescue all errors and render error
|
|
47
|
+
# pages, more or less in the same way your application would behave in the
|
|
48
|
+
# default production environment. It's not recommended to do this for all
|
|
49
|
+
# of your scenarios, as this makes it hard to discover errors in your application.
|
|
50
|
+
ActionController::Base.allow_rescue = false
|
|
51
|
+
|
|
52
|
+
# If you set this to true, each scenario will run in a database transaction.
|
|
53
|
+
# You can still turn off transactions on a per-scenario basis, simply tagging
|
|
54
|
+
# a feature or scenario with the @no-txn tag. If you are using Capybara,
|
|
55
|
+
# tagging with @culerity or @javascript will also turn transactions off.
|
|
56
|
+
#
|
|
57
|
+
# If you set this to false, transactions will be off for all scenarios,
|
|
58
|
+
# regardless of whether you use @no-txn or not.
|
|
59
|
+
#
|
|
60
|
+
# Beware that turning transactions off will leave data in your database
|
|
61
|
+
# after each scenario, which can lead to hard-to-debug failures in
|
|
62
|
+
# subsequent scenarios. If you do this, we recommend you create a Before
|
|
63
|
+
# block that will explicitly put your database in a known state.
|
|
64
|
+
# How to clean your database when transactions are turned off. See
|
|
65
|
+
# http://github.com/bmabey/database_cleaner for more info.
|
|
66
|
+
if defined?(ActiveRecord::Base)
|
|
67
|
+
begin
|
|
68
|
+
require 'database_cleaner'
|
|
69
|
+
DatabaseCleaner.strategy = :truncation
|
|
70
|
+
Cucumber::Rails::World.use_transactional_fixtures = true
|
|
71
|
+
rescue LoadError => ignore_if_database_cleaner_not_present
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
if defined?(DataMapper::Resource)
|
|
76
|
+
begin
|
|
77
|
+
require 'database_cleaner'
|
|
78
|
+
DatabaseCleaner[:data_mapper].strategy = :truncation
|
|
79
|
+
rescue LoadError => ignore_if_database_cleaner_not_present
|
|
80
|
+
end
|
|
81
|
+
end
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
module NavigationHelpers
|
|
2
|
+
# Maps a name to a path. Used by the
|
|
3
|
+
#
|
|
4
|
+
# When /^I go to (.+)$/ do |page_name|
|
|
5
|
+
#
|
|
6
|
+
# step definition in web_steps.rb
|
|
7
|
+
#
|
|
8
|
+
def path_to(page_name)
|
|
9
|
+
case page_name
|
|
10
|
+
|
|
11
|
+
when /the home\s?page/
|
|
12
|
+
'/'
|
|
13
|
+
|
|
14
|
+
# Add more mappings here.
|
|
15
|
+
# Here is an example that pulls values out of the Regexp:
|
|
16
|
+
#
|
|
17
|
+
# when /^(.*)'s profile page$/i
|
|
18
|
+
# user_profile_path(User.find_by_login($1))
|
|
19
|
+
|
|
20
|
+
# the following are examples using path_to_pickle
|
|
21
|
+
|
|
22
|
+
when /^#{capture_model}(?:'s)? page$/ # eg. the forum's page
|
|
23
|
+
path_to_pickle $1
|
|
24
|
+
|
|
25
|
+
when /^#{capture_model}(?:'s)? #{capture_model}(?:'s)? page$/ # eg. the forum's post's page
|
|
26
|
+
path_to_pickle $1, $2
|
|
27
|
+
|
|
28
|
+
when /^#{capture_model}(?:'s)? #{capture_model}'s (.+?) page$/ # eg. the forum's post's comments page
|
|
29
|
+
path_to_pickle $1, $2, :extra => $3 # or the forum's post's edit page
|
|
30
|
+
|
|
31
|
+
when /^#{capture_model}(?:'s)? (.+?) page$/ # eg. the forum's posts page
|
|
32
|
+
path_to_pickle $1, :extra => $2 # or the forum's edit page
|
|
33
|
+
|
|
34
|
+
when /the simple panel page/
|
|
35
|
+
'/panel/simple'
|
|
36
|
+
|
|
37
|
+
when /the server caller page/
|
|
38
|
+
'/panel/server_caller'
|
|
39
|
+
|
|
40
|
+
when /the component loader page/
|
|
41
|
+
'/panel/component_loader'
|
|
42
|
+
|
|
43
|
+
when /the "(.*)" view/
|
|
44
|
+
embedded_components_path(:action => $1.gsub(" ", "_"))
|
|
45
|
+
|
|
46
|
+
when /the (.*) test page/
|
|
47
|
+
components_path(:component => $1)
|
|
48
|
+
|
|
49
|
+
when /the "(.+)" version of the (.*) page/
|
|
50
|
+
components_path(:component => $2, :locale => $1)
|
|
51
|
+
|
|
52
|
+
else
|
|
53
|
+
begin
|
|
54
|
+
page_name =~ /the (.*) page/
|
|
55
|
+
path_components = $1.split(/\s+/)
|
|
56
|
+
self.send(path_components.push('path').join('_').to_sym)
|
|
57
|
+
rescue Object => e
|
|
58
|
+
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
|
59
|
+
"Now, go and add a mapping in #{__FILE__}"
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
World(NavigationHelpers)
|