zen 0.2.8 → 0.3b
Sign up to get free protection for your applications and to get access to all the features.
- data/.gems +20 -0
- data/.mailmap +3 -2
- data/.rvmrc +1 -1
- data/.travis.yml +13 -2
- data/.yardopts +13 -0
- data/AUTHORS +1 -1
- data/README.md +115 -77
- data/Rakefile +6 -7
- data/bin/zen +12 -5
- data/guide/_static/categories/categories.png +0 -0
- data/guide/_static/categories/category_groups.png +0 -0
- data/guide/_static/categories/new_category.png +0 -0
- data/guide/_static/categories/new_category_group.png +0 -0
- data/guide/_static/comments/comments.png +0 -0
- data/guide/_static/comments/edit_comment.png +0 -0
- data/guide/_static/custom_fields/custom_field_groups.png +0 -0
- data/guide/_static/custom_fields/custom_field_types.png +0 -0
- data/guide/_static/custom_fields/custom_fields.png +0 -0
- data/guide/_static/custom_fields/edit_custom_field_general.png +0 -0
- data/guide/_static/custom_fields/edit_custom_field_group.png +0 -0
- data/guide/_static/custom_fields/edit_custom_field_settings.png +0 -0
- data/guide/_static/custom_fields/edit_custom_field_type.png +0 -0
- data/guide/_static/menus/edit_menu.png +0 -0
- data/guide/_static/menus/edit_menu_item.png +0 -0
- data/guide/_static/menus/menu_items.png +0 -0
- data/guide/_static/menus/menus.png +0 -0
- data/guide/_static/sections/edit_entry.png +0 -0
- data/guide/_static/sections/edit_entry_categories.png +0 -0
- data/guide/_static/sections/edit_entry_general.png +0 -0
- data/guide/_static/sections/edit_entry_meta.png +0 -0
- data/guide/_static/sections/edit_section_comments.png +0 -0
- data/guide/_static/sections/edit_section_general.png +0 -0
- data/guide/_static/sections/edit_section_groups.png +0 -0
- data/guide/_static/sections/entries.png +0 -0
- data/guide/_static/sections/sections.png +0 -0
- data/guide/_static/settings/overview_general.png +0 -0
- data/guide/_static/settings/overview_security.png +0 -0
- data/guide/_static/settings/overview_user.png +0 -0
- data/guide/_static/users/edit_user.png +0 -0
- data/guide/_static/users/edit_user_group.png +0 -0
- data/guide/_static/users/edit_user_group_permissions.png +0 -0
- data/guide/_static/users/edit_user_permissions.png +0 -0
- data/guide/_static/users/overview.png +0 -0
- data/guide/_static/users/user_groups_overview.png +0 -0
- data/guide/asset_management.md +117 -0
- data/{CHANGELOG.md → guide/changelog.md} +42 -0
- data/guide/css/common.css +20 -0
- data/guide/getting_started.md +61 -0
- data/guide/hacking.md +52 -0
- data/guide/installation.md +44 -0
- data/guide/javascript.md +352 -0
- data/lib/vendor/sequel_sluggable.rb +137 -0
- data/lib/yard/tags.rb +13 -0
- data/lib/zen.rb +148 -78
- data/lib/zen/asset_groups.rb +85 -0
- data/lib/zen/bin/create.rb +267 -56
- data/lib/zen/bin/default.rb +84 -0
- data/lib/zen/controller/admin_controller.rb +1 -82
- data/lib/zen/controller/base_controller.rb +9 -5
- data/lib/zen/controller/frontend_controller.rb +0 -1
- data/lib/zen/controller/main_controller.rb +30 -42
- data/lib/zen/controller/preview.rb +9 -8
- data/lib/zen/controller/translations.rb +49 -0
- data/lib/zen/error.rb +17 -0
- data/lib/zen/event.rb +118 -0
- data/lib/zen/helper/asset.rb +63 -0
- data/lib/zen/helper/breadcrumb.rb +1 -4
- data/lib/zen/helper/controller.rb +73 -0
- data/lib/zen/helper/locale.rb +42 -0
- data/lib/zen/helper/message.rb +0 -3
- data/lib/zen/helper/search.rb +54 -0
- data/lib/zen/helper/stacked_aspect.rb +249 -0
- data/lib/zen/helper/theme.rb +3 -10
- data/lib/zen/language.rb +356 -181
- data/lib/zen/language/en/zen_general.rb +52 -0
- data/lib/zen/language/en/zen_models.rb +19 -0
- data/lib/zen/language/nl/zen_general.rb +57 -0
- data/lib/zen/language/nl/zen_models.rb +22 -0
- data/lib/zen/language/translation.rb +132 -0
- data/lib/zen/languages.rb +9 -0
- data/lib/zen/layout/admin.xhtml +3 -3
- data/lib/zen/layout/login.xhtml +1 -1
- data/lib/zen/markup.rb +189 -0
- data/lib/zen/model/helper.rb +65 -0
- data/lib/zen/model/init.rb +62 -0
- data/lib/zen/model/methods.rb +6 -7
- data/lib/zen/package.rb +312 -201
- data/lib/zen/package/all.rb +4 -3
- data/lib/zen/package/categories/lib/categories.rb +29 -41
- data/lib/zen/package/categories/lib/categories/controller/categories.rb +185 -130
- data/lib/zen/package/categories/lib/categories/controller/category_groups.rb +172 -102
- data/lib/zen/package/categories/lib/categories/helper/category.rb +4 -9
- data/lib/zen/package/categories/lib/categories/helper/category_frontend.rb +86 -0
- data/lib/zen/package/categories/lib/categories/language/en/categories.rb +40 -0
- data/lib/zen/package/categories/lib/categories/language/en/category_groups.rb +39 -0
- data/lib/zen/package/categories/lib/categories/language/nl/categories.rb +42 -0
- data/lib/zen/package/categories/lib/categories/language/nl/category_groups.rb +42 -0
- data/lib/zen/package/categories/lib/categories/model/category.rb +21 -25
- data/lib/zen/package/categories/lib/categories/model/category_group.rb +21 -15
- data/lib/zen/package/categories/lib/categories/view/admin/categories/form.xhtml +25 -26
- data/lib/zen/package/categories/lib/categories/view/admin/categories/index.xhtml +24 -24
- data/lib/zen/package/categories/lib/categories/view/admin/category-groups/form.xhtml +18 -20
- data/lib/zen/package/categories/lib/categories/view/admin/category-groups/index.xhtml +21 -18
- data/lib/zen/package/comments/lib/comments.rb +30 -50
- data/lib/zen/package/comments/lib/comments/anti_spam.rb +138 -0
- data/lib/zen/package/comments/lib/comments/controller/comments.rb +159 -92
- data/lib/zen/package/comments/lib/comments/controller/comments_form.rb +122 -34
- data/lib/zen/package/comments/lib/comments/helper/comment.rb +0 -3
- data/lib/zen/package/comments/lib/comments/helper/comment_frontend.rb +90 -0
- data/lib/zen/package/comments/lib/comments/language/en/comments.rb +57 -0
- data/lib/zen/package/comments/lib/comments/language/nl/comments.rb +61 -0
- data/lib/zen/package/comments/lib/comments/model/comment.rb +147 -49
- data/lib/zen/package/comments/lib/comments/model/comment_status.rb +0 -2
- data/lib/zen/package/comments/lib/comments/view/admin/comments/form.xhtml +37 -40
- data/lib/zen/package/comments/lib/comments/view/admin/comments/index.xhtml +23 -42
- data/lib/zen/package/comments/migrations/1308774099_comment_status.rb +12 -4
- data/lib/zen/package/comments/migrations/1313851786_remove_defensio_signature.rb +11 -0
- data/lib/zen/package/custom_fields/lib/custom_fields.rb +40 -43
- data/lib/zen/package/custom_fields/lib/custom_fields/blue_form_parameters.rb +72 -17
- data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_field_groups.rb +154 -118
- data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_field_types.rb +147 -90
- data/lib/zen/package/custom_fields/lib/custom_fields/controller/custom_fields.rb +161 -131
- data/lib/zen/package/custom_fields/lib/custom_fields/helper/custom_field.rb +4 -9
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_groups.rb +42 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_types.rb +51 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_fields.rb +60 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_groups.rb +41 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_types.rb +49 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_fields.rb +61 -0
- data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field.rb +18 -23
- data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_group.rb +20 -19
- data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_method.rb +1 -3
- data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_type.rb +19 -9
- data/lib/zen/package/custom_fields/lib/custom_fields/model/custom_field_value.rb +18 -15
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/form.xhtml +18 -18
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-groups/index.xhtml +30 -24
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-types/form.xhtml +15 -10
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-field-types/index.xhtml +24 -19
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/form.xhtml +18 -13
- data/lib/zen/package/custom_fields/lib/custom_fields/view/admin/custom-fields/index.xhtml +30 -20
- data/lib/zen/package/extensions/lib/extensions.rb +20 -0
- data/lib/zen/package/extensions/lib/extensions/controller/extensions.rb +41 -0
- data/lib/zen/package/extensions/lib/extensions/language/en/extensions.rb +23 -0
- data/lib/zen/package/extensions/lib/extensions/language/nl/extensions.rb +25 -0
- data/lib/zen/package/extensions/lib/extensions/view/admin/extensions/index.xhtml +86 -0
- data/lib/zen/package/menu.rb +109 -0
- data/lib/zen/package/menus/lib/menus.rb +25 -34
- data/lib/zen/package/menus/lib/menus/controller/menu_items.rb +143 -107
- data/lib/zen/package/menus/lib/menus/controller/menus.rb +166 -115
- data/lib/zen/package/menus/lib/menus/helper/menu.rb +2 -8
- data/lib/zen/package/menus/lib/menus/helper/menu_frontend.rb +114 -0
- data/lib/zen/package/menus/lib/menus/language/en/menu_items.rb +48 -0
- data/lib/zen/package/menus/lib/menus/language/en/menus.rb +48 -0
- data/lib/zen/package/menus/lib/menus/language/nl/menu_items.rb +48 -0
- data/lib/zen/package/menus/lib/menus/language/nl/menus.rb +50 -0
- data/lib/zen/package/menus/lib/menus/model/menu.rb +24 -17
- data/lib/zen/package/menus/lib/menus/model/menu_item.rb +37 -13
- data/lib/zen/package/menus/lib/menus/view/admin/menu-items/form.xhtml +32 -25
- data/lib/zen/package/menus/lib/menus/view/admin/menu-items/index.xhtml +23 -17
- data/lib/zen/package/menus/lib/menus/view/admin/menus/form.xhtml +31 -26
- data/lib/zen/package/menus/lib/menus/view/admin/menus/index.xhtml +20 -22
- data/lib/zen/package/sections/lib/sections.rb +25 -68
- data/lib/zen/package/sections/lib/sections/controller/section_entries.rb +178 -138
- data/lib/zen/package/sections/lib/sections/controller/sections.rb +173 -140
- data/lib/zen/package/sections/lib/sections/helper/section.rb +3 -6
- data/lib/zen/package/sections/lib/sections/helper/section_frontend.rb +146 -0
- data/lib/zen/package/sections/lib/sections/language/en/section_entries.rb +50 -0
- data/lib/zen/package/sections/lib/sections/language/en/sections.rb +55 -0
- data/lib/zen/package/sections/lib/sections/language/nl/section_entries.rb +50 -0
- data/lib/zen/package/sections/lib/sections/language/nl/sections.rb +55 -0
- data/lib/zen/package/sections/lib/sections/model/section.rb +36 -36
- data/lib/zen/package/sections/lib/sections/model/section_entry.rb +52 -59
- data/lib/zen/package/sections/lib/sections/model/section_entry_status.rb +2 -2
- data/lib/zen/package/sections/lib/sections/view/admin/form.xhtml +24 -21
- data/lib/zen/package/sections/lib/sections/view/admin/index.xhtml +24 -26
- data/lib/zen/package/sections/lib/sections/view/admin/section-entries/form.xhtml +33 -31
- data/lib/zen/package/sections/lib/sections/view/admin/section-entries/index.xhtml +24 -25
- data/lib/zen/package/sections/migrations/1308672298_use_id_for_default_section.rb +14 -10
- data/lib/zen/package/sections/migrations/1308813320_section_entry_statuses.rb +12 -6
- data/lib/zen/package/settings/lib/settings.rb +25 -120
- data/lib/zen/package/settings/lib/settings/blue_form_parameters.rb +157 -0
- data/lib/zen/package/settings/lib/settings/controller/settings.rb +94 -69
- data/lib/zen/package/settings/lib/settings/language/en/settings.rb +41 -0
- data/lib/zen/package/settings/lib/settings/language/nl/settings.rb +41 -0
- data/lib/zen/package/settings/lib/settings/model/setting.rb +0 -2
- data/lib/zen/package/settings/lib/settings/setting.rb +379 -0
- data/lib/zen/package/settings/lib/settings/setting_groups.rb +11 -0
- data/lib/zen/package/settings/lib/settings/settings.rb +83 -0
- data/lib/zen/package/settings/lib/settings/settings_group.rb +84 -0
- data/lib/zen/package/settings/lib/settings/singleton_methods.rb +35 -0
- data/lib/zen/package/settings/lib/settings/view/admin/settings/index.xhtml +15 -57
- data/lib/zen/package/settings/migrations/1321197919_remove_unused_columns.rb +17 -0
- data/lib/zen/package/users/lib/users.rb +51 -36
- data/lib/zen/package/users/lib/users/controller/user_groups.rb +133 -98
- data/lib/zen/package/users/lib/users/controller/users.rb +253 -136
- data/lib/zen/package/users/lib/users/helper/access.rb +102 -0
- data/lib/zen/package/users/lib/users/helper/acl.rb +113 -0
- data/lib/zen/package/users/lib/users/helper/users.rb +41 -24
- data/lib/zen/package/users/lib/users/language/en/permissions.rb +16 -0
- data/lib/zen/package/users/lib/users/language/en/user_groups.rb +39 -0
- data/lib/zen/package/users/lib/users/language/en/users.rb +73 -0
- data/lib/zen/package/users/lib/users/language/nl/permissions.rb +16 -0
- data/lib/zen/package/users/lib/users/language/nl/user_groups.rb +41 -0
- data/lib/zen/package/users/lib/users/language/nl/users.rb +74 -0
- data/lib/zen/package/users/lib/users/model/permission.rb +28 -0
- data/lib/zen/package/users/lib/users/model/user.rb +104 -65
- data/lib/zen/package/users/lib/users/model/user_group.rb +28 -24
- data/lib/zen/package/users/lib/users/model/user_status.rb +27 -0
- data/lib/zen/package/users/lib/users/public/admin/css/users/permissions.css +22 -0
- data/lib/zen/package/users/lib/users/public/admin/js/users/permissions.js +33 -0
- data/lib/zen/package/users/lib/users/settings.rb +19 -0
- data/lib/zen/package/users/lib/users/view/admin/user-groups/form.xhtml +58 -28
- data/lib/zen/package/users/lib/users/view/admin/user-groups/index.xhtml +19 -15
- data/lib/zen/package/users/lib/users/view/admin/users/form.xhtml +93 -62
- data/lib/zen/package/users/lib/users/view/admin/users/index.xhtml +23 -36
- data/lib/zen/package/users/lib/users/view/admin/users/login.xhtml +13 -6
- data/lib/zen/package/users/lib/users/view/admin/users/permissions.xhtml +33 -0
- data/lib/zen/package/users/lib/users/view/admin/users/register.xhtml +52 -0
- data/lib/zen/package/users/migrations/1313786058_update_default_date.rb +41 -0
- data/lib/zen/package/users/migrations/1316432327_permissions.rb +36 -0
- data/lib/zen/package/users/migrations/1320272365_status_ids.rb +67 -0
- data/lib/zen/public/admin/css/zen/buttons.css +3 -11
- data/lib/zen/public/admin/css/zen/datepicker.css +23 -13
- data/lib/zen/public/admin/css/zen/editor.css +6 -14
- data/lib/zen/public/admin/css/zen/forms.css +19 -12
- data/lib/zen/public/admin/css/zen/general.css +22 -18
- data/lib/zen/public/admin/css/zen/grid.css +1 -20
- data/lib/zen/public/admin/css/zen/layout.css +26 -11
- data/lib/zen/public/admin/css/zen/messages.css +3 -10
- data/lib/zen/public/admin/css/zen/reset.css +13 -15
- data/lib/zen/public/admin/css/zen/tables.css +8 -10
- data/lib/zen/public/admin/css/zen/tabs.css +2 -10
- data/lib/zen/public/admin/css/zen/window.css +2 -8
- data/lib/zen/public/admin/js/vendor/datepicker.js +540 -240
- data/lib/zen/public/admin/js/vendor/mootools/core.js +273 -283
- data/lib/zen/public/admin/js/vendor/mootools/more.js +131 -136
- data/lib/zen/public/admin/js/zen/index.js +8 -14
- data/lib/zen/public/admin/js/zen/lib/editor.js +36 -33
- data/lib/zen/public/admin/js/zen/lib/editor/markdown.js +0 -6
- data/lib/zen/public/admin/js/zen/lib/editor/textile.js +0 -6
- data/lib/zen/public/admin/js/zen/lib/html_table.js +0 -5
- data/lib/zen/public/admin/js/zen/lib/tabs.js +22 -79
- data/lib/zen/public/admin/js/zen/lib/window.js +12 -22
- data/lib/zen/spec/bacon/color_output.rb +1 -1
- data/lib/zen/spec/helper.rb +6 -11
- data/lib/zen/spec/simplecov.rb +3 -3
- data/lib/zen/task.rb +0 -1
- data/lib/zen/task/build.rake +46 -26
- data/lib/zen/task/clean.rake +14 -7
- data/lib/zen/task/db.rake +31 -29
- data/lib/zen/task/package.rake +19 -23
- data/lib/zen/task/proto.rake +3 -5
- data/lib/zen/task/setup.rake +4 -0
- data/lib/zen/task/test.rake +31 -6
- data/lib/zen/task/theme.rake +13 -19
- data/lib/zen/theme.rb +377 -52
- data/lib/zen/validation.rb +22 -30
- data/lib/zen/version.rb +1 -2
- data/lib/zen/view/bottom.xhtml +9 -1
- data/lib/zen/view/head.xhtml +1 -1
- data/lib/zen/view/main.xhtml +1 -1
- data/lib/zen/view/search.xhtml +9 -0
- data/proto/app/Rakefile +0 -1
- data/proto/app/app.rb +21 -16
- data/proto/app/config/config.rb.erb +41 -0
- data/proto/app/config/{database.rb → database.rb.erb} +17 -14
- data/proto/app/config/middlewares.rb +1 -1
- data/proto/app/theme/default/index.xhtml +25 -0
- data/proto/app/theme/theme.rb +19 -0
- data/proto/app/{log/database/dev → tmp}/.gitkeep +0 -0
- data/proto/migration.rb +3 -5
- data/proto/rack/thin.yml +41 -0
- data/proto/rack/unicorn.rb +38 -0
- data/spec/Rakefile +15 -11
- data/spec/fixtures/zen/helper/controller.rb +13 -0
- data/spec/fixtures/zen/helper/locale.rb +7 -0
- data/spec/fixtures/zen/helper/message.rb +0 -4
- data/spec/fixtures/zen/language.rb +31 -0
- data/spec/fixtures/zen/language/en/spec.rb +11 -0
- data/spec/fixtures/zen/language/nl/spec.rb +11 -0
- data/spec/fixtures/zen/package.rb +0 -10
- data/spec/fixtures/zen/package/categories/helper/category_frontend.rb +16 -0
- data/spec/fixtures/zen/package/comments/helper/comment_frontend.rb +16 -0
- data/spec/fixtures/zen/package/sections/helper/section_frontend.rb +16 -0
- data/spec/fixtures/zen/package/settings/controller/settings.rb +17 -0
- data/spec/fixtures/zen/package/users/helper/access.rb +18 -0
- data/spec/fixtures/zen/package/users/helper/acl.rb +23 -0
- data/spec/fixtures/zen/theme/{default-section → default}/index.xhtml +0 -0
- data/spec/helper.rb +12 -27
- data/{proto/app/log/database/live → spec/public}/.gitkeep +0 -0
- data/spec/zen/controller/admin_controller.rb +5 -6
- data/spec/zen/controller/main_controller.rb +29 -35
- data/spec/zen/controller/preview.rb +9 -10
- data/spec/zen/event.rb +44 -0
- data/spec/zen/helper/breadcrumb.rb +4 -5
- data/spec/zen/helper/controller.rb +21 -0
- data/spec/zen/helper/locale.rb +25 -0
- data/spec/zen/helper/message.rb +4 -11
- data/spec/zen/helper/theme.rb +11 -14
- data/spec/zen/language.rb +48 -22
- data/spec/zen/markup.rb +39 -0
- data/spec/zen/package.rb +48 -11
- data/spec/zen/package/categories/controller/categories.rb +99 -45
- data/spec/zen/package/categories/controller/category_groups.rb +109 -33
- data/spec/zen/package/categories/helper/category.rb +19 -32
- data/spec/zen/package/categories/helper/category_frontend.rb +61 -0
- data/spec/zen/package/comments/anti_spam.rb +50 -0
- data/spec/zen/package/comments/controller/comments.rb +121 -61
- data/spec/zen/package/comments/controller/comments_form.rb +120 -94
- data/spec/zen/package/comments/helper/comment.rb +13 -13
- data/spec/zen/package/comments/helper/comment_frontend.rb +92 -0
- data/spec/zen/package/custom_fields/blue_form_parameters.rb +50 -50
- data/spec/zen/package/custom_fields/controller/custom_field_groups.rb +135 -43
- data/spec/zen/package/custom_fields/controller/custom_field_types.rb +153 -48
- data/spec/zen/package/custom_fields/controller/custom_fields.rb +130 -51
- data/spec/zen/package/custom_fields/helper/custom_field.rb +8 -8
- data/spec/zen/package/extensions/controller/extensions.rb +38 -0
- data/spec/zen/package/menus/controller/menu_items.rb +121 -42
- data/spec/zen/package/menus/controller/menus.rb +125 -38
- data/spec/zen/package/menus/helper/menu.rb +26 -26
- data/spec/zen/package/menus/helper/menu_frontend.rb +104 -0
- data/spec/zen/package/sections/controller/section_entries.rb +145 -89
- data/spec/zen/package/sections/controller/sections.rb +130 -35
- data/spec/zen/package/sections/helper/section.rb +27 -38
- data/spec/zen/package/sections/helper/section_frontend.rb +160 -0
- data/spec/zen/package/settings/controller/settings.rb +73 -8
- data/spec/zen/package/settings/settings.rb +119 -0
- data/spec/zen/package/users/controller/user_groups.rb +134 -34
- data/spec/zen/package/users/controller/users.rb +189 -44
- data/spec/zen/package/users/helper/access.rb +29 -0
- data/spec/zen/package/users/helper/acl.rb +46 -0
- data/spec/zen/package/users/helper/users.rb +20 -64
- data/spec/zen/theme.rb +7 -9
- data/spec/zen/validation.rb +1 -2
- data/zen.gemspec +25 -22
- metadata +303 -222
- data/lib/zen/asset.rb +0 -292
- data/lib/zen/bin/runner.rb +0 -118
- data/lib/zen/error/language_error.rb +0 -10
- data/lib/zen/error/package_error.rb +0 -10
- data/lib/zen/error/plugin_error.rb +0 -10
- data/lib/zen/error/theme_error.rb +0 -10
- data/lib/zen/error/validation_error.rb +0 -10
- data/lib/zen/helper/acl.rb +0 -182
- data/lib/zen/helper/blue_form_vendor.rb +0 -689
- data/lib/zen/language/en/zen_general.yml +0 -25
- data/lib/zen/language/en/zen_models.yml +0 -13
- data/lib/zen/language/nl/zen_general.yml +0 -25
- data/lib/zen/language/nl/zen_models.yml +0 -13
- data/lib/zen/model/settings.rb +0 -78
- data/lib/zen/package/base.rb +0 -62
- data/lib/zen/package/categories/lib/categories/language/en/categories.yml +0 -36
- data/lib/zen/package/categories/lib/categories/language/en/category_groups.yml +0 -34
- data/lib/zen/package/categories/lib/categories/language/nl/categories.yml +0 -40
- data/lib/zen/package/categories/lib/categories/language/nl/category_groups.yml +0 -34
- data/lib/zen/package/categories/lib/categories/plugin/categories.rb +0 -141
- data/lib/zen/package/comments/lib/comments/language/en/comments.yml +0 -48
- data/lib/zen/package/comments/lib/comments/language/nl/comments.yml +0 -50
- data/lib/zen/package/comments/lib/comments/plugin/anti_spam.rb +0 -156
- data/lib/zen/package/comments/lib/comments/plugin/comments.rb +0 -115
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_groups.yml +0 -33
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_field_types.yml +0 -40
- data/lib/zen/package/custom_fields/lib/custom_fields/language/en/custom_fields.yml +0 -54
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_groups.yml +0 -33
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_field_types.yml +0 -40
- data/lib/zen/package/custom_fields/lib/custom_fields/language/nl/custom_fields.yml +0 -54
- data/lib/zen/package/menus/lib/menus/language/en/menu_items.yml +0 -41
- data/lib/zen/package/menus/lib/menus/language/en/menus.yml +0 -40
- data/lib/zen/package/menus/lib/menus/language/nl/menu_items.yml +0 -41
- data/lib/zen/package/menus/lib/menus/language/nl/menus.yml +0 -40
- data/lib/zen/package/menus/lib/menus/plugin/menus.rb +0 -152
- data/lib/zen/package/sections/lib/sections/language/en/section_entries.yml +0 -44
- data/lib/zen/package/sections/lib/sections/language/en/sections.yml +0 -48
- data/lib/zen/package/sections/lib/sections/language/nl/section_entries.yml +0 -44
- data/lib/zen/package/sections/lib/sections/language/nl/sections.yml +0 -48
- data/lib/zen/package/sections/lib/sections/plugin/section_entries.rb +0 -244
- data/lib/zen/package/sections/lib/sections/plugin/sections.rb +0 -87
- data/lib/zen/package/settings/lib/settings/language/en/settings.yml +0 -36
- data/lib/zen/package/settings/lib/settings/language/nl/settings.yml +0 -37
- data/lib/zen/package/settings/lib/settings/plugin/group_base.rb +0 -39
- data/lib/zen/package/settings/lib/settings/plugin/setting_base.rb +0 -133
- data/lib/zen/package/settings/lib/settings/plugin/settings.rb +0 -251
- data/lib/zen/package/users/lib/users/controller/access_rules.rb +0 -284
- data/lib/zen/package/users/lib/users/language/en/access_rules.yml +0 -38
- data/lib/zen/package/users/lib/users/language/en/user_groups.yml +0 -32
- data/lib/zen/package/users/lib/users/language/en/users.yml +0 -57
- data/lib/zen/package/users/lib/users/language/nl/access_rules.yml +0 -38
- data/lib/zen/package/users/lib/users/language/nl/user_groups.yml +0 -32
- data/lib/zen/package/users/lib/users/language/nl/users.yml +0 -57
- data/lib/zen/package/users/lib/users/model/access_rule.rb +0 -42
- data/lib/zen/package/users/lib/users/public/admin/js/users/access_rules.js +0 -65
- data/lib/zen/package/users/lib/users/public/admin/js/users/lib/access_rules.js +0 -49
- data/lib/zen/package/users/lib/users/view/admin/access-rules/form.xhtml +0 -120
- data/lib/zen/package/users/lib/users/view/admin/access-rules/index.xhtml +0 -102
- data/lib/zen/plugin.rb +0 -182
- data/lib/zen/plugin/base.rb +0 -46
- data/lib/zen/plugin/helper.rb +0 -47
- data/lib/zen/plugin/markup/lib/markup.rb +0 -14
- data/lib/zen/plugin/markup/lib/markup/language/en/markup.yml +0 -6
- data/lib/zen/plugin/markup/lib/markup/markup.rb +0 -165
- data/lib/zen/public/admin/js/zen/lib/asset.js +0 -111
- data/lib/zen/task/plugin.rake +0 -18
- data/lib/zen/theme/base.rb +0 -65
- data/proto/app/config/config.rb +0 -18
- data/spec/fixtures/zen/language/en/spec.yml +0 -10
- data/spec/fixtures/zen/language/nl/spec.yml +0 -7
- data/spec/fixtures/zen/package/settings/plugin/settings.rb +0 -20
- data/spec/zen/asset.rb +0 -97
- data/spec/zen/bin/create.rb +0 -89
- data/spec/zen/bin/runner.rb +0 -47
- data/spec/zen/helper/acl.rb +0 -149
- data/spec/zen/package/categories/plugin/categories.rb +0 -92
- data/spec/zen/package/comments/plugin/anti_spam.rb +0 -59
- data/spec/zen/package/comments/plugin/comments.rb +0 -107
- data/spec/zen/package/menus/plugin/menus.rb +0 -120
- data/spec/zen/package/sections/plugin/section_entries.rb +0 -161
- data/spec/zen/package/sections/plugin/sections.rb +0 -75
- data/spec/zen/package/settings/plugin/settings.rb +0 -33
- data/spec/zen/package/users/controller/access_rules.rb +0 -90
- data/spec/zen/plugin.rb +0 -64
- data/spec/zen/plugin/helper.rb +0 -11
- data/spec/zen/plugin/markup.rb +0 -44
@@ -0,0 +1,61 @@
|
|
1
|
+
require File.expand_path('../../../../../helper', __FILE__)
|
2
|
+
require File.join(Zen::FIXTURES, 'package/categories/helper/category_frontend')
|
3
|
+
|
4
|
+
describe('Ramaze::Helper::CategoryFrontend') do
|
5
|
+
behaves_like :capybara
|
6
|
+
|
7
|
+
extend Ramaze::Helper::CategoryFrontend
|
8
|
+
|
9
|
+
category_group = ::Categories::Model::CategoryGroup.create(
|
10
|
+
:name => 'Spec group'
|
11
|
+
)
|
12
|
+
|
13
|
+
category1 = ::Categories::Model::Category.create(
|
14
|
+
:name => 'Spec category',
|
15
|
+
:category_group_id => category_group.id
|
16
|
+
)
|
17
|
+
|
18
|
+
category2 = ::Categories::Model::Category.create(
|
19
|
+
:name => 'Spec category 2',
|
20
|
+
:category_group_id => category_group.id
|
21
|
+
)
|
22
|
+
|
23
|
+
it('Retrieve categories for a group ID') do
|
24
|
+
categories = get_categories(category_group.id).all
|
25
|
+
|
26
|
+
categories.length.should == 2
|
27
|
+
categories[0].name.should == category1.name
|
28
|
+
end
|
29
|
+
|
30
|
+
it('Retrieve categories for a group slug') do
|
31
|
+
categories = get_categories(category_group.name).all
|
32
|
+
|
33
|
+
categories.length.should == 2
|
34
|
+
categories[0].name.should == category1.name
|
35
|
+
end
|
36
|
+
|
37
|
+
it('Limit the amount of results') do
|
38
|
+
categories = get_categories(category_group.id, :limit => 1).all
|
39
|
+
|
40
|
+
categories.length.should == 1
|
41
|
+
categories[0].name.should == category1.name
|
42
|
+
end
|
43
|
+
|
44
|
+
it('Retrieve and paginate two categories') do
|
45
|
+
visit('/spec-category-frontend')
|
46
|
+
|
47
|
+
page.has_selector?('p').should == true
|
48
|
+
page.find('p:first-child').text.should == category1.name
|
49
|
+
page.has_selector?('.pager').should == true
|
50
|
+
|
51
|
+
visit('/spec-category-frontend?page=2')
|
52
|
+
|
53
|
+
page.has_selector?('p').should == true
|
54
|
+
page.find('p:first-child').text.should == category2.name
|
55
|
+
page.has_selector?('.pager').should == true
|
56
|
+
end
|
57
|
+
|
58
|
+
category1.destroy
|
59
|
+
category2.destroy
|
60
|
+
category_group.destroy
|
61
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require File.expand_path('../../../../helper', __FILE__)
|
2
|
+
|
3
|
+
describe('Comments::AntiSpam') do
|
4
|
+
behaves_like :capybara
|
5
|
+
|
6
|
+
spam_comment = 'Hello, you can buy viagra here ' \
|
7
|
+
'<a href="http://buyviagra.com/">Buy Viagra</a>'
|
8
|
+
|
9
|
+
yaml_response = <<-YAML.strip
|
10
|
+
defensio-result:
|
11
|
+
api-version: 2.0
|
12
|
+
status: success
|
13
|
+
message:
|
14
|
+
signature: 1234abc
|
15
|
+
allow: false
|
16
|
+
classification: spam
|
17
|
+
spaminess: 0.9
|
18
|
+
profanity-match: false
|
19
|
+
YAML
|
20
|
+
|
21
|
+
stub_request(
|
22
|
+
:post,
|
23
|
+
'http://api.defensio.com/2.0/users/test/documents.yaml'
|
24
|
+
).to_return(:body => yaml_response)
|
25
|
+
|
26
|
+
it('Fail to use an invalid engine') do
|
27
|
+
should.raise?(ArgumentError) do
|
28
|
+
Comments::AntiSpam.validate(:foobar, nil, nil, nil, spam_comment)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
it('Validate a spam comment using Defensio') do
|
33
|
+
get_setting(:defensio_key).value = 'test'
|
34
|
+
|
35
|
+
Comments::AntiSpam.validate(:defensio, nil, nil, nil, spam_comment) \
|
36
|
+
.should == true
|
37
|
+
end
|
38
|
+
|
39
|
+
it('Fail to validate using defensio without an API key') do
|
40
|
+
get_setting(:defensio_key).value = nil
|
41
|
+
|
42
|
+
should.raise? do
|
43
|
+
Comments::AntiSpam.validate(:defensio, nil, nil, nil, spam_comment)
|
44
|
+
end
|
45
|
+
|
46
|
+
get_setting(:defensio_key).value = 'test'
|
47
|
+
end
|
48
|
+
|
49
|
+
WebMock.reset!
|
50
|
+
end
|
@@ -1,26 +1,33 @@
|
|
1
1
|
require File.expand_path('../../../../../helper', __FILE__)
|
2
2
|
|
3
|
-
describe(
|
3
|
+
describe('Comments::Controller::Comments') do
|
4
4
|
behaves_like :capybara
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
6
|
+
index_url = Comments::Controller::Comments.r(:index).to_s
|
7
|
+
edit_url = Comments::Controller::Comments.r(:edit).to_s
|
8
|
+
save_button = lang('comments.buttons.save')
|
9
|
+
user_id = Users::Model::User[:email => 'spec@domain.tld'].id
|
10
|
+
section = Sections::Model::Section.create(
|
11
|
+
:name => 'Spec section',
|
12
|
+
:comment_allow => true,
|
13
|
+
:comment_require_account => false,
|
14
|
+
:comment_moderate => false,
|
15
|
+
:comment_format => 'markdown'
|
16
|
+
)
|
17
|
+
|
18
|
+
entry = Sections::Model::SectionEntry.create(
|
19
|
+
:title => 'Spec entry',
|
20
|
+
:user_id => user_id,
|
21
|
+
:section_id => section.id
|
22
|
+
)
|
23
|
+
|
24
|
+
after do
|
25
|
+
Zen::Event.delete(
|
26
|
+
:before_edit_comment,
|
27
|
+
:after_edit_comment,
|
28
|
+
:before_delete_comment,
|
29
|
+
:after_delete_comment
|
13
30
|
)
|
14
|
-
|
15
|
-
@entry = Sections::Model::SectionEntry.create(
|
16
|
-
:title => 'Spec entry',
|
17
|
-
:status => 'published',
|
18
|
-
:user_id => 1,
|
19
|
-
:section_id => @section.id
|
20
|
-
)
|
21
|
-
|
22
|
-
@section.name.should === 'Spec section'
|
23
|
-
@entry.title.should === 'Spec entry'
|
24
31
|
end
|
25
32
|
|
26
33
|
it('Submit a form without a CSRF token') do
|
@@ -28,41 +35,77 @@ describe("Comments::Controller::Comments") do
|
|
28
35
|
Comments::Controller::Comments.r(:save).to_s
|
29
36
|
)
|
30
37
|
|
31
|
-
response.body.include?(lang('zen_general.errors.csrf')).should
|
32
|
-
response.status.should
|
38
|
+
response.body.include?(lang('zen_general.errors.csrf')).should == true
|
39
|
+
response.status.should == 403
|
33
40
|
end
|
34
41
|
|
35
|
-
it(
|
36
|
-
|
37
|
-
message = lang('comments.messages.no_comments')
|
42
|
+
it('Find no existing comments') do
|
43
|
+
message = lang('comments.messages.no_comments')
|
38
44
|
|
39
45
|
visit(index_url)
|
40
46
|
|
41
|
-
page.has_content?(message).should
|
42
|
-
page.has_selector?('table tbody tr').should
|
47
|
+
page.has_content?(message).should == true
|
48
|
+
page.has_selector?('table tbody tr').should == false
|
43
49
|
end
|
44
50
|
|
45
|
-
it(
|
51
|
+
it('Create a new comment') do
|
46
52
|
comment = Comments::Model::Comment.create(
|
47
53
|
:user_id => 1,
|
48
|
-
:section_entry_id =>
|
54
|
+
:section_entry_id => entry.id,
|
49
55
|
:email => 'spec@domain.tld',
|
50
56
|
:comment => 'Spec comment'
|
51
57
|
)
|
52
58
|
|
53
|
-
|
54
|
-
message = lang('comments.messages.no_comments')
|
59
|
+
message = lang('comments.messages.no_comments')
|
55
60
|
|
56
61
|
visit(index_url)
|
57
62
|
|
58
|
-
page.has_content?(message).should
|
59
|
-
page.has_selector?('table tbody tr').should
|
63
|
+
page.has_content?(message).should == false
|
64
|
+
page.has_selector?('table tbody tr').should == true
|
65
|
+
end
|
66
|
+
|
67
|
+
it('Search for a comment') do
|
68
|
+
visit(index_url)
|
69
|
+
search_button = lang('zen_general.buttons.search')
|
70
|
+
error = lang('zen_general.errors.invalid_search')
|
71
|
+
|
72
|
+
within('#search_form') do
|
73
|
+
fill_in('query', :with => 'Spec comment')
|
74
|
+
click_on(search_button)
|
75
|
+
end
|
76
|
+
|
77
|
+
page.has_content?(error).should == false
|
78
|
+
page.has_content?('Spec comment').should == true
|
79
|
+
|
80
|
+
within('#search_form') do
|
81
|
+
fill_in('query', :with => 'spec@domain.tld')
|
82
|
+
click_on(search_button)
|
83
|
+
end
|
84
|
+
|
85
|
+
page.has_content?(error).should == false
|
86
|
+
page.has_content?('Spec comment').should == true
|
87
|
+
|
88
|
+
within('#search_form') do
|
89
|
+
fill_in('query', :with => 'does not exist')
|
90
|
+
click_on(search_button)
|
91
|
+
end
|
92
|
+
|
93
|
+
page.has_content?(error).should == false
|
94
|
+
page.has_content?('Spec comment').should == false
|
60
95
|
end
|
61
96
|
|
62
|
-
it(
|
63
|
-
|
64
|
-
|
65
|
-
|
97
|
+
it('Edit an existing comment') do
|
98
|
+
event_comment = nil
|
99
|
+
event_comment2 = nil
|
100
|
+
comment = 'Spec modified 123'
|
101
|
+
|
102
|
+
Zen::Event.listen(:before_edit_comment) do |comment|
|
103
|
+
event_comment = comment.comment
|
104
|
+
end
|
105
|
+
|
106
|
+
Zen::Event.listen(:after_edit_comment) do |comment|
|
107
|
+
event_comment2 = comment.comment
|
108
|
+
end
|
66
109
|
|
67
110
|
visit(index_url)
|
68
111
|
click_link('Spec comment')
|
@@ -70,23 +113,35 @@ describe("Comments::Controller::Comments") do
|
|
70
113
|
current_path.should =~ /#{edit_url}\/[0-9]+/
|
71
114
|
|
72
115
|
within('#comment_form') do
|
73
|
-
fill_in('comment', :with =>
|
116
|
+
fill_in('comment', :with => comment)
|
74
117
|
select(lang('comments.labels.open'), :from => 'comment_status_id')
|
75
118
|
click_on(save_button)
|
76
119
|
end
|
77
120
|
|
78
|
-
page.find('textarea[name="comment"]').value
|
79
|
-
.should === 'Spec comment modified'
|
121
|
+
page.find('textarea[name="comment"]').value.should == comment
|
80
122
|
|
81
123
|
page.find('select[name="comment_status_id"] option[selected]').text \
|
82
|
-
.should
|
83
|
-
|
124
|
+
.should == lang('comments.labels.open')
|
125
|
+
|
126
|
+
event_comment.should == comment
|
127
|
+
event_comment2.should == event_comment
|
128
|
+
|
129
|
+
Zen::Event.delete(:before_edit_comment, :after_edit_comment)
|
130
|
+
|
131
|
+
# Modify the comment using an event
|
132
|
+
Zen::Event.listen(:before_edit_comment) do |comment|
|
133
|
+
comment.comment = 'Spec comment modified'
|
134
|
+
end
|
135
|
+
|
136
|
+
within('#comment_form') do
|
137
|
+
click_on(save_button)
|
138
|
+
end
|
84
139
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
save_button = lang('comments.buttons.save')
|
140
|
+
page.find('textarea[name="comment"]') \
|
141
|
+
.value.should == 'Spec comment modified'
|
142
|
+
end
|
89
143
|
|
144
|
+
it('Edit an existing comment with invalid data') do
|
90
145
|
visit(index_url)
|
91
146
|
click_link('Spec comment')
|
92
147
|
|
@@ -97,38 +152,43 @@ describe("Comments::Controller::Comments") do
|
|
97
152
|
click_on(save_button)
|
98
153
|
end
|
99
154
|
|
100
|
-
page.has_selector?('span.error').should
|
155
|
+
page.has_selector?('span.error').should == true
|
101
156
|
end
|
102
157
|
|
103
|
-
it('
|
104
|
-
index_url = Comments::Controller::Comments.r(:index).to_s
|
158
|
+
it('Fail to delete a set of comments without IDs') do
|
105
159
|
delete_button = lang('comments.buttons.delete')
|
106
160
|
|
107
161
|
visit(index_url)
|
108
162
|
click_on(delete_button)
|
109
163
|
|
110
|
-
page.has_selector?('input[name="comment_ids[]"]').should
|
164
|
+
page.has_selector?('input[name="comment_ids[]"]').should == true
|
111
165
|
end
|
112
166
|
|
113
|
-
it(
|
114
|
-
|
115
|
-
|
116
|
-
|
167
|
+
it('Delete an existing comment') do
|
168
|
+
delete_button = lang('comments.buttons.delete')
|
169
|
+
message = lang('comments.messages.no_comments')
|
170
|
+
event_comment = nil
|
171
|
+
event_comment2 = nil
|
172
|
+
|
173
|
+
Zen::Event.listen(:before_delete_comment) do |comment|
|
174
|
+
event_comment = comment.comment
|
175
|
+
end
|
176
|
+
|
177
|
+
Zen::Event.listen(:after_delete_comment) do |comment|
|
178
|
+
event_comment2 = comment.comment
|
179
|
+
end
|
117
180
|
|
118
181
|
visit(index_url)
|
119
182
|
check('comment_ids[]')
|
120
183
|
click_on(delete_button)
|
121
184
|
|
122
|
-
page.has_content?(message).should
|
123
|
-
page.has_selector?('table tbody tr').should
|
124
|
-
end
|
125
|
-
|
126
|
-
it("Delete all test data") do
|
127
|
-
@entry.destroy
|
128
|
-
@section.destroy
|
185
|
+
page.has_content?(message).should == true
|
186
|
+
page.has_selector?('table tbody tr').should == false
|
129
187
|
|
130
|
-
|
131
|
-
|
188
|
+
event_comment.should == 'Spec comment modified'
|
189
|
+
event_comment2.should == event_comment
|
132
190
|
end
|
133
191
|
|
192
|
+
entry.destroy
|
193
|
+
section.destroy
|
134
194
|
end
|
@@ -1,41 +1,49 @@
|
|
1
1
|
require File.expand_path('../../../../../helper', __FILE__)
|
2
|
-
require File.join(Zen::
|
2
|
+
require File.join(Zen::FIXTURES, 'package/comments/controller/comments_form')
|
3
3
|
|
4
4
|
describe("Comments::Controller::CommentsForm") do
|
5
5
|
behaves_like :capybara
|
6
6
|
|
7
7
|
before do
|
8
|
-
|
8
|
+
get_setting(:defensio_key).value = 'test'
|
9
9
|
end
|
10
10
|
|
11
11
|
after do
|
12
12
|
Comments::Model::Comment.destroy
|
13
|
-
|
13
|
+
|
14
|
+
get_setting(:defensio_key).value = nil
|
15
|
+
|
16
|
+
Zen::Event.delete(:before_new_comment, :after_new_comment)
|
14
17
|
end
|
15
18
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
19
|
+
# Set up all the required data
|
20
|
+
get_setting(:enable_antispam).value = false
|
21
|
+
get_setting(:frontend_language).value = 'en'
|
22
|
+
|
23
|
+
user_id = Users::Model::User[:name => 'Spec'].id
|
24
|
+
entry_status = Sections::Model::SectionEntryStatus[:name => 'published'].id
|
25
|
+
|
26
|
+
section = Sections::Model::Section.create(
|
27
|
+
:name => 'Spec section',
|
28
|
+
:comment_allow => true,
|
29
|
+
:comment_require_account => true,
|
30
|
+
:comment_moderate => false,
|
31
|
+
:comment_format => 'plain',
|
32
|
+
)
|
33
|
+
|
34
|
+
section_entry = Sections::Model::SectionEntry.create(
|
35
|
+
:title => 'Spec entry',
|
36
|
+
:user_id => user_id,
|
37
|
+
:section_entry_status_id => entry_status,
|
38
|
+
:section_id => section.id
|
39
|
+
)
|
40
|
+
|
41
|
+
it('Submit a comment without a CSRF token') do
|
42
|
+
url = Comments::Controller::CommentsForm.r(:save).to_s
|
43
|
+
response = page.driver.post(url)
|
44
|
+
|
45
|
+
response.body.should == lang('zen_general.errors.csrf')
|
46
|
+
response.status.should == 403
|
39
47
|
end
|
40
48
|
|
41
49
|
it('Submit a comment') do
|
@@ -43,40 +51,64 @@ describe("Comments::Controller::CommentsForm") do
|
|
43
51
|
|
44
52
|
# Submit the form
|
45
53
|
within('#spec_comments_form') do
|
46
|
-
fill_in('
|
54
|
+
fill_in('user_id' , :with => user_id)
|
55
|
+
fill_in('section_entry', :with => section_entry.id)
|
47
56
|
fill_in('name' , :with => 'Spec user')
|
48
|
-
fill_in('website' , :with => 'http://zen-cms.com/')
|
49
57
|
fill_in('email' , :with => 'spec@domain.tld')
|
50
58
|
fill_in('comment' , :with => 'Spec comment')
|
51
59
|
|
52
60
|
click_on('Submit')
|
53
61
|
end
|
54
62
|
|
55
|
-
# Let's see if the comment exists
|
56
63
|
comment = Comments::Model::Comment[:comment => 'Spec comment']
|
57
64
|
|
58
|
-
comment.
|
59
|
-
comment.comment.should
|
60
|
-
comment.
|
61
|
-
comment.
|
62
|
-
comment.section_entry_id === @section_entry.id
|
65
|
+
comment.user_name.should == 'Spec'
|
66
|
+
comment.comment.should == 'Spec comment'
|
67
|
+
comment.user_email.should == 'spec@domain.tld'
|
68
|
+
comment.section_entry_id == section_entry.id
|
63
69
|
end
|
64
70
|
|
65
|
-
it('Submit a comment
|
66
|
-
|
67
|
-
|
71
|
+
it('Submit a comment with custom events') do
|
72
|
+
event_comment = nil
|
73
|
+
|
74
|
+
Zen::Event.listen(:before_new_comment) do |comment|
|
75
|
+
comment.comment = 'Spec comment event'
|
76
|
+
end
|
77
|
+
|
78
|
+
Zen::Event.listen(:after_new_comment) do |comment|
|
79
|
+
event_comment = comment.comment
|
80
|
+
end
|
81
|
+
|
82
|
+
visit(SpecCommentsForm.r(:index).to_s)
|
68
83
|
|
69
|
-
|
70
|
-
|
84
|
+
# Submit the form
|
85
|
+
within('#spec_comments_form') do
|
86
|
+
fill_in('section_entry', :with => section_entry.id)
|
87
|
+
fill_in('name' , :with => 'Spec user')
|
88
|
+
fill_in('website' , :with => 'http://zen-cms.com/')
|
89
|
+
fill_in('email' , :with => 'spec@domain.tld')
|
90
|
+
fill_in('comment' , :with => 'Spec comment')
|
91
|
+
|
92
|
+
click_on('Submit')
|
93
|
+
end
|
94
|
+
|
95
|
+
comment = Comments::Model::Comment[:comment => 'Spec comment event']
|
96
|
+
|
97
|
+
comment.name.should == 'Spec user'
|
98
|
+
comment.comment.should == 'Spec comment event'
|
99
|
+
comment.website.should == 'http://zen-cms.com/'
|
100
|
+
comment.email.should == 'spec@domain.tld'
|
101
|
+
comment.section_entry_id == section_entry.id
|
102
|
+
event_comment.should == 'Spec comment event'
|
71
103
|
end
|
72
104
|
|
73
|
-
it('
|
105
|
+
it('Fail to submit a comment with an invalid entry') do
|
74
106
|
url = SpecCommentsForm.r(:index).to_s
|
75
107
|
|
76
108
|
visit(url)
|
77
109
|
|
78
110
|
within('#spec_comments_form') do
|
79
|
-
fill_in('section_entry', :with =>
|
111
|
+
fill_in('section_entry', :with => section_entry.id + 1)
|
80
112
|
fill_in('name' , :with => 'Spec user')
|
81
113
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
82
114
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -86,21 +118,21 @@ describe("Comments::Controller::CommentsForm") do
|
|
86
118
|
end
|
87
119
|
|
88
120
|
page.body.include?(lang('comments.errors.invalid_entry')) \
|
89
|
-
.should
|
121
|
+
.should == true
|
90
122
|
|
91
|
-
current_path.should
|
123
|
+
current_path.should == url
|
92
124
|
end
|
93
125
|
|
94
|
-
it('
|
95
|
-
old_id =
|
126
|
+
it('Should fail to submit a comment for an invalid section') do
|
127
|
+
old_id = section_entry.section_id
|
96
128
|
url = SpecCommentsForm.r(:index).to_s
|
97
129
|
|
98
|
-
|
130
|
+
section_entry.update(:section_id => nil)
|
99
131
|
|
100
132
|
visit(url)
|
101
133
|
|
102
134
|
within('#spec_comments_form') do
|
103
|
-
fill_in('section_entry', :with =>
|
135
|
+
fill_in('section_entry', :with => section_entry.id)
|
104
136
|
fill_in('name' , :with => 'Spec user')
|
105
137
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
106
138
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -110,21 +142,21 @@ describe("Comments::Controller::CommentsForm") do
|
|
110
142
|
end
|
111
143
|
|
112
144
|
page.body.include?(lang('comments.errors.invalid_entry')) \
|
113
|
-
.should
|
145
|
+
.should == true
|
114
146
|
|
115
|
-
current_path.should
|
147
|
+
current_path.should == url
|
116
148
|
|
117
|
-
|
149
|
+
section_entry.update(:section_id => old_id)
|
118
150
|
end
|
119
151
|
|
120
|
-
it('
|
152
|
+
it('Should fail to submit a comment when comments are not allowed') do
|
121
153
|
url = SpecCommentsForm.r(:index).to_s
|
122
154
|
|
123
|
-
|
155
|
+
section.update(:comment_allow => false)
|
124
156
|
visit(url)
|
125
157
|
|
126
158
|
within('#spec_comments_form') do
|
127
|
-
fill_in('section_entry', :with =>
|
159
|
+
fill_in('section_entry', :with => section_entry.id)
|
128
160
|
fill_in('name' , :with => 'S)ec user')
|
129
161
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
130
162
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -134,21 +166,21 @@ describe("Comments::Controller::CommentsForm") do
|
|
134
166
|
end
|
135
167
|
|
136
168
|
page.body.include?(lang('comments.errors.comments_not_allowed')) \
|
137
|
-
.should
|
169
|
+
.should == true
|
138
170
|
|
139
|
-
current_path.should
|
171
|
+
current_path.should == url
|
140
172
|
|
141
|
-
|
173
|
+
section.update(:comment_allow => true)
|
142
174
|
end
|
143
175
|
|
144
|
-
it('
|
176
|
+
it('Fail to submit a comment when not logged in') do
|
145
177
|
url = SpecCommentsForm.r(:index).to_s
|
146
178
|
|
147
179
|
visit(Users::Controller::Users.r(:logout).to_s)
|
148
180
|
visit(url)
|
149
181
|
|
150
182
|
within('#spec_comments_form') do
|
151
|
-
fill_in('section_entry', :with =>
|
183
|
+
fill_in('section_entry', :with => section_entry.id)
|
152
184
|
fill_in('name' , :with => 'Spec user')
|
153
185
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
154
186
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -158,16 +190,16 @@ describe("Comments::Controller::CommentsForm") do
|
|
158
190
|
end
|
159
191
|
|
160
192
|
page.body.include?(lang('comments.errors.comments_require_account')) \
|
161
|
-
.should
|
193
|
+
.should == true
|
162
194
|
|
163
|
-
current_path.should
|
195
|
+
current_path.should == url
|
164
196
|
|
165
197
|
# Log back in
|
166
198
|
capybara_login
|
167
199
|
end
|
168
200
|
|
169
201
|
it('Submit a comment with moderation turned on') do
|
170
|
-
|
202
|
+
section.update(:comment_moderate => true)
|
171
203
|
|
172
204
|
url = SpecCommentsForm.r(:index).to_s
|
173
205
|
closed_status = Comments::Model::CommentStatus[:name => 'closed']
|
@@ -175,7 +207,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
175
207
|
visit(url)
|
176
208
|
|
177
209
|
within('#spec_comments_form') do
|
178
|
-
fill_in('section_entry', :with =>
|
210
|
+
fill_in('section_entry', :with => section_entry.id)
|
179
211
|
fill_in('name' , :with => 'Spec user')
|
180
212
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
181
213
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -184,13 +216,13 @@ describe("Comments::Controller::CommentsForm") do
|
|
184
216
|
click_on('Submit')
|
185
217
|
end
|
186
218
|
|
187
|
-
page.body.include?(lang('comments.success.moderate')).should
|
188
|
-
current_path.should
|
219
|
+
page.body.include?(lang('comments.success.moderate')).should == true
|
220
|
+
current_path.should == url
|
189
221
|
|
190
222
|
Comments::Model::Comment[:comment => 'Spec comment'] \
|
191
|
-
.comment_status_id.should
|
223
|
+
.comment_status_id.should == closed_status.id
|
192
224
|
|
193
|
-
|
225
|
+
section.update(:comment_moderate => false)
|
194
226
|
end
|
195
227
|
|
196
228
|
it('Submit a comment and mark it as ham') do
|
@@ -211,7 +243,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
211
243
|
'http://api.defensio.com/2.0/users/test/documents.yaml'
|
212
244
|
).to_return(:body => yaml_response)
|
213
245
|
|
214
|
-
|
246
|
+
get_setting(:enable_antispam).value = '1'
|
215
247
|
|
216
248
|
url = SpecCommentsForm.r(:index).to_s
|
217
249
|
open_status = Comments::Model::CommentStatus[:name => 'open']
|
@@ -219,7 +251,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
219
251
|
visit(url)
|
220
252
|
|
221
253
|
within('#spec_comments_form') do
|
222
|
-
fill_in('section_entry', :with =>
|
254
|
+
fill_in('section_entry', :with => section_entry.id)
|
223
255
|
fill_in('name' , :with => 'Spec alternative')
|
224
256
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
225
257
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -228,13 +260,13 @@ describe("Comments::Controller::CommentsForm") do
|
|
228
260
|
click_on('Submit')
|
229
261
|
end
|
230
262
|
|
231
|
-
page.body.include?(lang('comments.success.new')).should
|
232
|
-
current_path.should
|
263
|
+
page.body.include?(lang('comments.success.new')).should == true
|
264
|
+
current_path.should == url
|
233
265
|
|
234
266
|
Comments::Model::Comment[:name => 'Spec alternative'] \
|
235
|
-
.comment_status_id.should
|
267
|
+
.comment_status_id.should == open_status.id
|
236
268
|
|
237
|
-
|
269
|
+
get_setting(:enable_antispam).value = '0'
|
238
270
|
WebMock.reset!
|
239
271
|
end
|
240
272
|
|
@@ -256,9 +288,9 @@ describe("Comments::Controller::CommentsForm") do
|
|
256
288
|
'http://api.defensio.com/2.0/users/test/documents.yaml'
|
257
289
|
).to_return(:body => yaml_response)
|
258
290
|
|
259
|
-
|
291
|
+
get_setting(:enable_antispam).value = '1'
|
260
292
|
|
261
|
-
|
293
|
+
section.update(:comment_moderate => true)
|
262
294
|
|
263
295
|
url = SpecCommentsForm.r(:index).to_s
|
264
296
|
closed_status = Comments::Model::CommentStatus[:name => 'closed']
|
@@ -266,7 +298,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
266
298
|
visit(url)
|
267
299
|
|
268
300
|
within('#spec_comments_form') do
|
269
|
-
fill_in('section_entry', :with =>
|
301
|
+
fill_in('section_entry', :with => section_entry.id)
|
270
302
|
fill_in('name' , :with => 'Spec alternative')
|
271
303
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
272
304
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -275,16 +307,16 @@ describe("Comments::Controller::CommentsForm") do
|
|
275
307
|
click_on('Submit')
|
276
308
|
end
|
277
309
|
|
278
|
-
page.body.include?(lang('comments.success.moderate')).should
|
279
|
-
current_path.should
|
310
|
+
page.body.include?(lang('comments.success.moderate')).should == true
|
311
|
+
current_path.should == url
|
280
312
|
|
281
313
|
Comments::Model::Comment[:name => 'Spec alternative'] \
|
282
|
-
.comment_status_id.should
|
314
|
+
.comment_status_id.should == closed_status.id
|
283
315
|
|
284
|
-
|
316
|
+
get_setting(:enable_antispam).value = '0'
|
285
317
|
WebMock.reset!
|
286
318
|
|
287
|
-
|
319
|
+
section.update(:comment_moderate => false)
|
288
320
|
end
|
289
321
|
|
290
322
|
it('Submit a comment and mark it as spam') do
|
@@ -305,7 +337,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
305
337
|
'http://api.defensio.com/2.0/users/test/documents.yaml'
|
306
338
|
).to_return(:body => yaml_response)
|
307
339
|
|
308
|
-
|
340
|
+
get_setting(:enable_antispam).value = '1'
|
309
341
|
|
310
342
|
url = SpecCommentsForm.r(:index).to_s
|
311
343
|
spam_status = Comments::Model::CommentStatus[:name => 'spam']
|
@@ -313,7 +345,7 @@ describe("Comments::Controller::CommentsForm") do
|
|
313
345
|
visit(url)
|
314
346
|
|
315
347
|
within('#spec_comments_form') do
|
316
|
-
fill_in('section_entry', :with =>
|
348
|
+
fill_in('section_entry', :with => section_entry.id)
|
317
349
|
fill_in('name' , :with => 'Spec alternative')
|
318
350
|
fill_in('website' , :with => 'http://zen-cms.com/')
|
319
351
|
fill_in('email' , :with => 'spec@domain.tld')
|
@@ -322,22 +354,16 @@ describe("Comments::Controller::CommentsForm") do
|
|
322
354
|
click_on('Submit')
|
323
355
|
end
|
324
356
|
|
325
|
-
page.body.include?(lang('comments.success.new')).should
|
326
|
-
current_path.should
|
357
|
+
page.body.include?(lang('comments.success.new')).should == true
|
358
|
+
current_path.should == url
|
327
359
|
|
328
360
|
Comments::Model::Comment[:name => 'Spec alternative'] \
|
329
|
-
.comment_status_id.should
|
361
|
+
.comment_status_id.should == spam_status.id
|
330
362
|
|
331
|
-
|
363
|
+
get_setting(:enable_antispam).value = '0'
|
332
364
|
WebMock.reset!
|
333
365
|
end
|
334
366
|
|
335
|
-
|
336
|
-
|
337
|
-
@section.destroy
|
338
|
-
|
339
|
-
Sections::Model::Section[:name => 'Spec section'].should === nil
|
340
|
-
Sections::Model::SectionEntry[:title => 'Spec entry'].should === nil
|
341
|
-
end
|
342
|
-
|
367
|
+
section_entry.destroy
|
368
|
+
section.destroy
|
343
369
|
end
|