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
@@ -5,9 +5,9 @@ describe Card::Set::All::Json, "JSON mod" do
|
|
5
5
|
it "should handle real and virtual cards" do
|
6
6
|
jf = Card::JsonFormat
|
7
7
|
real_json = jf.new(Card['T']).show :status, {}
|
8
|
-
JSON[real_json].
|
8
|
+
expect(JSON[real_json]).to eq({"key"=>"t","status"=>"real","id"=>Card['T'].id, 'url_key'=>'T'})
|
9
9
|
virtual_json = jf.new(Card.fetch('T+*self')).show :status, {}
|
10
|
-
JSON[virtual_json].
|
10
|
+
expect(JSON[virtual_json]).to eq({"key"=>"t+*self","status"=>"virtual",'url_key'=>'T+*self'})
|
11
11
|
end
|
12
12
|
|
13
13
|
it "should treat both unknown and unreadable cards as unknown" do
|
@@ -17,9 +17,9 @@ describe Card::Set::All::Json, "JSON mod" do
|
|
17
17
|
unknown = Card.new :name=>'sump'
|
18
18
|
unreadable = Card.new :name=>'kumq', :type=>'Fruit'
|
19
19
|
unknown_json = jf.new(unknown).show :status, {}
|
20
|
-
JSON[unknown_json].
|
20
|
+
expect(JSON[unknown_json]).to eq({"key"=>"sump","status"=>"unknown", 'url_key'=>'sump'})
|
21
21
|
unreadable_json = jf.new(unreadable).show :status, {}
|
22
|
-
JSON[unreadable_json].
|
22
|
+
expect(JSON[unreadable_json]).to eq({"key"=>"kumq","status"=>"unknown", 'url_key'=>'kumq'})
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
describe Card::Set::Type::EmailTemplate do
|
2
|
+
before :each do
|
3
|
+
Card::Auth.as_bot do
|
4
|
+
Card.create! :name=>"mail template", :type_code=>'email_template', :subcards=>{'+*html message'=>{content: 'Hi Joe! My name is {{_self|name}}'},
|
5
|
+
'+*to'=>{content: 'joe@user.com'},
|
6
|
+
'+*from'=>{content: 'from@user.com'} }
|
7
|
+
end
|
8
|
+
end
|
9
|
+
it 'sends email on update' do
|
10
|
+
Card::Auth.as_bot do
|
11
|
+
Card.create! :name=>"mail test+*self+*on update", type_code: :pointer, content: "[[mail template]]"
|
12
|
+
end
|
13
|
+
card = Card.fetch "mail test"
|
14
|
+
expect { Card::Auth.as_bot { card.update_attributes(content: "test") } }.to change { Mail::TestMailer.deliveries.count }.by(1)
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'sends email on delete' do
|
18
|
+
Card::Auth.as_bot do
|
19
|
+
Card.create! :name=>"mail test+*self+*on delete", type_code: :pointer, content: "[[mail template]]"
|
20
|
+
end
|
21
|
+
card = Card.fetch "mail test"
|
22
|
+
expect { Card::Auth.as_bot { card.delete } }.to change { Mail::TestMailer.deliveries.count }.by(1)
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'sends email on create' do
|
26
|
+
Card::Auth.as_bot do
|
27
|
+
Card.create! :name=>"Cardtype A+*type+*on create", type_code: :pointer, content: "[[mail template]]"
|
28
|
+
end
|
29
|
+
expect { Card::Auth.as_bot { Card.create! :name=>"mail test", type_code: :cardtype_a} }.to change { ActionMailer::Base.deliveries.count }.by(1)
|
30
|
+
end
|
31
|
+
|
32
|
+
describe '#send_action_mails' do
|
33
|
+
before do
|
34
|
+
Card::Auth.as_bot do
|
35
|
+
Card.create! :name=>"another mail template", :type_code=>'email_template', :subcards=>{'+*html message'=>{content: 'Hi Joe! My name is {{_self|name}}'},
|
36
|
+
'+*to'=>{content: 'joe@user.com'},
|
37
|
+
'+*from'=>{content: 'from@user.com'} }
|
38
|
+
Card.create! :name=>"mail test+*self+*on update", type_code: :pointer, content: "[[mail template]]\n[[another mail template]]"
|
39
|
+
Card.create! :name=>"mail test+*self+*on delete", type_code: :pointer, content: "[[mail template]]\n[[another mail template]]"
|
40
|
+
end
|
41
|
+
card = Card.fetch "mail test"
|
42
|
+
ActionMailer::Base.deliveries = []
|
43
|
+
card.send_action_mails :on=>:update
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'delivers all emails for given action' do
|
47
|
+
expect(ActionMailer::Base.deliveries.size).to eq(2)
|
48
|
+
end
|
49
|
+
it 'uses correct context' do
|
50
|
+
expect(ActionMailer::Base.deliveries.last.body.raw_source).to include('My name is mail test')
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# describe '#send_timer_mails' do
|
55
|
+
# before do
|
56
|
+
# ActionMailer::Base.deliveries = []
|
57
|
+
# Card::Auth.as_bot do
|
58
|
+
# Card.create! :name=>"A+*hourly", :type_code=>'email_template', :subcards=>{'+*message'=>{content: 'hourly update name:{{_self|name}}'},
|
59
|
+
# '+*to'=>{content: 'joe@user.com'},
|
60
|
+
# '+*from'=>{content: 'from@user.com'}}
|
61
|
+
# end
|
62
|
+
# Card::Set::All::Observer.send_timer_mails :hourly
|
63
|
+
# @mail = ActionMailer::Base.deliveries.last
|
64
|
+
# end
|
65
|
+
#
|
66
|
+
# it 'delivers hourly mails' do
|
67
|
+
# expect(@mail.body.raw_source).to include('hourly update')
|
68
|
+
# end
|
69
|
+
# it 'uses correct context' do
|
70
|
+
# expect(@mail.body.raw_source).to include('name:A')
|
71
|
+
# end
|
72
|
+
# end
|
73
|
+
end
|
74
|
+
|
@@ -3,7 +3,7 @@
|
|
3
3
|
describe Card::Set::All::RichHtml do
|
4
4
|
describe 'missing view' do
|
5
5
|
it "should prompt to add" do
|
6
|
-
render_content('{{+cardipoo|open}}').match(/Add \<span/ ).
|
6
|
+
expect(render_content('{{+cardipoo|open}}').match(/Add \<span/ )).not_to be_nil
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
@@ -13,23 +13,23 @@ describe Card::Set::All::RichHtml do
|
|
13
13
|
end
|
14
14
|
|
15
15
|
it "should get type options from type_field renderer method" do
|
16
|
-
@card.format.type_field.
|
16
|
+
expect(@card.format.type_field).to match(/<option [^>]*selected/)
|
17
17
|
tf=@card.format.type_field(:no_current_type=>true)
|
18
|
-
tf.
|
19
|
-
tf.scan(/<option /).length.
|
18
|
+
expect(tf).not_to match(/<option [^>]*selected/)
|
19
|
+
expect(tf.scan(/<option /).length).to eq(24)
|
20
20
|
tf=@card.format.type_field
|
21
|
-
tf.
|
22
|
-
tf.scan(/<option /).length.
|
21
|
+
expect(tf).to match(/<option [^>]*selected/)
|
22
|
+
expect(tf.scan(/<option /).length).to eq(24)
|
23
23
|
end
|
24
24
|
|
25
25
|
it "should get type list" do
|
26
26
|
Card::Auth.as :anonymous do
|
27
27
|
tf=@card.format.type_field(:no_current_type=>true)
|
28
|
-
tf.
|
29
|
-
tf.scan(/<option /).length.
|
28
|
+
expect(tf).not_to match(/<option [^>]*selected/)
|
29
|
+
expect(tf.scan(/<option /).length).to eq(1)
|
30
30
|
tf=@card.format.type_field
|
31
|
-
tf.
|
32
|
-
tf.scan(/<option /).length.
|
31
|
+
expect(tf).to match(/<option [^>]*selected/)
|
32
|
+
expect(tf.scan(/<option /).length).to eq(2)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
@@ -37,13 +37,13 @@ describe Card::Set::All::RichHtml do
|
|
37
37
|
context "type and header" do
|
38
38
|
it "should render type without no-edit class when no cards of type" do
|
39
39
|
card = Card['UserForm'] # no cards with this type
|
40
|
-
card.format.render_type.
|
41
|
-
card.format.render_type.
|
40
|
+
expect(card.format.render_type).to match(/<a [^>]* class="([^"]* )?cardtype[^"]*"/)
|
41
|
+
expect(card.format.render_type).not_to match(/<a [^>]* class="([^"]* )?no-edit[^"]*"/)
|
42
42
|
end
|
43
43
|
it "should render type header with no-edit class when cards of type exist" do
|
44
44
|
no_edit_card = Card['cardtype a']
|
45
|
-
no_edit_card.format.render_type.
|
46
|
-
no_edit_card.format.render_type.
|
45
|
+
expect(no_edit_card.format.render_type).to match(/<a [^>]* class="([^"]* )?cardtype[^"]*"/)
|
46
|
+
expect(no_edit_card.format.render_type).to match(/<a [^>]* class="([^"]* )?no-edit[^"]*"/)
|
47
47
|
end
|
48
48
|
end
|
49
49
|
end
|
File without changes
|
@@ -0,0 +1,162 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
describe Card::Set::Right::Account do
|
4
|
+
|
5
|
+
describe '#create' do
|
6
|
+
context "valid user" do
|
7
|
+
#note - much of this is tested in account_request_spec
|
8
|
+
before do
|
9
|
+
Card::Auth.as_bot do
|
10
|
+
@user_card = Card.create! :name=>'TmpUser', :type_id=>Card::UserID, '+*account'=>{
|
11
|
+
'+*email'=>'tmpuser@wagn.org', '+*password'=>'tmp_pass'
|
12
|
+
}
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should create an authenticable password' do
|
18
|
+
expect(Card::Auth.password_authenticated?( @user_card.account, 'tmp_pass')).to be_truthy
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should check accountability of 'accounted' card" do
|
23
|
+
@unaccountable = Card.create :name=>'BasicUnaccountable', '+*account'=>{ '+*email'=>'tmpuser@wagn.org', '+*password'=>'tmp_pass' }
|
24
|
+
expect(@unaccountable.errors['+*account'].first).to eq('not allowed on this card')
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should require email" do
|
28
|
+
@no_email = Card.create :name=>'TmpUser', :type_id=>Card::UserID, '+*account'=>{ '+*password'=>'tmp_pass' }
|
29
|
+
expect(@no_email.errors['+*account'].first).to match(/email required/)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#send_account_verification_email' do
|
34
|
+
before do
|
35
|
+
@email = 'joe@user.com'
|
36
|
+
@account = Card::Auth[@email].account
|
37
|
+
Mail::TestMailer.deliveries.clear
|
38
|
+
@account.send_account_verification_email
|
39
|
+
@mail = Mail::TestMailer.deliveries.last
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'has correct address' do
|
43
|
+
expect( @mail.to ).to eq([@email])
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'contains deck title' do
|
47
|
+
expect( @mail.parts[0].body.raw_source ).to match(Card.setting( :title ))
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'contains link to verify account' do
|
51
|
+
expect( @mail.parts[0].body.raw_source ).to include("/update/#{@account.left.cardname.url_key}?token=#{@account.token}")
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'contains expiry days' do
|
55
|
+
expect(@mail.parts[0].body.raw_source).to include("valid for #{Wagn.config.token_expiry / 1.day } days")
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#send_reset_password_token' do
|
60
|
+
before do
|
61
|
+
@email = 'joe@user.com'
|
62
|
+
@account = Card::Auth[@email].account
|
63
|
+
Mail::TestMailer.deliveries = []
|
64
|
+
@account.send_reset_password_token
|
65
|
+
@mail = Mail::TestMailer.deliveries.last
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'contains deck title' do
|
69
|
+
expect( @mail.parts[0].body.raw_source ).to match(Card.setting( :title ))
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'contains password resset link' do
|
73
|
+
expect( @mail.parts[0].body.raw_source ).to include("/update/#{@account.cardname.url_key}?reset_token=#{@account.token_card.refresh(true).content}")
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'contains expiry days' do
|
77
|
+
expect(@mail.parts[0].body.raw_source).to include("valid for #{Wagn.config.token_expiry / 1.day } days")
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
describe '#update_attributes' do
|
85
|
+
before :each do
|
86
|
+
@user_card = Card::Auth[ 'joe@user.com' ]
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'should reset password' do
|
90
|
+
@user_card.account.password_card.update_attributes!(:content => 'new password')
|
91
|
+
assert_equal @user_card.id, Card::Auth.authenticate('joe@user.com', 'new password')
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'should not rehash password when updating email' do
|
95
|
+
@user_card.account.email_card.update_attributes!(:content => 'joe2@user.com')
|
96
|
+
assert_equal @user_card.id, Card::Auth.authenticate('joe2@user.com', 'joe_pass')
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
describe '#reset_password' do
|
102
|
+
before :each do
|
103
|
+
@email = 'joe@user.com'
|
104
|
+
@account = Card::Auth[@email].account
|
105
|
+
@account.send_reset_password_token
|
106
|
+
@token = @account.token
|
107
|
+
Card::Env.params[:reset_token] = @token
|
108
|
+
Card::Auth.current_id = Card::AnonymousID
|
109
|
+
end
|
110
|
+
|
111
|
+
it 'should authenticate with correct token and delete token card' do
|
112
|
+
expect(Card::Auth.current_id).to eq(Card::AnonymousID)
|
113
|
+
expect(@account.save).to eq(true)
|
114
|
+
expect(Card::Auth.current_id).to eq(@account.left_id)
|
115
|
+
@account = @account.refresh force=true
|
116
|
+
expect(@account.fetch(:trait => :token)).to be_nil
|
117
|
+
expect(@account.save).to be_falsey
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'should not work if token is expired' do
|
121
|
+
@account.token_card.update_column :updated_at, 3.days.ago.strftime("%F %T")
|
122
|
+
@account.token_card.expire
|
123
|
+
|
124
|
+
result = @account.save
|
125
|
+
expect(result).to eq(true) # successfully completes save
|
126
|
+
expect(@account.token).not_to eq(@token) # token gets updated
|
127
|
+
success = Card::Env.params[:success]
|
128
|
+
expect(success[:message]).to match(/expired/) # user notified of expired token
|
129
|
+
end
|
130
|
+
|
131
|
+
it 'should not work if token is wrong' do
|
132
|
+
Card::Env.params[:reset_token] = @token + 'xxx'
|
133
|
+
@account.save
|
134
|
+
expect(@account.errors[:abort].first).to match(/incorrect_token/)
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
|
139
|
+
|
140
|
+
describe '#send_change_notice' do
|
141
|
+
it 'send multipart email' do
|
142
|
+
skip
|
143
|
+
# pending
|
144
|
+
end
|
145
|
+
|
146
|
+
context 'denied access' do
|
147
|
+
it 'excludes protected subcards' do
|
148
|
+
skip
|
149
|
+
Card.create(:name=>"A+B+*self+*read", :type=>'Pointer', :content=>"[[u1]]")
|
150
|
+
u2 = Card.fetch 'u2+*following', :new=>{:type=>'Pointer'}
|
151
|
+
u2.add_item "A"
|
152
|
+
a = Card.fetch "A"
|
153
|
+
a.update_attributes( :content=> "new content", :subcards=>{'+B'=>{:content=>'hidden content'}})
|
154
|
+
end
|
155
|
+
|
156
|
+
it 'sends no email if changes not visible' do
|
157
|
+
skip
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
@@ -10,19 +10,19 @@ describe Card::Set::Right::Email do
|
|
10
10
|
|
11
11
|
it 'should allow Wagn Bot to read' do
|
12
12
|
Card::Auth.as_bot do
|
13
|
-
@format.render_raw.
|
13
|
+
expect(@format.render_raw).to eq('u1@user.com')
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
17
17
|
it 'should allow self to read' do
|
18
18
|
Card::Auth.as Card['u1'] do
|
19
|
-
@format.render_raw.
|
19
|
+
expect(@format.render_raw).to eq('u1@user.com')
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
23
|
it 'should hide from other users' do
|
24
|
-
@card.ok?(:read).
|
25
|
-
@format.render_raw.
|
24
|
+
expect(@card.ok?(:read)).to be_falsey
|
25
|
+
expect(@format.render_raw).to match(/denied/)
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
@@ -35,18 +35,18 @@ describe Card::Set::Right::Email do
|
|
35
35
|
it 'should downcase email' do
|
36
36
|
Card::Auth.as_bot do
|
37
37
|
@email_card.update_attributes! :content=>'QuIrE@example.com'
|
38
|
-
@email_card.content.
|
38
|
+
expect(@email_card.content).to eq('quire@example.com')
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
42
|
it 'should require valid email' do
|
43
43
|
@email_card.update_attributes :content=>'boop'
|
44
|
-
@email_card.errors[:content].first.
|
44
|
+
expect(@email_card.errors[:content].first).to match(/must be valid address/)
|
45
45
|
end
|
46
46
|
|
47
47
|
it 'should require unique email' do
|
48
48
|
@email_card.update_attributes :content=>'joe@user.com'
|
49
|
-
@email_card.errors[:content].first.
|
49
|
+
expect(@email_card.errors[:content].first).to match(/must be unique/)
|
50
50
|
end
|
51
51
|
|
52
52
|
end
|
@@ -10,14 +10,14 @@ describe Card::Set::Right::Password do
|
|
10
10
|
|
11
11
|
it 'should encrypt password' do
|
12
12
|
@user_card.account.password_card.update_attributes! :content => 'new password'
|
13
|
-
@user_card.account.password.
|
13
|
+
expect(@user_card.account.password).not_to eq('new password')
|
14
14
|
assert_equal @user_card.id, Card::Auth.authenticate('joe@user.com', 'new password')
|
15
15
|
end
|
16
16
|
|
17
17
|
it 'should validate password' do
|
18
18
|
password_card = @user_card.account.password_card
|
19
19
|
password_card.update_attributes :content => '2b'
|
20
|
-
password_card.errors[:password].
|
20
|
+
expect(password_card.errors[:password]).not_to be_empty
|
21
21
|
|
22
22
|
end
|
23
23
|
|
@@ -25,17 +25,17 @@ describe Card::Set::Right::Password do
|
|
25
25
|
it "shouldn't change the password" do
|
26
26
|
acct = @user_card.account
|
27
27
|
original_pw = acct.password
|
28
|
-
original_pw.size.
|
28
|
+
expect(original_pw.size).to be > 10
|
29
29
|
pw_card = acct.password_card
|
30
30
|
pw_card.content = ''
|
31
31
|
pw_card.save
|
32
|
-
original_pw.
|
32
|
+
expect(original_pw).to eq(pw_card.refresh(force=true).content)
|
33
33
|
end
|
34
34
|
|
35
35
|
it "shouldn't break email editing" do
|
36
|
-
@user_card.account.update_attributes! '+*password'=>'', '+*email'=>'joe2@user.com'
|
37
|
-
|
38
|
-
@user_card.account.
|
36
|
+
@user_card.account.update_attributes! :subcards=>{'+*password'=>'', '+*email'=>'joe2@user.com'}
|
37
|
+
expect(@user_card.account.email).to eq('joe2@user.com')
|
38
|
+
expect(@user_card.account.password).not_to be_empty
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -3,8 +3,8 @@
|
|
3
3
|
describe Card::Set::Rstar::Rules do
|
4
4
|
it "should render setting view for a right set" do
|
5
5
|
r = Card['*read+*right'].format.render_open
|
6
|
-
r.
|
7
|
-
r.
|
6
|
+
expect(r).not_to match(/error/i)
|
7
|
+
expect(r).not_to match('No Card!')
|
8
8
|
#warn "r = #{r}"
|
9
9
|
assert_view_select r, 'table[class="set-rules"]' do
|
10
10
|
assert_select 'a[href~="/*read+*right+*input?view=open_rule"]', :text => 'input'
|
@@ -14,8 +14,8 @@ describe Card::Set::Rstar::Rules do
|
|
14
14
|
it "should render setting view for a *input rule" do
|
15
15
|
Card::Auth.as_bot do
|
16
16
|
r = Card.fetch('*read+*right+*input',:new=>{}).format.render_open_rule
|
17
|
-
r.
|
18
|
-
r.
|
17
|
+
expect(r).not_to match(/error/i)
|
18
|
+
expect(r).not_to match('No Card!')
|
19
19
|
#warn "r = #{r}"
|
20
20
|
assert_view_select r, 'tr[class="card-slot open-rule edit-rule"]' do
|
21
21
|
assert_select 'input[id="success_id"][name=?][type="hidden"][value="*read+*right+*input"]', 'success[id]'
|