admin_assistant 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +16 -0
- data/Rakefile +34 -6
- data/VERSION +1 -0
- data/admin_assistant.gemspec +440 -0
- data/doc/img/blog_posts-index.png +0 -0
- data/install.rb +25 -4
- data/lib/admin_assistant/active_record_column.rb +133 -45
- data/lib/admin_assistant/association_target.rb +16 -3
- data/lib/admin_assistant/belongs_to_column.rb +18 -10
- data/lib/admin_assistant/builder.rb +67 -30
- data/lib/admin_assistant/column.rb +153 -71
- data/lib/admin_assistant/date_time_range_end_point_selector.rb +340 -0
- data/lib/admin_assistant/default_search_column.rb +3 -7
- data/lib/admin_assistant/form_view.rb +114 -10
- data/lib/admin_assistant/has_many_column.rb +56 -0
- data/lib/admin_assistant/index.rb +220 -83
- data/lib/admin_assistant/polymorphic_belongs_to_column.rb +1 -1
- data/lib/admin_assistant/request/base.rb +196 -67
- data/lib/admin_assistant/request/create.rb +55 -7
- data/lib/admin_assistant/request/edit.rb +1 -2
- data/lib/admin_assistant/request/index.rb +16 -9
- data/lib/admin_assistant/request/new.rb +19 -7
- data/lib/admin_assistant/request/update.rb +28 -13
- data/lib/admin_assistant/search.rb +17 -2
- data/lib/admin_assistant/virtual_column.rb +15 -7
- data/lib/admin_assistant.rb +101 -81
- data/lib/javascripts/admin_assistant.js +1 -1
- data/lib/stylesheets/activescaffold.css +6 -1
- data/lib/stylesheets/default.css +17 -0
- data/lib/views/form.html.erb +7 -3
- data/lib/views/index.html.erb +13 -8
- data/lib/views/multi_form.html.erb +71 -0
- data/lib/views/show.html.erb +4 -4
- data/test_rails_app/README +256 -0
- data/test_rails_app/Rakefile +13 -0
- data/test_rails_app/app/controllers/admin/appointments2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/appointments_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/test_rails_app/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/test_rails_app/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/test_rails_app/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/test_rails_app/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/blog_posts_controller.rb +8 -0
- data/test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/test_rails_app/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/comments2_controller.rb +14 -0
- data/test_rails_app/app/controllers/admin/comments_controller.rb +12 -0
- data/test_rails_app/app/controllers/admin/file_column_images2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/file_column_images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/images2_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/test_rails_app/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/product_categories_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/products2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/products_controller.rb +31 -0
- data/test_rails_app/app/controllers/admin/television_airings_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/users2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/users_controller.rb +63 -0
- data/test_rails_app/app/controllers/application.rb +16 -0
- data/test_rails_app/app/controllers/application_controller.rb +16 -0
- data/test_rails_app/app/controllers/blog_posts_controller.rb +5 -0
- data/test_rails_app/app/helpers/admin/appointments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/appointments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/test_rails_app/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts6_helper.rb +16 -0
- data/test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/test_rails_app/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/images2_helper.rb +8 -0
- data/test_rails_app/app/helpers/admin/images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/products2_helper.rb +3 -0
- data/test_rails_app/app/helpers/admin/products_helper.rb +6 -0
- data/test_rails_app/app/helpers/admin/television_airings_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users_helper.rb +25 -0
- data/test_rails_app/app/helpers/application_helper.rb +3 -0
- data/test_rails_app/app/helpers/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/models/appointment.rb +5 -0
- data/test_rails_app/app/models/blog_post.rb +14 -0
- data/test_rails_app/app/models/blog_post_tag.rb +6 -0
- data/test_rails_app/app/models/bookmark.rb +6 -0
- data/test_rails_app/app/models/comment.rb +4 -0
- data/test_rails_app/app/models/file_column_image.rb +3 -0
- data/test_rails_app/app/models/image.rb +3 -0
- data/test_rails_app/app/models/not_migrated_yet.rb +2 -0
- data/test_rails_app/app/models/product.rb +7 -0
- data/test_rails_app/app/models/product_category.rb +9 -0
- data/test_rails_app/app/models/tag.rb +4 -0
- data/test_rails_app/app/models/television_airing.rb +3 -0
- data/test_rails_app/app/models/television_time_slot.rb +11 -0
- data/test_rails_app/app/models/user.rb +14 -0
- data/test_rails_app/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/test_rails_app/app/views/admin/products/_name_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_percent_off_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_price_input.html.erb +10 -0
- data/test_rails_app/app/views/blog_posts/show.html.erb +13 -0
- data/test_rails_app/app/views/layouts/admin.html.erb +31 -0
- data/test_rails_app/config/boot.rb +109 -0
- data/test_rails_app/config/database.yml +28 -0
- data/test_rails_app/config/environment.rb +78 -0
- data/test_rails_app/config/environments/development.rb +17 -0
- data/test_rails_app/config/environments/production.rb +24 -0
- data/test_rails_app/config/environments/test.rb +24 -0
- data/test_rails_app/config/initializers/inflections.rb +10 -0
- data/test_rails_app/config/initializers/mime_types.rb +5 -0
- data/test_rails_app/config/initializers/new_rails_defaults.rb +17 -0
- data/test_rails_app/config/locales/en.yml +5 -0
- data/test_rails_app/config/routes.rb +43 -0
- data/test_rails_app/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090221220917_create_tags.rb +13 -0
- data/test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090301191722_create_images.rb +16 -0
- data/test_rails_app/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/test_rails_app/db/migrate/20090309193635_create_products.rb +14 -0
- data/test_rails_app/db/migrate/20090309203056_create_comments.rb +15 -0
- data/test_rails_app/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/test_rails_app/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/test_rails_app/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/test_rails_app/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/test_rails_app/doc/README_FOR_APP +5 -0
- data/test_rails_app/lib/tasks/rspec.rake +163 -0
- data/test_rails_app/public/404.html +30 -0
- data/test_rails_app/public/422.html +30 -0
- data/test_rails_app/public/500.html +33 -0
- data/test_rails_app/public/dispatch.cgi +10 -0
- data/test_rails_app/public/dispatch.fcgi +24 -0
- data/test_rails_app/public/dispatch.rb +10 -0
- data/test_rails_app/public/favicon.ico +0 -0
- data/test_rails_app/public/images/rails.png +0 -0
- data/test_rails_app/public/index.html +274 -0
- data/test_rails_app/public/javascripts/application.js +2 -0
- data/test_rails_app/public/javascripts/controls.js +963 -0
- data/test_rails_app/public/javascripts/dragdrop.js +973 -0
- data/test_rails_app/public/javascripts/effects.js +1128 -0
- data/test_rails_app/public/javascripts/prototype.js +4320 -0
- data/test_rails_app/public/robots.txt +5 -0
- data/test_rails_app/public/stylesheets/admin.css +3 -0
- data/test_rails_app/public/stylesheets/scaffold.css +54 -0
- data/test_rails_app/script/about +4 -0
- data/test_rails_app/script/autospec +5 -0
- data/test_rails_app/script/console +3 -0
- data/test_rails_app/script/dbconsole +3 -0
- data/test_rails_app/script/destroy +3 -0
- data/test_rails_app/script/generate +3 -0
- data/test_rails_app/script/performance/benchmarker +3 -0
- data/test_rails_app/script/performance/profiler +3 -0
- data/test_rails_app/script/performance/request +3 -0
- data/test_rails_app/script/plugin +3 -0
- data/test_rails_app/script/populate_tables.rb +49 -0
- data/test_rails_app/script/process/inspector +3 -0
- data/test_rails_app/script/process/reaper +3 -0
- data/test_rails_app/script/process/spawner +3 -0
- data/test_rails_app/script/runner +3 -0
- data/test_rails_app/script/server +3 -0
- data/test_rails_app/script/spec +5 -0
- data/test_rails_app/script/spec_server +125 -0
- data/test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb +88 -0
- data/test_rails_app/spec/controllers/admin/appointments_controller_spec.rb +419 -0
- data/test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb +1021 -0
- data/test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb +532 -0
- data/test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb +231 -0
- data/test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb +77 -0
- data/test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb +49 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb +987 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb +99 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb +94 -0
- data/test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb +505 -0
- data/test_rails_app/spec/controllers/admin/comments2_controller_spec.rb +70 -0
- data/test_rails_app/spec/controllers/admin/comments_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb +25 -0
- data/test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/images2_controller_spec.rb +44 -0
- data/test_rails_app/spec/controllers/admin/images_controller_spec.rb +97 -0
- data/test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb +21 -0
- data/test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb +215 -0
- data/test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb +19 -0
- data/test_rails_app/spec/controllers/admin/products2_controller_spec.rb +203 -0
- data/test_rails_app/spec/controllers/admin/products_controller_spec.rb +255 -0
- data/test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb +32 -0
- data/test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/users2_controller_spec.rb +65 -0
- data/test_rails_app/spec/controllers/admin/users_controller_spec.rb +344 -0
- data/test_rails_app/spec/controllers/blog_posts_controller_spec.rb +13 -0
- data/test_rails_app/spec/data/ruby_throated.jpg +0 -0
- data/test_rails_app/spec/data/tweenbot.jpg +0 -0
- data/test_rails_app/spec/fixtures/appointments.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_post_tags.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_posts.yml +7 -0
- data/test_rails_app/spec/fixtures/bookmarks.yml +11 -0
- data/test_rails_app/spec/fixtures/comments.yml +11 -0
- data/test_rails_app/spec/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/spec/fixtures/images.yml +7 -0
- data/test_rails_app/spec/fixtures/not_migrated_yets.yml +7 -0
- data/test_rails_app/spec/fixtures/product_categories.yml +7 -0
- data/test_rails_app/spec/fixtures/products.yml +9 -0
- data/test_rails_app/spec/fixtures/tags.yml +7 -0
- data/test_rails_app/spec/fixtures/television_airings.yml +11 -0
- data/test_rails_app/spec/fixtures/television_time_slots.yml +7 -0
- data/test_rails_app/spec/fixtures/users.yml +9 -0
- data/test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/appointments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/models/appointment_spec.rb +16 -0
- data/test_rails_app/spec/models/blog_post_spec.rb +13 -0
- data/test_rails_app/spec/models/blog_post_tag_spec.rb +14 -0
- data/test_rails_app/spec/models/bookmark_spec.rb +15 -0
- data/test_rails_app/spec/models/comment_spec.rb +15 -0
- data/test_rails_app/spec/models/file_column_image_spec.rb +12 -0
- data/test_rails_app/spec/models/image_spec.rb +12 -0
- data/test_rails_app/spec/models/not_migrated_yet_spec.rb +15 -0
- data/test_rails_app/spec/models/product_category_spec.rb +15 -0
- data/test_rails_app/spec/models/product_spec.rb +14 -0
- data/test_rails_app/spec/models/tag_spec.rb +13 -0
- data/test_rails_app/spec/models/television_airing_spec.rb +15 -0
- data/test_rails_app/spec/models/television_time_slot_spec.rb +13 -0
- data/test_rails_app/spec/models/user_spec.rb +14 -0
- data/test_rails_app/spec/rcov.opts +2 -0
- data/test_rails_app/spec/spec.opts +4 -0
- data/test_rails_app/spec/spec_helper.rb +88 -0
- data/test_rails_app/spec/spec_or_test_helper.rb +49 -0
- data/test_rails_app/test/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/test/integration/admin_blog_posts2_integration_test.rb +16 -0
- data/test_rails_app/test/integration/admin_blog_posts5_integration_test.rb +19 -0
- data/test_rails_app/test/integration/admin_blog_posts_integration_test.rb +25 -0
- data/test_rails_app/test/test_helper.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/CHANGELOG +69 -0
- data/test_rails_app/vendor/plugins/file_column/README +54 -0
- data/test_rails_app/vendor/plugins/file_column/Rakefile +36 -0
- data/test_rails_app/vendor/plugins/file_column/TODO +6 -0
- data/test_rails_app/vendor/plugins/file_column/init.rb +13 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column.rb +723 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_compat.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
- data/test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
- data/test_rails_app/vendor/plugins/file_column/lib/test_case.rb +124 -0
- data/test_rails_app/vendor/plugins/file_column/lib/validations.rb +112 -0
- data/test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
- data/test_rails_app/vendor/plugins/file_column/test/connection.rb +17 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_test.rb +650 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_test.rb +380 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
- data/vendor/ar_query/ar_query.gemspec +16 -0
- data/website/_layouts/api.html +39 -0
- data/website/_layouts/default.html +34 -0
- data/website/api/core.markdown +106 -0
- data/website/api/destroy.markdown +25 -0
- data/website/api/form.markdown +291 -0
- data/website/api/idx.markdown +286 -0
- data/website/api/index.markdown +147 -0
- data/website/api/search.markdown +108 -0
- data/website/api/show.markdown +22 -0
- data/website/community.markdown +27 -0
- data/website/css/lightbox.css +29 -0
- data/website/css/main.css +70 -0
- data/website/design_principles.markdown +50 -0
- data/website/getting_started.markdown +10 -0
- data/website/img/blog_posts-index.png +0 -0
- data/website/img/blog_posts-search.png +0 -0
- data/website/img/lightbox/bullet.gif +0 -0
- data/website/img/lightbox/close.gif +0 -0
- data/website/img/lightbox/closelabel.gif +0 -0
- data/website/img/lightbox/donate-button.gif +0 -0
- data/website/img/lightbox/download-icon.gif +0 -0
- data/website/img/lightbox/image-1.jpg +0 -0
- data/website/img/lightbox/loading.gif +0 -0
- data/website/img/lightbox/nextlabel.gif +0 -0
- data/website/img/lightbox/prevlabel.gif +0 -0
- data/website/img/lightbox/thumb-1.jpg +0 -0
- data/website/img/screen1-thumb.png +0 -0
- data/website/img/screen1.png +0 -0
- data/website/img/screen10-thumb.png +0 -0
- data/website/img/screen10.png +0 -0
- data/website/img/screen11-thumb.png +0 -0
- data/website/img/screen11.png +0 -0
- data/website/img/screen2-thumb.png +0 -0
- data/website/img/screen2.png +0 -0
- data/website/img/screen3-thumb.png +0 -0
- data/website/img/screen3.png +0 -0
- data/website/img/screen4-thumb.png +0 -0
- data/website/img/screen4.png +0 -0
- data/website/img/screen5-thumb.png +0 -0
- data/website/img/screen5.png +0 -0
- data/website/img/screen6-thumb.png +0 -0
- data/website/img/screen6.png +0 -0
- data/website/img/screen7-thumb.png +0 -0
- data/website/img/screen7.png +0 -0
- data/website/img/screen8-thumb.png +0 -0
- data/website/img/screen8.png +0 -0
- data/website/img/screen9-thumb.png +0 -0
- data/website/img/screen9.png +0 -0
- data/website/img/user-form.png +0 -0
- data/website/index.markdown +35 -0
- data/website/js/builder.js +136 -0
- data/website/js/effects.js +1122 -0
- data/website/js/lightbox.js +497 -0
- data/website/js/prototype.js +4221 -0
- data/website/js/scriptaculous.js +58 -0
- data/website/quick_start.markdown +44 -0
- data/website/screenshots.markdown +27 -0
- data/website/tutorial.markdown +56 -0
- metadata +391 -23
@@ -0,0 +1,70 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::Comments2Controller do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
@user = User.find_or_create_by_username 'soren'
|
8
|
+
@published_blog_post = BlogPost.create!(
|
9
|
+
:title => 'published', :user => @user, :published_at => Time.now.utc
|
10
|
+
)
|
11
|
+
@unpublished_blog_post = BlogPost.create!(
|
12
|
+
:title => 'unpublished', :user => @user, :published_at => nil
|
13
|
+
)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe '#edit' do
|
17
|
+
before :all do
|
18
|
+
@comment = Comment.create!(
|
19
|
+
:comment => "you're funny but I'm funnier",
|
20
|
+
:blog_post => @published_blog_post
|
21
|
+
)
|
22
|
+
end
|
23
|
+
|
24
|
+
before :each do
|
25
|
+
get :edit, :id => @comment.id
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should not have a textarea for Comment#comment' do
|
29
|
+
response.should_not have_tag("textarea[name=?]", "comment[comment]")
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#index' do
|
34
|
+
before :all do
|
35
|
+
Comment.destroy_all
|
36
|
+
@comment_on_published = Comment.create!(
|
37
|
+
:comment => "this is published",
|
38
|
+
:blog_post => @published_blog_post
|
39
|
+
)
|
40
|
+
@comment_on_unpublished = Comment.create!(
|
41
|
+
:comment => "this was published but no more",
|
42
|
+
:blog_post => @unpublished_blog_post
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
before :each do
|
47
|
+
get :index
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'should show a comment on a published blog post' do
|
51
|
+
response.should have_tag('td', :text => 'this is published')
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'should not show a comment on an unpublished blog post' do
|
55
|
+
response.should_not have_tag(
|
56
|
+
'td', :text => 'this was published but no more'
|
57
|
+
)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe '#new' do
|
62
|
+
before :each do
|
63
|
+
get :new
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'should have a textarea for Comment#comment' do
|
67
|
+
response.should have_tag("textarea[name=?]", "comment[comment]")
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::CommentsController do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#edit' do
|
7
|
+
before :all do
|
8
|
+
@comment = Comment.create! :comment => "you think you're so smart"
|
9
|
+
end
|
10
|
+
|
11
|
+
before :each do
|
12
|
+
get :edit, :id => @comment.id
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'should not allow the comments to be editable' do
|
16
|
+
response.body.should match(/you think you're so smart/)
|
17
|
+
response.should_not have_tag('textarea')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#index with a comment without the word 'smart'" do
|
22
|
+
before :all do
|
23
|
+
Comment.create! :comment => "something else"
|
24
|
+
end
|
25
|
+
|
26
|
+
before :each do
|
27
|
+
get :index
|
28
|
+
end
|
29
|
+
|
30
|
+
it 'should not include the index' do
|
31
|
+
response.body.should_not match(/something else/)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '#index when searching by comment' do
|
36
|
+
before :all do
|
37
|
+
@comment = Comment.create! :comment => "you think you're so smart"
|
38
|
+
end
|
39
|
+
|
40
|
+
before :each do
|
41
|
+
get :index, :search => 'you'
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'should find the comment' do
|
45
|
+
response.body.should match(/you think you're so smart/)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#index when searching by ID' do
|
50
|
+
before :all do
|
51
|
+
@comment = Comment.create! :comment => "you think you're so smart"
|
52
|
+
end
|
53
|
+
|
54
|
+
before :each do
|
55
|
+
get :index, :search => @comment.id.to_s
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'should find the comment' do
|
59
|
+
response.body.should match(/you think you're so smart/)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe '#new with at least 16 blog posts and 16 users' do
|
64
|
+
before :all do
|
65
|
+
user = User.find_or_create_by_username 'soren'
|
66
|
+
BlogPost.count.upto(16) do
|
67
|
+
BlogPost.create! :title => random_word, :user => user
|
68
|
+
end
|
69
|
+
User.count.upto(16) do
|
70
|
+
User.create! :username => random_word
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
before :each do
|
75
|
+
get :new
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'should be a success' do
|
79
|
+
response.should be_success
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::FileColumnImages2Controller do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#index' do
|
7
|
+
before :all do
|
8
|
+
@file_column_image = FileColumnImage.create!(
|
9
|
+
:image => File.open("./spec/data/ruby_throated.jpg")
|
10
|
+
)
|
11
|
+
end
|
12
|
+
|
13
|
+
before :each do
|
14
|
+
get :index
|
15
|
+
response.should be_success
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'should show the image in-line as an <img> tag' do
|
19
|
+
response.should have_tag(
|
20
|
+
"img[src^=?][width=300][height=500]",
|
21
|
+
"/file_column_image/image/#{@file_column_image.id}/ruby_throated.jpg"
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::FileColumnImagesController do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#index' do
|
7
|
+
before :all do
|
8
|
+
@file_column_image = FileColumnImage.create!(
|
9
|
+
:image => File.open("./spec/data/ruby_throated.jpg")
|
10
|
+
)
|
11
|
+
end
|
12
|
+
|
13
|
+
before :each do
|
14
|
+
get :index
|
15
|
+
response.should be_success
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'should show the image in-line as an <img> tag' do
|
19
|
+
response.should have_tag(
|
20
|
+
"img[src^=?]",
|
21
|
+
"/file_column_image/image/#{@file_column_image.id}/ruby_throated.jpg"
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '#create' do
|
27
|
+
before :each do
|
28
|
+
file = File.new './spec/data/ruby_throated.jpg'
|
29
|
+
post :create, :file_column_image => {:image => file}
|
30
|
+
@file_column_image = FileColumnImage.find_by_image 'ruby_throated.jpg'
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'should save an image record' do
|
34
|
+
@file_column_image.should_not be_nil
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should save the image locally' do
|
38
|
+
assert(
|
39
|
+
File.exist?(
|
40
|
+
"./public/file_column_image/image/#{@file_column_image.id}/ruby_throated.jpg"
|
41
|
+
)
|
42
|
+
)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#new' do
|
47
|
+
before :each do
|
48
|
+
get :new
|
49
|
+
response.should be_success
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should have a multipart form" do
|
53
|
+
response.should have_tag('form[enctype=multipart/form-data]')
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'should have a file input for image' do
|
57
|
+
response.body.should match(
|
58
|
+
%r|<input[^>]*name="file_column_image\[image\]"[^>]*type="file"|
|
59
|
+
)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe '#show' do
|
64
|
+
before :all do
|
65
|
+
@file_column_image = FileColumnImage.create!(
|
66
|
+
:image => File.open("./spec/data/ruby_throated.jpg")
|
67
|
+
)
|
68
|
+
end
|
69
|
+
|
70
|
+
before :each do
|
71
|
+
get :show, :id => @file_column_image.id
|
72
|
+
response.should be_success
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'should show the image in-line as an <img> tag' do
|
76
|
+
response.should have_tag(
|
77
|
+
"img[src^=?]",
|
78
|
+
"/file_column_image/image/#{@file_column_image.id}/ruby_throated.jpg"
|
79
|
+
)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::Images2Controller do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#index' do
|
7
|
+
before :all do
|
8
|
+
@image = Image.create!(
|
9
|
+
:image_file_name => '123.jpg', :image_content_type => 'image/jpeg',
|
10
|
+
:image_file_size => '456'
|
11
|
+
)
|
12
|
+
@path = "/images/#{@image.id}/original/123.jpg"
|
13
|
+
end
|
14
|
+
|
15
|
+
before :each do
|
16
|
+
get :index
|
17
|
+
response.should be_success
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'should show the image in-line as an <img> tag' do
|
21
|
+
response.should have_tag("img[src=?]", @path)
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'should not show the image path on its own as a value' do
|
25
|
+
response.should_not have_tag('td', @path)
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should show path text field' do
|
29
|
+
response.should have_tag('input[value=?]', "http://test.host#{@path}")
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should not show an edit link since we can only create or index' do
|
33
|
+
response.should_not have_tag(
|
34
|
+
'a[href=?]', "/admin/images2/edit/#{@image.id}"
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should have a new link' do
|
39
|
+
response.should have_tag(
|
40
|
+
"a[href=/admin/images2/new]", 'New image'
|
41
|
+
)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::ImagesController do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#index' do
|
7
|
+
before :all do
|
8
|
+
@image = Image.create!(
|
9
|
+
:image_file_name => '123.jpg', :image_content_type => 'image/jpeg',
|
10
|
+
:image_file_size => '456'
|
11
|
+
)
|
12
|
+
end
|
13
|
+
|
14
|
+
before :each do
|
15
|
+
get :index
|
16
|
+
response.should be_success
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'should show the image in-line as an <img> tag' do
|
20
|
+
response.should have_tag("img[src=/images/#{@image.id}/original/123.jpg]")
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'should not show paperclip-fields' do
|
24
|
+
response.body.should_not match(/image_file_name/)
|
25
|
+
response.body.should_not match(/image_content_type/)
|
26
|
+
response.body.should_not match(/image_file_size/)
|
27
|
+
response.body.should_not match(/image_updated_at/)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#create' do
|
32
|
+
before :each do
|
33
|
+
file = File.new './spec/data/ruby_throated.jpg'
|
34
|
+
post :create, :image => {:image => file}
|
35
|
+
@image = Image.find_by_image_file_name 'ruby_throated.jpg'
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should save an image record' do
|
39
|
+
@image.should_not be_nil
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should save the image locally' do
|
43
|
+
assert(
|
44
|
+
File.exist?("./public/images/#{@image.id}/original/ruby_throated.jpg")
|
45
|
+
)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#new' do
|
50
|
+
before :each do
|
51
|
+
get :new
|
52
|
+
response.should be_success
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should have a multipart form" do
|
56
|
+
response.should have_tag('form[enctype=multipart/form-data]')
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'should have a file input for image' do
|
60
|
+
response.body.should match(
|
61
|
+
%r|<input[^>]*name="image\[image\]"[^>]*type="file"|
|
62
|
+
)
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should not show paperclip-fields' do
|
66
|
+
response.body.should_not match(/image_file_name/)
|
67
|
+
response.body.should_not match(/image_content_type/)
|
68
|
+
response.body.should_not match(/image_file_size/)
|
69
|
+
response.body.should_not match(/image_updated_at/)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe '#show' do
|
74
|
+
before :all do
|
75
|
+
@image = Image.create!(
|
76
|
+
:image_file_name => '123.jpg', :image_content_type => 'image/jpeg',
|
77
|
+
:image_file_size => '456'
|
78
|
+
)
|
79
|
+
end
|
80
|
+
|
81
|
+
before :each do
|
82
|
+
get :show, :id => @image
|
83
|
+
response.should be_success
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should show the image in-line as an <img> tag' do
|
87
|
+
response.should have_tag("img[src=/images/#{@image.id}/original/123.jpg]")
|
88
|
+
end
|
89
|
+
|
90
|
+
it 'should not show paperclip-fields' do
|
91
|
+
response.body.should_not match(/image_file_name/)
|
92
|
+
response.body.should_not match(/image_content_type/)
|
93
|
+
response.body.should_not match(/image_file_size/)
|
94
|
+
response.body.should_not match(/image_updated_at/)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::Misconfigured1Controller do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
User.destroy_all
|
8
|
+
@user = User.create! :username => 'soren', :password => 'password'
|
9
|
+
end
|
10
|
+
|
11
|
+
describe '#index' do
|
12
|
+
it 'should raise an explanatory error' do
|
13
|
+
lambda {
|
14
|
+
get :index
|
15
|
+
}.should raise_error(
|
16
|
+
ActionView::TemplateError,
|
17
|
+
/Virtual search column :has_something needs a conditions block/
|
18
|
+
)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,215 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Admin::ProductCategories2Controller do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#create with 3 new valid product categories and 7 blanks' do
|
7
|
+
before :each do
|
8
|
+
ProductCategory.destroy_all
|
9
|
+
post(
|
10
|
+
:create,
|
11
|
+
:product_category => {
|
12
|
+
'a' => {'category_name' => 'shiny', 'position' => 1},
|
13
|
+
'b' => {'category_name' => 'bouncy', 'position' => 2},
|
14
|
+
'c' => {'category_name' => 'sparkly', 'position' => 3},
|
15
|
+
'd' => {'category_name' => ''},
|
16
|
+
'e' => {'category_name' => ''},
|
17
|
+
'f' => {'category_name' => ''},
|
18
|
+
'g' => {'category_name' => ''},
|
19
|
+
'h' => {'category_name' => ''},
|
20
|
+
'i' => {'category_name' => ''},
|
21
|
+
'j' => {'category_name' => ''},
|
22
|
+
}
|
23
|
+
)
|
24
|
+
response.should_not be_error
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should create 3 product categories' do
|
28
|
+
ProductCategory.count.should == 3
|
29
|
+
%w(shiny bouncy sparkly).each do |name|
|
30
|
+
ProductCategory.first(
|
31
|
+
:conditions => {:category_name => name}
|
32
|
+
).should_not be_nil
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'should redirect to index' do
|
37
|
+
response.should redirect_to(:action => 'index')
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#create with 2 new valid product categories, 1 invalid product category, and 7 blanks' do
|
42
|
+
before :each do
|
43
|
+
ProductCategory.destroy_all
|
44
|
+
ProductCategory.create! :category_name => 'shiny', :position => 1
|
45
|
+
@orig_pc_count = ProductCategory.count
|
46
|
+
post(
|
47
|
+
:create,
|
48
|
+
:product_category => {
|
49
|
+
'a' => {'category_name' => ''},
|
50
|
+
'b' => {'category_name' => ''},
|
51
|
+
'c' => {'category_name' => 'shiny', :position => 2},
|
52
|
+
'd' => {'category_name' => ''},
|
53
|
+
'e' => {'category_name' => 'bouncy', :position => 3},
|
54
|
+
'f' => {'category_name' => ''},
|
55
|
+
'g' => {'category_name' => 'sparkly', :position => 4},
|
56
|
+
'h' => {'category_name' => ''},
|
57
|
+
'i' => {'category_name' => ''},
|
58
|
+
'j' => {'category_name' => ''},
|
59
|
+
}
|
60
|
+
)
|
61
|
+
response.should be_success
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'should not create any product categories' do
|
65
|
+
ProductCategory.count.should == @orig_pc_count
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'should render the error for the invalid product category' do
|
69
|
+
response.body.should match(/has already been taken/)
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'should move non-empty records to the top of the rendered form' do
|
73
|
+
response.should have_tag("form") do
|
74
|
+
with_tag(
|
75
|
+
'input[name=?][value=?]', "product_category[a][category_name]",
|
76
|
+
'shiny'
|
77
|
+
)
|
78
|
+
with_tag(
|
79
|
+
'input[name=?][value=?]', "product_category[b][category_name]",
|
80
|
+
'bouncy'
|
81
|
+
)
|
82
|
+
with_tag(
|
83
|
+
'input[name=?][value=?]', "product_category[c][category_name]",
|
84
|
+
'sparkly'
|
85
|
+
)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'should render the error directly above the row with the error in it' do
|
90
|
+
response.should have_tag('form') do
|
91
|
+
with_tag('table') do
|
92
|
+
with_tag('tr') do
|
93
|
+
with_tag('td', :text => /^\s*$/)
|
94
|
+
with_tag(
|
95
|
+
'td.errorExplanation:not([colspan])',
|
96
|
+
:text => /Category name has already been taken/
|
97
|
+
)
|
98
|
+
end
|
99
|
+
with_tag('td.fieldWithErrors') do
|
100
|
+
with_tag(
|
101
|
+
'input[name=?][value=?]', "product_category[a][category_name]",
|
102
|
+
'shiny'
|
103
|
+
)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
it 'should have 7 blank slots at the bottom' do
|
110
|
+
'd'.upto('j') do |prefix|
|
111
|
+
response.should have_tag(
|
112
|
+
'input[name=?]', "product_category[#{prefix}][category_name]"
|
113
|
+
)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe '#create with nothing entered' do
|
119
|
+
before :each do
|
120
|
+
post(
|
121
|
+
:create,
|
122
|
+
:product_category => {
|
123
|
+
'a' => {'category_name' => ''},
|
124
|
+
'b' => {'category_name' => ''},
|
125
|
+
'c' => {'category_name' => ''},
|
126
|
+
'd' => {'category_name' => ''},
|
127
|
+
'e' => {'category_name' => ''},
|
128
|
+
'f' => {'category_name' => ''},
|
129
|
+
'g' => {'category_name' => ''},
|
130
|
+
'h' => {'category_name' => ''},
|
131
|
+
'i' => {'category_name' => ''},
|
132
|
+
'j' => {'category_name' => ''},
|
133
|
+
}
|
134
|
+
)
|
135
|
+
response.should_not be_error
|
136
|
+
end
|
137
|
+
|
138
|
+
it 'should redirect to index' do
|
139
|
+
response.should redirect_to(:action => 'index')
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
describe '#edit' do
|
144
|
+
before :all do
|
145
|
+
ProductCategory.destroy_all
|
146
|
+
@pc = ProductCategory.create!(
|
147
|
+
:category_name => 'shiny', :position => 1
|
148
|
+
)
|
149
|
+
end
|
150
|
+
|
151
|
+
before :each do
|
152
|
+
get :edit, :id => @pc.id
|
153
|
+
end
|
154
|
+
|
155
|
+
it 'should show the form for one record at a time, like normal' do
|
156
|
+
response.should have_tag(
|
157
|
+
'form[action=?]', "/admin/product_categories2/update/#{@pc.id}"
|
158
|
+
) do
|
159
|
+
with_tag(
|
160
|
+
"input[name=?][value=?]", 'product_category[category_name]',
|
161
|
+
@pc.category_name
|
162
|
+
)
|
163
|
+
end
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
describe '#index' do
|
168
|
+
before :each do
|
169
|
+
get :index
|
170
|
+
end
|
171
|
+
|
172
|
+
it "should use different text for the new link because we're doing multiple creates" do
|
173
|
+
response.should have_tag(
|
174
|
+
"a[href=/admin/product_categories2/new]", 'New product categories'
|
175
|
+
)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe '#new' do
|
180
|
+
before :each do
|
181
|
+
get :new
|
182
|
+
end
|
183
|
+
|
184
|
+
it 'should show a form for 10 product categories at once' do
|
185
|
+
response.should have_tag('form') do
|
186
|
+
'a'.upto('j') do |i|
|
187
|
+
with_tag 'input[name=?]', "product_category[#{i}][category_name]"
|
188
|
+
end
|
189
|
+
with_tag 'input[type=submit]'
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
describe '#update' do
|
195
|
+
before :all do
|
196
|
+
ProductCategory.destroy_all
|
197
|
+
@pc = ProductCategory.create!(
|
198
|
+
:category_name => 'shiny', :position => 1
|
199
|
+
)
|
200
|
+
end
|
201
|
+
|
202
|
+
before :each do
|
203
|
+
post(
|
204
|
+
:update,
|
205
|
+
:id => @pc.id, :product_category => {:category_name => 'SHINY'}
|
206
|
+
)
|
207
|
+
end
|
208
|
+
|
209
|
+
it 'should update one record at a time' do
|
210
|
+
@pc.reload
|
211
|
+
@pc.category_name.should == 'SHINY'
|
212
|
+
end
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Admin::ProductCategoriesController do
|
4
|
+
integrate_views
|
5
|
+
|
6
|
+
describe '#index with no records' do
|
7
|
+
before :all do
|
8
|
+
ProductCategory.destroy_all
|
9
|
+
end
|
10
|
+
|
11
|
+
before :each do
|
12
|
+
get :index
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should say 'No product categories found'" do
|
16
|
+
response.body.should match(/No product categories found/)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|