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
@@ -1,98 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Set::All::Rules do
|
4
|
-
before do
|
5
|
-
Card::Auth.current_id = Card::WagnBotID
|
6
|
-
end
|
7
|
-
|
8
|
-
describe "setting data setup" do
|
9
|
-
it "should make Set of +*type" do
|
10
|
-
Card.create! :name=>"SpeciForm", :type=>'Cardtype'
|
11
|
-
Card.create!( :name=>"SpeciForm+*type" ).type_code.should == :set
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe "#rule" do
|
16
|
-
it "retrieves Set based value" do
|
17
|
-
Card.create :name => "Book+*type+*add help", :content => "authorize"
|
18
|
-
Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help).should == "authorize"
|
19
|
-
end
|
20
|
-
|
21
|
-
it "retrieves default values" do
|
22
|
-
#Card.create :name => "all Basic cards", :type => "Set", :content => "{\"type\": \"Basic\"}" #defaults should work when other Sets are present
|
23
|
-
assert c=Card.create(:name => "*all+*add help", :content => "lobotomize")
|
24
|
-
# Card.default_rule(:add_help, :fallback=>:help).should == "lobotomize"
|
25
|
-
Card.new( :type => "Basic" ).rule(:add_help, :fallback=>:help).should == "lobotomize"
|
26
|
-
end
|
27
|
-
|
28
|
-
it "retrieves single values" do
|
29
|
-
Card.create! :name => "banana+*self+*help", :content => "pebbles"
|
30
|
-
Card["banana"].rule(:help).should == "pebbles"
|
31
|
-
end
|
32
|
-
|
33
|
-
context 'with fallback' do
|
34
|
-
before do
|
35
|
-
Card.create :name => "*all+*help", :content => "edit any kind of card"
|
36
|
-
end
|
37
|
-
|
38
|
-
it "retrieves default setting" do
|
39
|
-
Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help).should == "edit any kind of card"
|
40
|
-
end
|
41
|
-
|
42
|
-
it "retrieves primary setting" do
|
43
|
-
Card.create :name => "*all+*add help", :content => "add any kind of card"
|
44
|
-
Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help).should == "add any kind of card"
|
45
|
-
end
|
46
|
-
|
47
|
-
it "retrieves more specific default setting" do
|
48
|
-
Card.create :name => "*all+*add help", :content => "add any kind of card"
|
49
|
-
Card.create :name => "*Book+*type+*help", :content => "edit a Book"
|
50
|
-
Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help).should == "add any kind of card"
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
|
56
|
-
describe "#setting_codes_by_group" do
|
57
|
-
before do
|
58
|
-
@pointer_key = Card::Set::Type::Setting::POINTER_KEY
|
59
|
-
@pointer_settings = [ :options, :options_label, :input ]
|
60
|
-
end
|
61
|
-
it "doesn't fail on nonexistent trunks" do
|
62
|
-
Card.new(:name=>'foob+*right').setting_codes_by_group.class.should == Hash
|
63
|
-
end
|
64
|
-
|
65
|
-
it "returns universal setting names for non-pointer set" do
|
66
|
-
pending "Different api, we should just put the tests in a new spec for that"
|
67
|
-
snbg = Card.fetch('*star').setting_codes_by_group
|
68
|
-
#warn "snbg #{snbg.class} #{snbg.inspect}"
|
69
|
-
snbg.keys.length.should == 4
|
70
|
-
snbg.keys.first.should be_a Symbol
|
71
|
-
snbg.keys.member?( @pointer_key ).should_not be_true
|
72
|
-
end
|
73
|
-
|
74
|
-
it "returns pointer-specific setting names for pointer card (*type)" do
|
75
|
-
pending "Different api, we should just put the tests in a new spec for that"
|
76
|
-
# was this test wrong before? What made Fruit a pointer without this?
|
77
|
-
Card::Auth.as_bot do
|
78
|
-
c1=Card.create! :name=>'Fruit+*type+*default', :type=>'Pointer'
|
79
|
-
Card.create! :name=>'Pointer+*type'
|
80
|
-
end
|
81
|
-
c2 = Card.fetch('Fruit+*type')
|
82
|
-
snbg = c2.setting_codes_by_group
|
83
|
-
#warn "snbg #{snbg.class}, #{snbg.inspect}"
|
84
|
-
snbg[@pointer_key].should == @pointer_settings
|
85
|
-
c3 = Card.fetch('Pointer+*type')
|
86
|
-
snbg = c3.setting_codes_by_group
|
87
|
-
snbg[@pointer_key].should == @pointer_settings
|
88
|
-
end
|
89
|
-
|
90
|
-
it "returns pointer-specific setting names for pointer card (*self)" do
|
91
|
-
c = Card.fetch '*star+*create+*self', :new=>{}
|
92
|
-
snbg = c.setting_codes_by_group
|
93
|
-
#warn "result #{snbg.inspect}"
|
94
|
-
snbg[@pointer_key].should == @pointer_settings
|
95
|
-
end
|
96
|
-
|
97
|
-
end
|
98
|
-
end
|
@@ -1,59 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Chunk::Link do
|
4
|
-
|
5
|
-
it "should handle unknown cards" do
|
6
|
-
render_content('[[Nixon]]').should == '<a class="wanted-card" href="/Nixon">Nixon</a>'
|
7
|
-
end
|
8
|
-
|
9
|
-
it 'should handle known cards' do
|
10
|
-
render_content("[[A]]").should=='<a class="known-card" href="/A">A</a>'
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'should handle custom text' do
|
14
|
-
render_content('[[Baines|Lyndon]]').should == '<a class="wanted-card" href="/Baines">Lyndon</a>'
|
15
|
-
end
|
16
|
-
|
17
|
-
it "should handle relative names" do
|
18
|
-
@card = Card.new :name=>'Kennedy'
|
19
|
-
render_content('[[+Monroe]]' ).should == '<a class="wanted-card" href="/Kennedy+Monroe">Kennedy+Monroe</a>'
|
20
|
-
render_content('[[_self+Exner]]' ).should == '<a class="wanted-card" href="/Kennedy+Exner">Kennedy+Exner</a>'
|
21
|
-
render_content('[[Onassis+]]' ).should == '<a class="wanted-card" href="/Onassis+Kennedy">Onassis+Kennedy</a>'
|
22
|
-
end
|
23
|
-
|
24
|
-
it "should handle relative names in context" do
|
25
|
-
@card = Card.new :name=>'Kennedy'
|
26
|
-
format_args = { :context_names => [ 'Kennedy'.to_name ] }
|
27
|
-
render_content('[[+Monroe]]' , format_args ).should == '<a class="wanted-card" href="/Kennedy+Monroe">+Monroe</a>'
|
28
|
-
render_content('[[_self+Exner]]', format_args ).should == '<a class="wanted-card" href="/Kennedy+Exner">+Exner</a>'
|
29
|
-
render_content('[[Onassis+]]' , format_args ).should == '<a class="wanted-card" href="/Onassis+Kennedy">Onassis</a>'
|
30
|
-
end
|
31
|
-
|
32
|
-
it "should handle relative urls" do
|
33
|
-
render_content('[[/recent]]').should == '<a class="internal-link" href="/recent">/recent</a>'
|
34
|
-
end
|
35
|
-
|
36
|
-
it "should handle absolute urls" do
|
37
|
-
render_content('[[http://google.com]]').should == '<a class="external-link" href="http://google.com">http://google.com</a>'
|
38
|
-
end
|
39
|
-
|
40
|
-
it "should escape spaces in cardnames with %20 (not +)" do
|
41
|
-
render_content('[[Marie "Mad Dog" Deatherage|Marie]]').should ==
|
42
|
-
'<a class="wanted-card" href="/Marie_Mad_Dog_Deatherage?card%5Bname%5D=Marie+%22Mad+Dog%22+Deatherage">Marie</a>'
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should not escape content outside of link" do
|
46
|
-
render_content('wgw [[http://www.google.com|google]] <br>').should ==
|
47
|
-
"wgw <a class=\"external-link\" href=\"http://www.google.com\">google</a> <br>"
|
48
|
-
end
|
49
|
-
|
50
|
-
it "should handle inclusions in link text" do
|
51
|
-
render_content('[[linkies|{{namies|name}}]]').should == '<a class="wanted-card" href="/linkies">namies</a>'
|
52
|
-
end
|
53
|
-
|
54
|
-
it "should handle dot (.) in missing cardlink" do
|
55
|
-
render_content("[[Wagn 1.10.12]]").should=='<a class="wanted-card" href="/Wagn_1_10_12?card%5Bname%5D=Wagn+1.10.12">Wagn 1.10.12</a>'
|
56
|
-
end
|
57
|
-
|
58
|
-
end
|
59
|
-
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::EmailHtmlFormat do
|
4
|
-
it "should render full urls" do
|
5
|
-
Card::Env[:protocol] = 'http://'
|
6
|
-
Card::Env[:host] = 'www.fake.com'
|
7
|
-
render_content('[[B]]', :format=>'email_html').should == '<a class="known-card" href="http://www.fake.com/B">B</a>'
|
8
|
-
end
|
9
|
-
|
10
|
-
it "should render missing included cards as blank" do
|
11
|
-
render_content('{{strombooby}}', :format=>'email_html').should == ''
|
12
|
-
end
|
13
|
-
end
|
@@ -1,95 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card do
|
4
|
-
before do
|
5
|
-
Timecop.travel(Wagn.future_stamp) # make sure we're ahead of all the test data
|
6
|
-
@just_s = [Card["Sara"].id]
|
7
|
-
@s_and_j= [Card["Sara"].id, Card["John"].id].sort
|
8
|
-
end
|
9
|
-
|
10
|
-
describe "#watchers" do
|
11
|
-
it "returns users watching this card specifically" do
|
12
|
-
Card["All Eyes On Me"].watchers.sort.should == @s_and_j
|
13
|
-
end
|
14
|
-
|
15
|
-
it "returns users watching cards of this type" do
|
16
|
-
Card["Sunglasses"].watchers.should == @just_s
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe "#card_watchers" do
|
21
|
-
it "returns users watching this card specifically" do
|
22
|
-
Card["All Eyes On Me"].watcher_pairs(false).sort.should == @s_and_j
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
describe "#type_watchers" do
|
27
|
-
it "returns users watching cards of this type" do
|
28
|
-
Card["Sunglasses"].watcher_pairs(false, :type).should == @just_s
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
describe "On Card Changes" do
|
34
|
-
before do
|
35
|
-
Card::Auth.current_id = Card['john'].id
|
36
|
-
Timecop.travel(Wagn.future_stamp) # make sure we're ahead of all the test data
|
37
|
-
end
|
38
|
-
|
39
|
-
it "sends notifications of edits" do
|
40
|
-
mock(Card::Mailer).change_notice( Card['Sara'].id, Card["Sara Watching"], "updated", "Sara Watching", nil )
|
41
|
-
Card["Sara Watching"].update_attributes :content => "A new change"
|
42
|
-
end
|
43
|
-
|
44
|
-
it "sends notifications of additions" do
|
45
|
-
new_card = Card.new :name => "Microscope", :type => "Optic"
|
46
|
-
mock(Card::Mailer).change_notice( Card['Sara'].id, new_card,"created", "Optic", nil )
|
47
|
-
new_card.save!
|
48
|
-
end
|
49
|
-
|
50
|
-
it "sends notification of updates" do
|
51
|
-
mock(Card::Mailer).change_notice( is_a(Integer), Card["Sunglasses"], "updated", "Optic", nil)
|
52
|
-
Card["Sunglasses"].update_attributes :content => 'updated content'
|
53
|
-
end
|
54
|
-
|
55
|
-
it "does not send notification to author of change" do
|
56
|
-
mock(Card::Mailer).change_notice.with_any_args.times(any_times) do
|
57
|
-
|*a| a[0].should_not == Card::Auth.current_id
|
58
|
-
end
|
59
|
-
|
60
|
-
Card["All Eyes On Me"].update_attributes :content => "edit by John"
|
61
|
-
end
|
62
|
-
|
63
|
-
it "does include author in wathers" do
|
64
|
-
Card["All Eyes On Me"].watchers.member?(Card::Auth.current_id).should be_true
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
|
69
|
-
describe "Trunk watcher notificatione" do
|
70
|
-
before do
|
71
|
-
Timecop.travel(Wagn.future_stamp) # make sure we're ahead of all the test data
|
72
|
-
|
73
|
-
Card.create :type=>'Book', :name=>'Ulysses'
|
74
|
-
(@ulyss =Card['Ulysses']).should be
|
75
|
-
watchers_card = Card.fetch "Ulysses+*watchers", :new=>{}
|
76
|
-
c = Card['joe camel']
|
77
|
-
watchers_card << c
|
78
|
-
@jc_id = c.id
|
79
|
-
watchers_card.save
|
80
|
-
|
81
|
-
watchers_card = Card.fetch "Book+*watchers", :new=>{}
|
82
|
-
c = Card['joe admin']
|
83
|
-
watchers_card << c
|
84
|
-
@ja_id = c.id
|
85
|
-
watchers_card.save
|
86
|
-
end
|
87
|
-
|
88
|
-
it "sends notification to Joe Camel" do
|
89
|
-
name = "Ulysses+author"
|
90
|
-
mock(Card::Mailer).change_notice( @ja_id, @ulyss, "updated", 'Book' , [[name, "created"]], is_a(Card))
|
91
|
-
mock(Card::Mailer).change_notice( @jc_id, @ulyss, "updated", @ulyss.name , [[name, "created"]], is_a(Card))
|
92
|
-
c=Card.create :name=>name, :content => "James Joyce"
|
93
|
-
end
|
94
|
-
|
95
|
-
end
|
@@ -1,90 +0,0 @@
|
|
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
|
-
Card::Auth.password_authenticated?( @user_card.account, 'tmp_pass').should be_true
|
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
|
-
@unaccountable.errors['+*account'].first.should == '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
|
-
@no_email.errors['+*account'].first.should =~ /email required/
|
30
|
-
end
|
31
|
-
|
32
|
-
end
|
33
|
-
|
34
|
-
describe '#update_attributes' do
|
35
|
-
before :each do
|
36
|
-
@user_card = Card::Auth[ 'joe@user.com' ]
|
37
|
-
end
|
38
|
-
|
39
|
-
it 'should reset password' do
|
40
|
-
@user_card.account.password_card.update_attributes!(:content => 'new password')
|
41
|
-
assert_equal @user_card.id, Card::Auth.authenticate('joe@user.com', 'new password')
|
42
|
-
end
|
43
|
-
|
44
|
-
it 'should not rehash password when updating email' do
|
45
|
-
@user_card.account.email_card.update_attributes!(:content => 'joe2@user.com')
|
46
|
-
assert_equal @user_card.id, Card::Auth.authenticate('joe2@user.com', 'joe_pass')
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
|
51
|
-
describe '#reset_password' do
|
52
|
-
before :each do
|
53
|
-
@email = 'joe@user.com'
|
54
|
-
@account = Card::Auth[@email].account
|
55
|
-
@account.send_reset_password_token
|
56
|
-
@token = @account.token
|
57
|
-
Card::Env.params[:reset_token] = @token
|
58
|
-
Card::Auth.current_id = Card::AnonymousID
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'should authenticate with correct token and delete token card' do
|
62
|
-
Card::Auth.current_id.should == Card::AnonymousID
|
63
|
-
@account.save.should == true
|
64
|
-
Card::Auth.current_id.should == @account.left_id
|
65
|
-
@account = @account.refresh force=true
|
66
|
-
@account.fetch(:trait => :token).should be_nil
|
67
|
-
@account.save.should == false
|
68
|
-
end
|
69
|
-
|
70
|
-
it 'should not work if token is expired' do
|
71
|
-
@account.token_card.update_column :updated_at, 3.days.ago.strftime("%F %T")
|
72
|
-
@account.token_card.expire
|
73
|
-
|
74
|
-
result = @account.save
|
75
|
-
result.should == true # successfully completes save
|
76
|
-
@account.token.should_not == @token # token gets updated
|
77
|
-
success = Card::Env.params[:success]
|
78
|
-
success[:message].should =~ /expired/ # user notified of expired token
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'should not work if token is wrong' do
|
82
|
-
Card::Env.params[:reset_token] = @token + 'xxx'
|
83
|
-
@account.save
|
84
|
-
@account.errors[:abort].first.should =~ /incorrect_token/
|
85
|
-
end
|
86
|
-
|
87
|
-
end
|
88
|
-
|
89
|
-
end
|
90
|
-
|
@@ -1,27 +0,0 @@
|
|
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
|
-
c.should match('search-result-item item-name')
|
8
|
-
render_content("{{Asearch|core}}" ).scan('search-result-item item-closed').size.should == 10
|
9
|
-
render_content("{{Asearch|core;item:open}}").scan('search-result-item item-open' ).size.should == 10
|
10
|
-
render_content("{{Asearch|core|titled}}" ).scan('search-result-item item-titled').size.should == 10
|
11
|
-
end
|
12
|
-
|
13
|
-
it "should handle returning 'count'" do
|
14
|
-
render_card(:core, :type=>'Search', :content=>%{{ "type":"User", "return":"count"}}).should == '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
|
-
r.scan('"view":"link"').size.should == 0
|
25
|
-
r.scan('item-closed').size.should == 2 #there are two of each
|
26
|
-
end
|
27
|
-
end
|
@@ -1,26 +0,0 @@
|
|
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
|
-
Card.fetch("*all").junction_only?.should be_false
|
8
|
-
Card.fetch("*all plus").junction_only?.should be_true
|
9
|
-
Card.fetch("Book+*type").junction_only?.should be_false
|
10
|
-
Card.fetch("*to+*right").junction_only?.should be_true
|
11
|
-
Card.fetch("Book+*to+*type plus right").junction_only?.should be_true
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe :inheritable? do
|
16
|
-
it "should identify sets that can inherit rules" do
|
17
|
-
Card.fetch("A+*self").inheritable?.should be_false
|
18
|
-
Card.fetch("A+B+*self").inheritable?.should be_true
|
19
|
-
Card.fetch("Book+*to+*type plus right").inheritable?.should be_true
|
20
|
-
Card.fetch("Book+*type").inheritable?.should be_false
|
21
|
-
Card.fetch("*to+*right").inheritable?.should be_true
|
22
|
-
Card.fetch("*all plus").inheritable?.should be_true
|
23
|
-
Card.fetch("*all").inheritable?.should be_false
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,169 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
|
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
|
-
@form.match( /Sign up/ ).should be_true
|
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
|
-
Card.create! :name=>'*request+*to', :content=>'signups@wagn.org'
|
33
|
-
end
|
34
|
-
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID, '+*account'=>{
|
35
|
-
'+*email'=>'wolf@wagn.org', '+*password'=>'wolf'
|
36
|
-
}
|
37
|
-
@account = @signup.account
|
38
|
-
@token = @account.token
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'should create all the necessary cards' do
|
42
|
-
@signup.type_id.should == Card::SignupID
|
43
|
-
@account.email.should == 'wolf@wagn.org'
|
44
|
-
@account.status.should == 'pending'
|
45
|
-
@account.salt.should_not == ''
|
46
|
-
@account.password.length.should > 10 #encrypted
|
47
|
-
@account.token.should be_present
|
48
|
-
end
|
49
|
-
|
50
|
-
it 'should send email with an appropriate link' do
|
51
|
-
end
|
52
|
-
|
53
|
-
it 'should create an authenticable token' do
|
54
|
-
@account.token.should == @token
|
55
|
-
@account.authenticate_by_token(@token).should == @signup.id
|
56
|
-
@account.fetch(:trait=> :token).should_not be_present
|
57
|
-
end
|
58
|
-
|
59
|
-
it 'should notify someone' do
|
60
|
-
ActionMailer::Base.deliveries.last.to.should == ['signups@wagn.org']
|
61
|
-
end
|
62
|
-
|
63
|
-
it 'should be activated by an update' do
|
64
|
-
Card::Env.params[:token] = @token
|
65
|
-
@signup.update_attributes({})
|
66
|
-
#puts @signup.errors.full_messages * "\n"
|
67
|
-
@signup.errors.should be_empty
|
68
|
-
@signup.type_id.should == Card::UserID
|
69
|
-
@account.status.should == 'active'
|
70
|
-
Card[ @account.name ].active?.should be_true
|
71
|
-
end
|
72
|
-
|
73
|
-
it 'should reject expired token and create new token' do
|
74
|
-
@account.token_card.update_column :updated_at, 3.days.ago.strftime("%F %T")
|
75
|
-
@account.token_card.expire
|
76
|
-
Card::Env.params[:token] = @token
|
77
|
-
|
78
|
-
result = @signup.update_attributes!({})
|
79
|
-
result.should == true # successfully completes save
|
80
|
-
@account.token.should_not == @token # token gets updated
|
81
|
-
success = Card::Env.params[:success]
|
82
|
-
success[:message].should =~ /expired/ # user notified of expired token
|
83
|
-
end
|
84
|
-
|
85
|
-
end
|
86
|
-
|
87
|
-
|
88
|
-
context 'signup (with approval)' do
|
89
|
-
before do
|
90
|
-
# NOTE: by default Anonymous does not have permission to create User cards.
|
91
|
-
Card::Auth.as_bot do
|
92
|
-
Card.create! :name=>'*request+*to', :content=>'signups@wagn.org'
|
93
|
-
end
|
94
|
-
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID, '+*account'=>{
|
95
|
-
'+*email'=>'wolf@wagn.org', '+*password'=>'wolf'
|
96
|
-
}
|
97
|
-
@account = @signup.account
|
98
|
-
end
|
99
|
-
|
100
|
-
|
101
|
-
it 'should create all the necessary cards, but no token' do
|
102
|
-
@signup.type_id.should == Card::SignupID
|
103
|
-
@account.email.should == 'wolf@wagn.org'
|
104
|
-
@account.status.should == 'pending'
|
105
|
-
@account.salt.should_not == ''
|
106
|
-
@account.password.length.should > 10 #encrypted
|
107
|
-
end
|
108
|
-
|
109
|
-
it 'should not create a token' do
|
110
|
-
@account.token.should_not be_present
|
111
|
-
end
|
112
|
-
|
113
|
-
it 'should notify someone' do
|
114
|
-
ActionMailer::Base.deliveries.last.to.should == ['signups@wagn.org']
|
115
|
-
end
|
116
|
-
|
117
|
-
|
118
|
-
context 'approval with token' do
|
119
|
-
|
120
|
-
it 'should create token' do
|
121
|
-
Card::Env.params[:approve_token] = true
|
122
|
-
Card::Auth.as :joe_admin
|
123
|
-
|
124
|
-
@signup = Card.fetch @signup.id
|
125
|
-
@signup.save!
|
126
|
-
@signup.account.token.should be_present
|
127
|
-
end
|
128
|
-
|
129
|
-
end
|
130
|
-
|
131
|
-
context 'approval without token' do
|
132
|
-
|
133
|
-
it 'should create token' do
|
134
|
-
Card::Env.params[:approve_without_token] = true
|
135
|
-
Card::Auth.as :joe_admin
|
136
|
-
|
137
|
-
@signup = Card.fetch @signup.id
|
138
|
-
@signup.save!
|
139
|
-
@signup.account.token.should_not be_present
|
140
|
-
@signup.type_id.should == Card::UserID
|
141
|
-
@signup.account.status.should == 'active'
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
end
|
146
|
-
|
147
|
-
|
148
|
-
context 'invitation' do
|
149
|
-
before do
|
150
|
-
# NOTE: by default Anonymous does not have permission to create User cards.
|
151
|
-
Card::Auth.as_bot do
|
152
|
-
Card.create! :name=>'*request+*to', :content=>'signups@wagn.org'
|
153
|
-
@signup = Card.create! :name=>'Big Bad Wolf', :type_id=>Card::SignupID, '+*account'=>{ '+*email'=>'wolf@wagn.org'}
|
154
|
-
end
|
155
|
-
@account = @signup.account
|
156
|
-
end
|
157
|
-
|
158
|
-
it 'should create all the necessary cards, but no password' do
|
159
|
-
@signup.type_id.should == Card::SignupID
|
160
|
-
@account.email.should == 'wolf@wagn.org'
|
161
|
-
@account.status.should == 'pending'
|
162
|
-
@account.salt.should_not == ''
|
163
|
-
@account.token.should be_present
|
164
|
-
@account.password.should_not be_present
|
165
|
-
end
|
166
|
-
|
167
|
-
end
|
168
|
-
|
169
|
-
end
|