wagn 1.13.0 → 1.14.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Guardfile +3 -2
- data/VERSION +1 -1
- data/app/controllers/card_controller.rb +33 -38
- data/config/routes.rb +2 -2
- data/config/version.txt +1 -1
- data/db/bootstrap/card_actions.yml +3543 -0
- data/db/bootstrap/card_acts.yml +7 -0
- data/db/bootstrap/card_changes.yml +9150 -0
- data/db/bootstrap/card_references.yml +666 -344
- data/db/bootstrap/cards.yml +3256 -1702
- data/db/migrate/20140822073704_create_new_revision_tables.rb +43 -0
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +62 -0
- data/db/migrate_cards/20130411191151_renaming_for_menu.rb +42 -45
- data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +13 -16
- data/db/migrate_cards/20130419215612_import_help_text.rb +7 -10
- data/db/migrate_cards/20130823192433_add_style_cards.rb +77 -81
- data/db/migrate_cards/20130910183318_move_styles_to_content.rb +4 -7
- data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +9 -12
- data/db/migrate_cards/20130920291703_update_stylesheets.rb +10 -13
- data/db/migrate_cards/20130927191728_account_events.rb +15 -18
- data/db/migrate_cards/20131016172445_common_css_patch.rb +5 -8
- data/db/migrate_cards/20140110193325_reset_account_request_type.rb +4 -7
- data/db/migrate_cards/20140307231621_user_data_to_cards.rb +50 -53
- data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +39 -42
- data/db/migrate_cards/20140512155840_add_script_cards.rb +56 -59
- data/db/migrate_cards/20140629222005_add_email_cards.rb +168 -0
- data/db/migrate_cards/20140725180118_config_card_updates.rb +4 -7
- data/db/migrate_cards/data/mailer/follower_notification_email.html +9 -0
- data/db/migrate_cards/data/mailer/follower_notification_email.txt +11 -0
- data/db/migrate_cards/data/mailer/mail_config.json +22 -0
- data/db/migrate_cards/data/mailer/password_reset_email.html +10 -0
- data/db/migrate_cards/data/mailer/password_reset_email.txt +11 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.html +7 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.txt +5 -0
- data/db/migrate_cards/data/mailer/verification_email.html +9 -0
- data/db/migrate_cards/data/mailer/verification_email.txt +8 -0
- data/db/schema.rb +31 -1
- data/features/conflict.feature +39 -0
- data/features/flexmail.feature +54 -54
- data/features/notifications.feature +4 -2
- data/features/reset_password.feature +1 -1
- data/features/step_definitions/wagn_steps.rb +20 -2
- data/features/step_definitions/window_steps.rb +23 -0
- data/features/support/env.rb +1 -0
- data/features/update_includers.feature +16 -10
- data/features/watch.feature +2 -2
- data/lib/card.rb +11 -10
- data/lib/card/act.rb +63 -0
- data/lib/card/action.rb +194 -0
- data/lib/card/change.rb +29 -0
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +229 -276
- data/lib/card/env.rb +4 -3
- data/lib/card/format.rb +2 -5
- data/lib/card/generators/card_migration/USAGE +15 -3
- data/lib/card/generators/card_migration/card_migration_generator.rb +22 -2
- data/lib/card/generators/card_migration/templates/card_migration.erb +4 -5
- data/lib/card/generators/format/USAGE +2 -2
- data/lib/card/generators/format/format_generator.rb +2 -2
- data/lib/card/generators/set/USAGE +2 -2
- data/lib/card/mailer.rb +21 -100
- data/lib/card/name.rb +4 -3
- data/lib/card/query.rb +2 -2
- data/lib/card/query/card_spec.rb +20 -30
- data/lib/card/query/value_spec.rb +2 -3
- data/lib/card/set.rb +3 -0
- data/lib/wagn/all.rb +6 -0
- data/lib/wagn/application.rb +16 -6
- data/lib/wagn/commands.rb +87 -27
- data/lib/wagn/config/environments/development.rb +17 -0
- data/lib/wagn/config/environments/test.rb +14 -1
- data/lib/wagn/config/initializers/airbrake.rb +1 -1
- data/lib/wagn/generators/wagn/templates/Gemfile +27 -9
- data/lib/wagn/generators/wagn/templates/config/application.rb +12 -3
- data/lib/wagn/generators/wagn/templates/simplecov +5 -0
- data/lib/wagn/generators/wagn/templates/spec/spec_helper.rb +1 -0
- data/lib/wagn/generators/wagn/wagn_generator.rb +75 -45
- data/lib/wagn/location.rb +9 -0
- data/lib/wagn/migration.rb +96 -0
- data/lib/wagn/mods_spec_helper.rb +16 -8
- data/lib/wagn/simplecov_helper.rb +61 -0
- data/lib/wagn/{wagn_spec_helper.rb → spec_helper.rb} +11 -3
- data/lib/wagn/tasks/test.rake +1 -1
- data/lib/wagn/tasks/wagn.rake +100 -34
- data/lib/wagn/version.rb +7 -2
- data/mod/{core → 01_core}/chunk/include.rb +0 -0
- data/mod/{core → 01_core}/chunk/link.rb +0 -0
- data/mod/{core → 01_core}/chunk/literal.rb +0 -0
- data/mod/{core → 01_core}/chunk/reference.rb +15 -3
- data/mod/{core → 01_core}/chunk/uri.rb +0 -0
- data/mod/{core → 01_core}/format/data_format.rb +0 -0
- data/mod/{core → 01_core}/format/html_format.rb +5 -2
- data/mod/{core → 01_core}/format/text_format.rb +0 -0
- data/mod/{core → 01_core}/layout/blank.html +0 -0
- data/mod/{core → 01_core}/layout/default.html +0 -0
- data/mod/{core → 01_core}/layout/noside.html +0 -0
- data/mod/{core → 01_core}/layout/pre.html +0 -0
- data/mod/{core → 01_core}/layout/simple.html +0 -0
- data/mod/{core → 01_core}/set/all/active_card.rb +0 -0
- data/mod/{core → 01_core}/set/all/collection.rb +33 -5
- data/mod/01_core/set/all/content.rb +144 -0
- data/mod/01_core/set/all/erb.rb +11 -0
- data/mod/{core → 01_core}/set/all/fetch.rb +8 -1
- data/mod/01_core/set/all/haml.rb +7 -0
- data/mod/{core → 01_core}/set/all/initialize.rb +4 -2
- data/mod/{core → 01_core}/set/all/name.rb +2 -3
- data/mod/01_core/set/all/notify.rb +215 -0
- data/mod/{core → 01_core}/set/all/pattern.rb +0 -0
- data/mod/{core → 01_core}/set/all/permissions.rb +1 -1
- data/mod/{core → 01_core}/set/all/phases.rb +24 -8
- data/mod/{core → 01_core}/set/all/references.rb +2 -2
- data/mod/{core → 01_core}/set/all/rules.rb +2 -2
- data/mod/{core → 01_core}/set/all/states.rb +1 -1
- data/mod/{core → 01_core}/set/all/templating.rb +4 -4
- data/mod/{core → 01_core}/set/all/tracked_attributes.rb +15 -64
- data/mod/{core → 01_core}/set/all/trash.rb +6 -5
- data/mod/{core → 01_core}/set/all/type.rb +0 -0
- data/mod/{core → 01_core}/set/all/utils.rb +1 -1
- data/mod/{core → 01_core}/set_pattern/01_all.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/02_all_plus.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/03_type.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/04_star.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/05_rstar.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/06_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/07_type_plus_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/08_self.rb +0 -0
- data/mod/01_core/spec/chunk/literal_spec.rb +14 -0
- data/{spec/mod/core → mod/01_core/spec}/chunk/uri_spec.rb +3 -3
- data/{spec/mod/core → mod/01_core/spec}/format/data_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/format/html_format_spec.rb +9 -8
- data/{spec/mod/core → mod/01_core/spec}/format/text_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/active_card_spec.rb +0 -0
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +21 -0
- data/mod/01_core/spec/set/all/collection_spec.rb +65 -0
- data/mod/01_core/spec/set/all/content_spec.rb +15 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/fetch_spec.rb +70 -68
- data/{spec/mod/core → mod/01_core/spec}/set/all/initialize_spec.rb +12 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/name_spec.rb +7 -7
- data/mod/01_core/spec/set/all/notify_spec.rb +199 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/pattern_spec.rb +16 -16
- data/{spec/mod/core → mod/01_core/spec}/set/all/permissions_spec.rb +62 -62
- data/{spec/mod/core → mod/01_core/spec}/set/all/phases_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/references_spec.rb +1 -1
- data/{spec/mod/core → mod/01_core/spec}/set/all/rules2_spec.rb +57 -57
- data/mod/01_core/spec/set/all/rules_spec.rb +81 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/states_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/templating_spec.rb +16 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/tracked_attributes_spec.rb +24 -22
- data/{spec/mod/core → mod/01_core/spec}/set/all/trash_spec.rb +2 -2
- data/{spec/mod/core → mod/01_core/spec}/set/all/type_spec.rb +13 -13
- data/{spec/mod/core → mod/01_core/spec}/set/all/utils_spec.rb +0 -0
- data/mod/{core → 02_basic_types}/set/type/plain_text.rb +0 -0
- data/mod/{standard → 02_basic_types}/set/type/pointer.rb +21 -8
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/plain_text_spec.rb +0 -0
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/pointer_spec.rb +22 -9
- data/mod/{standard → 03_machines}/lib/card/machine.rb +3 -2
- data/mod/{standard → 03_machines}/lib/card/machine_input.rb +1 -1
- data/mod/{standard → 03_machines}/lib/javascript/html5shiv-printshiv.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery-ui.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.autosize.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.fileupload.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.iframe-transport.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.ui.autocomplete.html.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery_ujs.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquerymobile.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/tinymce.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn.js.coffee +17 -9
- data/mod/{standard → 03_machines}/lib/javascript/wagn_menu.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn_mod.js.coffee +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/functional.scss +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/jquery-ui-smoothness.css +0 -0
- data/mod/{standard → 03_machines}/lib/stylesheets/standard.scss +126 -21
- data/mod/{standard → 03_machines}/set/right/machine_output.rb +3 -2
- data/mod/{standard → 03_machines}/set/self/script_card_menu.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_html5shiv_printshiv.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery_helper.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_slot.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_tinymce.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_functional.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_jquery_ui_smoothness.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_standard.rb +1 -1
- data/mod/{standard → 03_machines}/set/type/coffee_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/css.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/java_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/scss.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/skin.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_input_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_spec.rb +4 -4
- data/{spec/mod/standard → mod/03_machines/spec}/set/right/machine_output_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_functional_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_jquery_ui_smoothness_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_standard_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/coffeescript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/css_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/javascript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/scss_spec.rb +1 -1
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/skin_spec.rb +22 -0
- data/mod/04_settings/lib/card/setting.rb +57 -0
- data/mod/{core/set/right/structure.rb → 04_settings/set/right/add_help.rb} +0 -2
- data/mod/{standard → 04_settings}/set/right/comment.rb +0 -1
- data/mod/{standard → 04_settings}/set/right/create.rb +0 -1
- data/mod/04_settings/set/right/default.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/delete.rb +2 -0
- data/mod/04_settings/set/right/help.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/read.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/script.rb +0 -0
- data/mod/04_settings/set/right/structure.rb +4 -0
- data/mod/{standard → 04_settings}/set/right/style.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/update.rb +0 -0
- data/mod/04_settings/set/self/accountable.rb +2 -0
- data/mod/04_settings/set/self/add_help.rb +2 -0
- data/mod/04_settings/set/self/autoname.rb +2 -0
- data/mod/04_settings/set/self/captcha.rb +2 -0
- data/mod/04_settings/set/self/comment.rb +2 -0
- data/mod/04_settings/set/self/create.rb +2 -0
- data/mod/04_settings/set/self/default.rb +2 -0
- data/mod/04_settings/set/self/delete.rb +2 -0
- data/mod/04_settings/set/self/help.rb +2 -0
- data/mod/04_settings/set/self/input.rb +2 -0
- data/mod/04_settings/set/self/layout.rb +2 -0
- data/mod/04_settings/set/self/on_create.rb +2 -0
- data/mod/04_settings/set/self/on_delete.rb +2 -0
- data/mod/04_settings/set/self/on_update.rb +2 -0
- data/mod/04_settings/set/self/options.rb +2 -0
- data/mod/04_settings/set/self/options_label.rb +2 -0
- data/mod/04_settings/set/self/read.rb +2 -0
- data/mod/04_settings/set/self/script.rb +2 -0
- data/mod/04_settings/set/self/structure.rb +2 -0
- data/mod/04_settings/set/self/style.rb +2 -0
- data/mod/04_settings/set/self/table_of_contents.rb +2 -0
- data/mod/04_settings/set/self/thanks.rb +2 -0
- data/mod/04_settings/set/self/update.rb +2 -0
- data/mod/{standard → 04_settings}/set/type/setting.rb +8 -14
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/add_help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/comment_spec.rb +5 -5
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/create_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/default_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/delete_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/read_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/script_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/structure_spec.rb +4 -2
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/style_spec.rb +1 -1
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/update_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/type/setting_spec.rb +0 -0
- data/mod/{standard → 05_standard}/file/103/icon-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/large-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/medium-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/original-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/small-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/79/icon-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/large-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/medium-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/original-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/small-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/790/icon-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/large-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/medium-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/original-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/small-6419.png +0 -0
- data/mod/{standard → 05_standard}/format/css_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/csv_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/file_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/js_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/json_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/rss_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/xml_format.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/account.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_css.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_csv.rb +1 -1
- data/mod/05_standard/set/all/all_js.rb +7 -0
- data/mod/{standard → 05_standard}/set/all/attach.rb +33 -33
- data/mod/{standard → 05_standard}/set/all/base.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/comment.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/event_viz.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/file.rb +0 -0
- data/mod/05_standard/set/all/follow.rb +51 -0
- data/mod/05_standard/set/all/history.rb +294 -0
- data/mod/{standard → 05_standard}/set/all/json.rb +2 -1
- data/mod/05_standard/set/all/observer.rb +27 -0
- data/mod/{standard → 05_standard}/set/all/rich_html.rb +21 -28
- data/mod/{standard → 05_standard}/set/all/rss.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/text.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/account.rb +53 -7
- data/mod/{standard → 05_standard}/set/right/email.rb +0 -1
- data/mod/{standard → 05_standard}/set/right/password.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/salt.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/stats.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/status.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/token.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_created.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_last_edited.rb +0 -0
- data/mod/{standard → 05_standard}/set/rstar/rules.rb +8 -7
- data/mod/{standard → 05_standard}/set/self/account_links.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/alerts.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/all.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/foot.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/head.rb +21 -6
- data/mod/{standard → 05_standard}/set/self/navbox.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/now.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/recent.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/search.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/signin.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/stats.rb +2 -2
- data/mod/{standard → 05_standard}/set/self/version.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/basic.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/cardtype.rb +4 -6
- data/mod/{standard → 05_standard}/set/type/date.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/file.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/html.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/image.rb +7 -6
- data/mod/{standard → 05_standard}/set/type/layout_type.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/number.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/phrase.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/search_type.rb +6 -3
- data/mod/{standard → 05_standard}/set/type/set.rb +16 -9
- data/mod/{standard → 05_standard}/set/type/signup.rb +16 -17
- data/mod/{standard → 05_standard}/set/type/toggle.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/user.rb +10 -11
- data/{spec/mod/standard → mod/05_standard/spec}/chunk/include_spec.rb +39 -39
- data/mod/05_standard/spec/chunk/link_spec.rb +61 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/css_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/csv_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/email_html_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/file_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/js_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/json_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/rss_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/xml_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/account_spec.rb +16 -16
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_css_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_csv_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/attach_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/base_spec.rb +10 -10
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/comment_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/email_html_spec.rb +15 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/event_viz_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/file_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/follow_spec.rb +83 -0
- data/mod/05_standard/spec/set/all/history_spec.rb +161 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/json_spec.rb +4 -4
- data/mod/05_standard/spec/set/all/observer_spec.rb +74 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rich_html_spec.rb +14 -14
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rss_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/text_spec.rb +0 -0
- data/mod/05_standard/spec/set/right/account_spec.rb +162 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/email_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/password_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/salt_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/status_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/token_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_created_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_last_edited_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/rstar/rules_spec.rb +4 -4
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/account_links_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/alerts_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/all_spec.rb +7 -6
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/foot_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/head_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/navbox_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/now_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/recent_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/search_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/signin_spec.rb +12 -12
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/version_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/basic_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/cardtype_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/date_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/email_template_spec.rb +130 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/file_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/html_spec.rb +3 -3
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/image_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/layout_type_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/number_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/phrase_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/search_type_spec.rb +27 -0
- data/mod/05_standard/spec/set/type/set_spec.rb +26 -0
- data/mod/05_standard/spec/set/type/signup_spec.rb +209 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/toggle_spec.rb +2 -2
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/user_spec.rb +0 -0
- data/mod/{standard → 06_email}/format/email_html_format.rb +0 -0
- data/mod/06_email/format/email_text_format.rb +7 -0
- data/mod/06_email/set/all/email_html.rb +9 -0
- data/mod/{standard/set/all/email_html.rb → 06_email/set/all/email_text.rb} +2 -1
- data/mod/06_email/set/right/bcc.rb +31 -0
- data/mod/06_email/set/right/cc.rb +2 -0
- data/mod/06_email/set/right/from.rb +2 -0
- data/mod/06_email/set/right/html_message.rb +3 -0
- data/mod/06_email/set/right/to.rb +2 -0
- data/mod/06_email/set/type/email_template.rb +99 -0
- data/spec/controllers/card_controller_spec.rb +34 -46
- data/spec/lib/card/action_spec.rb +14 -0
- data/spec/lib/card/chunk_spec.rb +3 -3
- data/spec/lib/card/codename_spec.rb +5 -5
- data/spec/lib/card/content_spec.rb +25 -25
- data/spec/lib/card/diff_spec.rb +107 -107
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/loader_spec.rb +35 -29
- data/spec/lib/card/name_spec.rb +82 -82
- data/spec/lib/card/query_spec.rb +83 -82
- data/spec/lib/card/reference_spec.rb +30 -30
- data/spec/lib/card/set_pattern_spec.rb +1 -1
- data/spec/lib/card/set_spec.rb +86 -82
- data/spec/lib/wagn/cache_spec.rb +24 -24
- data/spec/mailers/mailer_spec.rb +41 -30
- data/spec/models/card/cardtype_spec.rb +19 -19
- data/spec/models/card/create_spec.rb +14 -14
- data/spec/models/card/trash_spec.rb +37 -36
- data/spec/models/card/type_transition_spec.rb +13 -13
- data/spec/models/card/validation_spec.rb +6 -6
- data/spec/models/card_spec.rb +40 -39
- data/spec/spec_helper.rb +37 -11
- data/test/fixtures/card_actions.yml +4726 -0
- data/test/fixtures/card_acts.yml +589 -0
- data/test/fixtures/card_changes.yml +12644 -0
- data/test/fixtures/card_references.yml +976 -591
- data/test/fixtures/cards.yml +4544 -2781
- data/test/seed.rb +14 -13
- data/wagn.gemspec +4 -0
- metadata +404 -403
- data/db/bootstrap/card_revisions.yml +0 -3379
- data/lib/card/flexmail.rb +0 -53
- data/lib/card/mailer/change_notice.html.erb +0 -32
- data/lib/card/mailer/confirmation_email.html.erb +0 -12
- data/lib/card/mailer/flexmail.html.erb +0 -6
- data/lib/card/mailer/password_reset.html.erb +0 -9
- data/lib/card/mailer/signup_alert.html.erb +0 -14
- data/lib/card/revision.rb +0 -47
- data/lib/wagn/migration_helper.rb +0 -34
- data/mod/core/set/all/attribute_tracking.rb +0 -85
- data/mod/core/set/all/content.rb +0 -94
- data/mod/standard/set/all/flexmail.rb +0 -3
- data/mod/standard/set/all/follow.rb +0 -119
- data/mod/standard/set/all/history.rb +0 -107
- data/mod/standard/set/right/add_help.rb +0 -3
- data/mod/standard/set/right/default.rb +0 -3
- data/mod/standard/set/right/help.rb +0 -3
- data/spec/lib/card/flexmail_spec.rb +0 -209
- data/spec/lib/card/revision_spec.rb +0 -30
- data/spec/mod/core/chunk/literal_spec.rb +0 -14
- data/spec/mod/core/set/all/attribute_tracking_spec.rb +0 -21
- data/spec/mod/core/set/all/collection_spec.rb +0 -45
- data/spec/mod/core/set/all/content_spec.rb +0 -14
- data/spec/mod/core/set/all/rules_spec.rb +0 -98
- data/spec/mod/standard/chunk/link_spec.rb +0 -59
- data/spec/mod/standard/set/all/email_html_spec.rb +0 -13
- data/spec/mod/standard/set/all/flexmail_spec.rb +0 -5
- data/spec/mod/standard/set/all/follow_spec.rb +0 -95
- data/spec/mod/standard/set/all/history_spec.rb +0 -10
- data/spec/mod/standard/set/right/account_spec.rb +0 -90
- data/spec/mod/standard/set/type/search_type_spec.rb +0 -27
- data/spec/mod/standard/set/type/set_spec.rb +0 -26
- data/spec/mod/standard/set/type/signup_spec.rb +0 -169
- data/test/fixtures/card_revisions.yml +0 -4560
File without changes
|
File without changes
|
@@ -8,24 +8,25 @@ describe Card::Set::Self::All do
|
|
8
8
|
end
|
9
9
|
|
10
10
|
context '#update' do
|
11
|
-
it 'should
|
11
|
+
it 'should trigger empty trash (with right params)' do
|
12
12
|
Card::Auth.as_bot do
|
13
13
|
Card['A'].delete!
|
14
|
-
Card.where( :trash=>true ).
|
14
|
+
expect(Card.where( :trash=>true )).not_to be_empty
|
15
15
|
Card::Env.params[:task] = :empty_trash
|
16
16
|
@all.update_attributes({})
|
17
|
-
Card.where( :trash=>true ).
|
17
|
+
expect(Card.where( :trash=>true )).to be_empty
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
it 'should
|
21
|
+
it 'should trigger deleting old revisions (with right params)' do
|
22
22
|
Card::Auth.as_bot do
|
23
23
|
a = Card['A']
|
24
24
|
a.update_attributes! :content=>'a new day'
|
25
|
-
a.
|
25
|
+
a.update_attributes! :content=>'another day'
|
26
|
+
expect(a.actions.count).to eq(3)
|
26
27
|
Card::Env.params[:task] = :delete_old_revisions
|
27
28
|
@all.update_attributes({})
|
28
|
-
a.
|
29
|
+
expect(a.actions.count).to eq(1)
|
29
30
|
end
|
30
31
|
end
|
31
32
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -10,43 +10,43 @@ describe Card::Set::Self::Signin do
|
|
10
10
|
|
11
11
|
it 'open view should have email and password fields' do
|
12
12
|
open_view = @card.format.render_open
|
13
|
-
open_view.
|
14
|
-
open_view.
|
13
|
+
expect(open_view).to match(/email/)
|
14
|
+
expect(open_view).to match(/password/)
|
15
15
|
|
16
16
|
end
|
17
17
|
|
18
18
|
it 'edit view should prompt for forgot password' do
|
19
19
|
edit_view = @card.format.render_edit
|
20
|
-
edit_view.
|
21
|
-
edit_view.
|
20
|
+
expect(edit_view).to match(/email/)
|
21
|
+
expect(edit_view).to match(/reset_password/)
|
22
22
|
end
|
23
23
|
|
24
24
|
it 'password reset success view should prompt to check email' do
|
25
25
|
rps_view = @card.format.render_reset_password_success
|
26
|
-
rps_view.
|
26
|
+
expect(rps_view).to match(/Check your email/)
|
27
27
|
end
|
28
28
|
|
29
29
|
it 'delete action should sign out account' do
|
30
|
-
Card::Auth.current_id.
|
30
|
+
expect(Card::Auth.current_id).to eq(Card['joe_user'].id)
|
31
31
|
@card.delete
|
32
|
-
Card::Auth.current_id.
|
32
|
+
expect(Card::Auth.current_id).to eq(Card::AnonymousID)
|
33
33
|
end
|
34
34
|
|
35
35
|
context "#update" do
|
36
36
|
it 'should trigger signin with valid credentials' do
|
37
37
|
@card.update_attributes! '+*email'=>'joe@admin.com', '+*password'=>'joe_pass'
|
38
|
-
Card::Auth.current.
|
38
|
+
expect(Card::Auth.current).to eq(Card['joe admin'])
|
39
39
|
end
|
40
40
|
|
41
41
|
|
42
42
|
it 'should not trigger signin with bad email' do
|
43
43
|
@card.update_attributes! '+*email'=>'schmoe@admin.com', '+*password'=>'joe_pass'
|
44
|
-
@card.errors[:signin].first.
|
44
|
+
expect(@card.errors[:signin].first).to match(/Unrecognized email/)
|
45
45
|
end
|
46
46
|
|
47
47
|
it 'should not trigger signin with bad password' do
|
48
48
|
@card.update_attributes! '+*email'=>'joe@admin.com', '+*password'=>'joe_fail'
|
49
|
-
@card.errors[:signin].first.
|
49
|
+
expect(@card.errors[:signin].first).to match(/Wrong password/)
|
50
50
|
end
|
51
51
|
|
52
52
|
|
@@ -60,12 +60,12 @@ describe Card::Set::Self::Signin do
|
|
60
60
|
it 'should be triggered by an update' do
|
61
61
|
#Card['joe admin'].account.token.should be_nil FIXME - this should be t
|
62
62
|
@card.update_attributes! '+*email'=>'joe@admin.com'
|
63
|
-
Card['joe admin'].account.token.
|
63
|
+
expect(Card['joe admin'].account.token).not_to be_nil
|
64
64
|
end
|
65
65
|
|
66
66
|
it 'should return an error if email is not found' do
|
67
67
|
@card.update_attributes '+*email'=>'schmoe@admin.com'
|
68
|
-
@card.errors[:email].first.
|
68
|
+
expect(@card.errors[:email].first).to match(/not recognized/)
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,130 @@
|
|
1
|
+
describe Card::Set::Type::EmailTemplate do
|
2
|
+
def mailconfig args={}
|
3
|
+
Card['a mail template'].email_config(args)
|
4
|
+
end
|
5
|
+
|
6
|
+
before do
|
7
|
+
Card::Auth.current_id = Card::WagnBotID
|
8
|
+
Card.create! :name => "a mail template", :type=>:email_template, :subcards=>{
|
9
|
+
"+*to" => { :content => "joe@user.com" },
|
10
|
+
"+*from" => { :content => "from@user.com" },
|
11
|
+
"+*subject" => { :content => "Subject of the mail" },
|
12
|
+
"+*html_message" => { :content => "[[B]]" }
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "mail view" do
|
17
|
+
let(:rendered_mail) { Card.fetch("a mail template").format.render_mail }
|
18
|
+
|
19
|
+
|
20
|
+
it "renders absolute urls" do
|
21
|
+
Card::Env[:protocol] = 'http://'
|
22
|
+
Card::Env[:host] = 'www.fake.com'
|
23
|
+
expect(rendered_mail.body).to include('<a class="known-card" href="http://www.fake.com/B">B</a>')
|
24
|
+
end
|
25
|
+
|
26
|
+
# it "renders multipart mails" do
|
27
|
+
# end
|
28
|
+
|
29
|
+
it 'renders broken config' do
|
30
|
+
Card.fetch("a mail template+*to").update_attributes(:content=>"invalid mail address")
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "#email_config" do
|
35
|
+
it "returns correct hash with email configuration" do
|
36
|
+
Card['a mail template+*html_message'].update_attributes! :content => "Nobody expects the Spanish Inquisition"
|
37
|
+
expect(mailconfig).to eq({
|
38
|
+
:to => "joe@user.com",
|
39
|
+
:from => "from@user.com",
|
40
|
+
:subject => "Subject of the mail",
|
41
|
+
:html_message => Card::Mailer.layout("Nobody expects the Spanish Inquisition"),
|
42
|
+
})
|
43
|
+
end
|
44
|
+
|
45
|
+
it "uses context card for email config" do
|
46
|
+
Card['a mail template+*html_message'].update_attributes! :content => "Nobody expects {{_left+surprise|core}}"
|
47
|
+
c = Card.create :name=>'Banana+surprise', :content=>"the Spanish Inquisition"
|
48
|
+
c = Card.create :name => "Banana+emailtest", :content => "data content"
|
49
|
+
expect( mailconfig( context: c ) ).to eq({
|
50
|
+
:to => "joe@user.com",
|
51
|
+
:from => "from@user.com",
|
52
|
+
:subject => "Subject of the mail",
|
53
|
+
:html_message => Card::Mailer.layout("Nobody expects the Spanish Inquisition"),
|
54
|
+
})
|
55
|
+
end
|
56
|
+
|
57
|
+
it "takes Pointer value for address fields" do
|
58
|
+
Card.create! :name => "a mail template+*cc", :content => "[[joe@user.com]]", :type=>'Pointer'
|
59
|
+
expect(mailconfig[:cc]).to eq('joe@user.com')
|
60
|
+
end
|
61
|
+
|
62
|
+
it "handles +*email cards" do
|
63
|
+
Card::Auth.as_bot do
|
64
|
+
Card.create! :name => "a mail template+*cc", :content => "[[Joe User+*email]]", :type=>'Pointer'
|
65
|
+
Card.create! :name => "a mail template+*bcc", :content => '{"name":"Joe Admin","append":"*email"}', :type=>'Search'
|
66
|
+
end
|
67
|
+
conf = mailconfig
|
68
|
+
expect(conf[:cc]).to eq('joe@user.com')
|
69
|
+
expect(conf[:bcc]).to eq('joe@admin.com')
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'creates multipart email if text and html given' do
|
73
|
+
Card.create! :name => "a mail template+*text_message", :content => "Nobody expects the Spanish Inquisition"
|
74
|
+
email = render_card :mail, {:name=>"a mail template"}, {}
|
75
|
+
expect(email[:content_type].value).to include('multipart/alternative')
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe "complex config view" do
|
80
|
+
before do
|
81
|
+
class ActionView::Base
|
82
|
+
def params
|
83
|
+
@controller ? @controller.params : {}
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
Card::Auth.as_bot do
|
88
|
+
Card.create! :name => 'Bobs addy', :content=>'bob@bob.com', :type=>'Phrase'
|
89
|
+
Card.create! :name => 'default subject', :content=>'a very nutty thang', :type=>'Phrase'
|
90
|
+
Card.create! :name => "mailconfig+*to", :content => %{ {"key":"bob_addy"} }, :type=>'Search'
|
91
|
+
Card.create! :name => "mailconfig+*from", :content => %{ {"left":"_left", "right":"email"} }, :type=>'Search'
|
92
|
+
Card.create! :name => "subject search+*right+*structure", :content => %{{"referred_to_by":"_self+subject"}}, :type=>'Search'
|
93
|
+
Card.create! :name => "mailconfig+*subject", :content => "{{+subject search|core;item:core}}"
|
94
|
+
Card.create! :name => "mailconfig+*html message", :content => "Triggered by {{_self|name}} and its wonderful content: {{_self|core}}"
|
95
|
+
Card.create! :name => "mailconfig+*attach", :type=>"Pointer", :content => "[[_self+attachment]]"
|
96
|
+
Card.create! :name=>'Trigger', :type=>'Cardtype'
|
97
|
+
Card.create! :name=>'Trigger+*type+*create', :type=>'Pointer', :content=>'[[Anonymous]]'
|
98
|
+
# Card.create! :name => "Trigger+*type+*send", :content => "[[mailconfig]]", :type=>'Pointer'
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
it "returns correct hash with email configuration" do
|
103
|
+
Card::Auth.as_bot do
|
104
|
+
Card::Env[:protocol] = 'http://'
|
105
|
+
Card::Env[:host] = 'a.com'
|
106
|
+
|
107
|
+
c = Card.create(
|
108
|
+
:name => "Banana Trigger",
|
109
|
+
:content => "data content [[A]]",
|
110
|
+
:type => 'Trigger',
|
111
|
+
:subcards=> {
|
112
|
+
'+email' => {:content=>'gary@gary.com'},
|
113
|
+
'+subject' => {:type=>'Pointer', :content=>'[[default subject]]'},
|
114
|
+
# '+attachment' => {:type=>'File', :content=>"notreally.txt" }
|
115
|
+
}
|
116
|
+
)
|
117
|
+
conf = mailconfig( context: c )
|
118
|
+
|
119
|
+
expect(conf[:to ]).to eq("bob@bob.com")
|
120
|
+
expect(conf[:from ]).to eq("gary@gary.com")
|
121
|
+
expect(conf[:bcc ]).to eq(nil)
|
122
|
+
expect(conf[:cc ]).to eq(nil)
|
123
|
+
expect(conf[:subject]).to eq("a very nutty thang")
|
124
|
+
# conf[:attach ].should == ['Banana Trigger+attachment']
|
125
|
+
expect(conf[:html_message]).to include("Triggered by Banana Trigger and its wonderful content: data content " +
|
126
|
+
'<a class="known-card" href="http://a.com/A">A</a>')
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
File without changes
|
@@ -10,14 +10,14 @@ describe Card::Set::Type::Html do
|
|
10
10
|
end
|
11
11
|
|
12
12
|
it "should not render any content in closed view" do
|
13
|
-
render_card(:closed_content, :type=>'Html', :content=>"<strong>Lions and Tigers</strong>").
|
13
|
+
expect(render_card(:closed_content, :type=>'Html', :content=>"<strong>Lions and Tigers</strong>")).to eq('')
|
14
14
|
end
|
15
15
|
|
16
16
|
it "should render inclusions" do
|
17
|
-
render_card( :core, :type=>'HTML', :content=>'{{a}}' ).
|
17
|
+
expect(render_card( :core, :type=>'HTML', :content=>'{{a}}' )).to match(/slot/)
|
18
18
|
end
|
19
19
|
|
20
20
|
it 'should not render uris' do
|
21
|
-
render_card( :core, :type=>'HTML', :content=>'http://google.com' ).
|
21
|
+
expect(render_card( :core, :type=>'HTML', :content=>'http://google.com' )).not_to match(/\<a/)
|
22
22
|
end
|
23
23
|
end
|
@@ -11,6 +11,6 @@ describe Card::Set::Type::Image do
|
|
11
11
|
image_card = Card.create! :name => "TestImage", :type=>"Image", :content => %{TestImage.jpg\nimage/jpeg\n12345}
|
12
12
|
including_card = Card.new :name => 'Image1', :content => "{{TestImage | core; size:small }}"
|
13
13
|
rendered = including_card.format._render :core
|
14
|
-
assert_view_select rendered, 'img[src=?]', "/files/TestImage-small-#{image_card.
|
14
|
+
assert_view_select rendered, 'img[src=?]', "/files/TestImage-small-#{image_card.last_content_action_id}.jpg"
|
15
15
|
end
|
16
16
|
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
describe Card::Set::Type::SearchType do
|
4
|
+
it "should wrap search items with correct view class" do
|
5
|
+
Card.create :type=>'Search', :name=>'Asearch', :content=>%{{"type":"User"}}
|
6
|
+
c=render_content("{{Asearch|core;item:name}}")
|
7
|
+
expect(c).to match('search-result-item item-name')
|
8
|
+
expect(render_content("{{Asearch|core}}" ).scan('search-result-item item-closed').size).to eq(10)
|
9
|
+
expect(render_content("{{Asearch|core;item:open}}").scan('search-result-item item-open' ).size).to eq(10)
|
10
|
+
expect(render_content("{{Asearch|core|titled}}" ).scan('search-result-item item-titled').size).to eq(10)
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should handle returning 'count'" do
|
14
|
+
expect(render_card(:core, :type=>'Search', :content=>%{{ "type":"User", "return":"count"}})).to eq('10')
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should pass item args correctly" do
|
18
|
+
Card.create!(
|
19
|
+
:name=>'Pointer2Searches',
|
20
|
+
:type_id=>Card::PointerID,
|
21
|
+
:content=>"[[Layout+*type+by name]]\n[[PlainText+*type+by name]]"
|
22
|
+
)
|
23
|
+
r = render_content "{{Pointer2Searches|core|closed|hide:menu}}"
|
24
|
+
expect(r.scan('"view":"link"').size).to eq(0)
|
25
|
+
expect(r.scan('item-closed').size).to eq(2) #there are two of each
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
describe Card::Set::Type::Set do
|
4
|
+
|
5
|
+
describe :junction_only? do
|
6
|
+
it "should identify sets that only apply to plus cards" do
|
7
|
+
expect(Card.fetch("*all").junction_only?).to be_falsey
|
8
|
+
expect(Card.fetch("*all plus").junction_only?).to be_truthy
|
9
|
+
expect(Card.fetch("Book+*type").junction_only?).to be_falsey
|
10
|
+
expect(Card.fetch("*to+*right").junction_only?).to be_truthy
|
11
|
+
expect(Card.fetch("Book+*to+*type plus right").junction_only?).to be_truthy
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe :inheritable? do
|
16
|
+
it "should identify sets that can inherit rules" do
|
17
|
+
expect(Card.fetch("A+*self").inheritable?).to be_falsey
|
18
|
+
expect(Card.fetch("A+B+*self").inheritable?).to be_truthy
|
19
|
+
expect(Card.fetch("Book+*to+*type plus right").inheritable?).to be_truthy
|
20
|
+
expect(Card.fetch("Book+*type").inheritable?).to be_falsey
|
21
|
+
expect(Card.fetch("*to+*right").inheritable?).to be_truthy
|
22
|
+
expect(Card.fetch("*all plus").inheritable?).to be_truthy
|
23
|
+
expect(Card.fetch("*all").inheritable?).to be_falsey
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,209 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
include Wagn::Location
|
4
|
+
describe Card::Set::Type::Signup do
|
5
|
+
|
6
|
+
before do
|
7
|
+
Card::Auth.current_id = Card::AnonymousID
|
8
|
+
end
|
9
|
+
|
10
|
+
|
11
|
+
context 'signup form form' do
|
12
|
+
before do
|
13
|
+
card = Card.new :type_id=>Card::SignupID
|
14
|
+
@form = card.format.render_new
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should prompt to signup' do
|
18
|
+
Card::Auth.as :anonymous do
|
19
|
+
expect(@form.match( /Sign up/ )).to be_truthy
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
context 'signup (without approval)' do
|
27
|
+
before do
|
28
|
+
ActionMailer::Base.deliveries = [] #needed?
|
29
|
+
|
30
|
+
Card::Auth.as_bot do
|
31
|
+
Card.create! :name=>'User+*type+*create', :content=>'[[Anyone]]'
|
32
|
+
end
|
33
|
+
|
34
|
+
Card::Auth.current_id = Card::AnonymousID
|
35
|
+
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID,
|
36
|
+
'+*account'=>{'+*email'=>'wolf@wagn.org', '+*password'=>'wolf'}
|
37
|
+
|
38
|
+
@account = @signup.account
|
39
|
+
@token = @account.token
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should create all the necessary cards' do
|
43
|
+
expect(@signup.type_id).to eq(Card::SignupID)
|
44
|
+
expect(@account.email).to eq('wolf@wagn.org')
|
45
|
+
expect(@account.status).to eq('pending')
|
46
|
+
expect(@account.salt).not_to eq('')
|
47
|
+
expect(@account.password.length).to be > 10 #encrypted
|
48
|
+
expect(@account.token).to be_present
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'should send email with an appropriate link' do
|
52
|
+
@mail = ActionMailer::Base.deliveries.last
|
53
|
+
expect( @mail.parts[0].body.raw_source ).to match(Card.setting( :title ))
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'should create an authenticable token' do
|
57
|
+
expect(@account.token).to eq(@token)
|
58
|
+
expect(@account.authenticate_by_token(@token)).to eq(@signup.id)
|
59
|
+
expect(@account.fetch(:trait=> :token)).not_to be_present
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'should notify someone' do
|
63
|
+
expect(ActionMailer::Base.deliveries.last.to).to eq(['signups@wagn.org'])
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'should be activated by an update' do
|
67
|
+
Card::Env.params[:token] = @token
|
68
|
+
@signup.update_attributes({})
|
69
|
+
#puts @signup.errors.full_messages * "\n"
|
70
|
+
expect(@signup.errors).to be_empty
|
71
|
+
expect(@signup.type_id).to eq(Card::UserID)
|
72
|
+
expect(@account.status).to eq('active')
|
73
|
+
expect(Card[ @account.name ].active?).to be_truthy
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'should reject expired token and create new token' do
|
77
|
+
@account.token_card.update_column :updated_at, 8.days.ago.strftime("%F %T")
|
78
|
+
@account.token_card.expire
|
79
|
+
Card::Env.params[:token] = @token
|
80
|
+
|
81
|
+
result = @signup.update_attributes!({})
|
82
|
+
expect(result).to eq(true) # successfully completes save
|
83
|
+
expect(@account.token).not_to eq(@token) # token gets updated
|
84
|
+
success = Card::Env.params[:success]
|
85
|
+
expect(success[:message]).to match(/expired/) # user notified of expired token
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
|
91
|
+
context 'signup (with approval)' do
|
92
|
+
before do
|
93
|
+
# NOTE: by default Anonymous does not have permission to create User cards.
|
94
|
+
Mail::TestMailer.deliveries.clear
|
95
|
+
Card::Auth.current_id = Card::AnonymousID
|
96
|
+
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID,
|
97
|
+
'+*account'=>{ '+*email'=>'wolf@wagn.org', '+*password'=>'wolf' }
|
98
|
+
@account = @signup.account
|
99
|
+
end
|
100
|
+
|
101
|
+
|
102
|
+
it 'should create all the necessary cards, but no token' do
|
103
|
+
expect(@signup.type_id).to eq(Card::SignupID)
|
104
|
+
expect(@account.email).to eq('wolf@wagn.org')
|
105
|
+
expect(@account.status).to eq('pending')
|
106
|
+
expect(@account.salt).not_to eq('')
|
107
|
+
expect(@account.password.length).to be > 10 #encrypted
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'should not create a token' do
|
111
|
+
expect(@account.token).not_to be_present
|
112
|
+
end
|
113
|
+
|
114
|
+
it 'sends signup alert email' do
|
115
|
+
signup_alert = ActionMailer::Base.deliveries.last
|
116
|
+
expect(signup_alert.to).to eq(['signups@wagn.org'])
|
117
|
+
[0, 1].each do |part|
|
118
|
+
body = signup_alert.body.parts[part].body.raw_source
|
119
|
+
expect(body).to include(@signup.name)
|
120
|
+
expect(body).to include('wolf@wagn.org')
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
it 'deos not send verification email' do
|
126
|
+
expect(Mail::TestMailer.deliveries[-2]).to be_nil
|
127
|
+
end
|
128
|
+
|
129
|
+
|
130
|
+
context 'approval with token' do
|
131
|
+
|
132
|
+
it 'should create token' do
|
133
|
+
Card::Env.params[:approve_with_token] = true
|
134
|
+
Card::Auth.as :joe_admin
|
135
|
+
|
136
|
+
@signup = Card.fetch @signup.id
|
137
|
+
@signup.save!
|
138
|
+
expect(@signup.account.token).to be_present
|
139
|
+
end
|
140
|
+
|
141
|
+
end
|
142
|
+
|
143
|
+
context 'approval without token' do
|
144
|
+
|
145
|
+
it 'should create token' do
|
146
|
+
Card::Env.params[:approve_without_token] = true
|
147
|
+
Card::Auth.as :joe_admin
|
148
|
+
|
149
|
+
@signup = Card.fetch @signup.id
|
150
|
+
@signup.save!
|
151
|
+
expect(@signup.account.token).not_to be_present
|
152
|
+
expect(@signup.type_id).to eq(Card::UserID)
|
153
|
+
expect(@signup.account.status).to eq('active')
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
end
|
158
|
+
|
159
|
+
|
160
|
+
context 'invitation' do
|
161
|
+
before do
|
162
|
+
# NOTE: by default Anonymous does not have permission to create User cards.
|
163
|
+
Card::Auth.current_id = Card::WagnBotID
|
164
|
+
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID, '+*account'=>{ '+*email'=>'wolf@wagn.org'}
|
165
|
+
@account = @signup.account
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'should create all the necessary cards, but no password' do
|
169
|
+
expect(@signup.type_id).to eq(Card::SignupID)
|
170
|
+
expect(@account.email).to eq('wolf@wagn.org')
|
171
|
+
expect(@account.status).to eq('pending')
|
172
|
+
expect(@account.salt).not_to eq('')
|
173
|
+
expect(@account.token).to be_present
|
174
|
+
expect(@account.password).not_to be_present
|
175
|
+
end
|
176
|
+
|
177
|
+
end
|
178
|
+
|
179
|
+
# describe '#signup_notifications' do
|
180
|
+
# before do
|
181
|
+
# Card::Auth.as_bot do
|
182
|
+
# Card.create! :name=>'*request+*to', :content=>'signups@wagn.org'
|
183
|
+
# end
|
184
|
+
# @user_name = 'Big Bad Wolf'
|
185
|
+
# @user_email = 'wolf@wagn.org'
|
186
|
+
# @signup = Card.create! :name=>@user_name, :type_id=>Card::SignupID, '+*account'=>{
|
187
|
+
# '+*email'=>@user_email, '+*password'=>'wolf'}
|
188
|
+
# ActionMailer::Base.deliveries = []
|
189
|
+
# @signup.signup_notifications
|
190
|
+
# @mail = ActionMailer::Base.deliveries.last
|
191
|
+
# end
|
192
|
+
#
|
193
|
+
# it 'send to correct address' do
|
194
|
+
# expect(@mail.to).to eq(['signups@wagn.org'])
|
195
|
+
# end
|
196
|
+
#
|
197
|
+
# it 'contains request url' do
|
198
|
+
# expect(@mail.body.raw_source).to include(wagn_url(@signup))
|
199
|
+
# end
|
200
|
+
#
|
201
|
+
# it 'contains user name' do
|
202
|
+
# expect(@mail.body.raw_source).to include(@user_name)
|
203
|
+
# end
|
204
|
+
#
|
205
|
+
# it 'contains user email' do
|
206
|
+
# expect(@mail.body.raw_source).to include(@user_email)
|
207
|
+
# end
|
208
|
+
# end
|
209
|
+
end
|