wagn 1.13.0 → 1.14.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Guardfile +3 -2
- data/VERSION +1 -1
- data/app/controllers/card_controller.rb +33 -38
- data/config/routes.rb +2 -2
- data/config/version.txt +1 -1
- data/db/bootstrap/card_actions.yml +3543 -0
- data/db/bootstrap/card_acts.yml +7 -0
- data/db/bootstrap/card_changes.yml +9150 -0
- data/db/bootstrap/card_references.yml +666 -344
- data/db/bootstrap/cards.yml +3256 -1702
- data/db/migrate/20140822073704_create_new_revision_tables.rb +43 -0
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +62 -0
- data/db/migrate_cards/20130411191151_renaming_for_menu.rb +42 -45
- data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +13 -16
- data/db/migrate_cards/20130419215612_import_help_text.rb +7 -10
- data/db/migrate_cards/20130823192433_add_style_cards.rb +77 -81
- data/db/migrate_cards/20130910183318_move_styles_to_content.rb +4 -7
- data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +9 -12
- data/db/migrate_cards/20130920291703_update_stylesheets.rb +10 -13
- data/db/migrate_cards/20130927191728_account_events.rb +15 -18
- data/db/migrate_cards/20131016172445_common_css_patch.rb +5 -8
- data/db/migrate_cards/20140110193325_reset_account_request_type.rb +4 -7
- data/db/migrate_cards/20140307231621_user_data_to_cards.rb +50 -53
- data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +39 -42
- data/db/migrate_cards/20140512155840_add_script_cards.rb +56 -59
- data/db/migrate_cards/20140629222005_add_email_cards.rb +168 -0
- data/db/migrate_cards/20140725180118_config_card_updates.rb +4 -7
- data/db/migrate_cards/data/mailer/follower_notification_email.html +9 -0
- data/db/migrate_cards/data/mailer/follower_notification_email.txt +11 -0
- data/db/migrate_cards/data/mailer/mail_config.json +22 -0
- data/db/migrate_cards/data/mailer/password_reset_email.html +10 -0
- data/db/migrate_cards/data/mailer/password_reset_email.txt +11 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.html +7 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.txt +5 -0
- data/db/migrate_cards/data/mailer/verification_email.html +9 -0
- data/db/migrate_cards/data/mailer/verification_email.txt +8 -0
- data/db/schema.rb +31 -1
- data/features/conflict.feature +39 -0
- data/features/flexmail.feature +54 -54
- data/features/notifications.feature +4 -2
- data/features/reset_password.feature +1 -1
- data/features/step_definitions/wagn_steps.rb +20 -2
- data/features/step_definitions/window_steps.rb +23 -0
- data/features/support/env.rb +1 -0
- data/features/update_includers.feature +16 -10
- data/features/watch.feature +2 -2
- data/lib/card.rb +11 -10
- data/lib/card/act.rb +63 -0
- data/lib/card/action.rb +194 -0
- data/lib/card/change.rb +29 -0
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +229 -276
- data/lib/card/env.rb +4 -3
- data/lib/card/format.rb +2 -5
- data/lib/card/generators/card_migration/USAGE +15 -3
- data/lib/card/generators/card_migration/card_migration_generator.rb +22 -2
- data/lib/card/generators/card_migration/templates/card_migration.erb +4 -5
- data/lib/card/generators/format/USAGE +2 -2
- data/lib/card/generators/format/format_generator.rb +2 -2
- data/lib/card/generators/set/USAGE +2 -2
- data/lib/card/mailer.rb +21 -100
- data/lib/card/name.rb +4 -3
- data/lib/card/query.rb +2 -2
- data/lib/card/query/card_spec.rb +20 -30
- data/lib/card/query/value_spec.rb +2 -3
- data/lib/card/set.rb +3 -0
- data/lib/wagn/all.rb +6 -0
- data/lib/wagn/application.rb +16 -6
- data/lib/wagn/commands.rb +87 -27
- data/lib/wagn/config/environments/development.rb +17 -0
- data/lib/wagn/config/environments/test.rb +14 -1
- data/lib/wagn/config/initializers/airbrake.rb +1 -1
- data/lib/wagn/generators/wagn/templates/Gemfile +27 -9
- data/lib/wagn/generators/wagn/templates/config/application.rb +12 -3
- data/lib/wagn/generators/wagn/templates/simplecov +5 -0
- data/lib/wagn/generators/wagn/templates/spec/spec_helper.rb +1 -0
- data/lib/wagn/generators/wagn/wagn_generator.rb +75 -45
- data/lib/wagn/location.rb +9 -0
- data/lib/wagn/migration.rb +96 -0
- data/lib/wagn/mods_spec_helper.rb +16 -8
- data/lib/wagn/simplecov_helper.rb +61 -0
- data/lib/wagn/{wagn_spec_helper.rb → spec_helper.rb} +11 -3
- data/lib/wagn/tasks/test.rake +1 -1
- data/lib/wagn/tasks/wagn.rake +100 -34
- data/lib/wagn/version.rb +7 -2
- data/mod/{core → 01_core}/chunk/include.rb +0 -0
- data/mod/{core → 01_core}/chunk/link.rb +0 -0
- data/mod/{core → 01_core}/chunk/literal.rb +0 -0
- data/mod/{core → 01_core}/chunk/reference.rb +15 -3
- data/mod/{core → 01_core}/chunk/uri.rb +0 -0
- data/mod/{core → 01_core}/format/data_format.rb +0 -0
- data/mod/{core → 01_core}/format/html_format.rb +5 -2
- data/mod/{core → 01_core}/format/text_format.rb +0 -0
- data/mod/{core → 01_core}/layout/blank.html +0 -0
- data/mod/{core → 01_core}/layout/default.html +0 -0
- data/mod/{core → 01_core}/layout/noside.html +0 -0
- data/mod/{core → 01_core}/layout/pre.html +0 -0
- data/mod/{core → 01_core}/layout/simple.html +0 -0
- data/mod/{core → 01_core}/set/all/active_card.rb +0 -0
- data/mod/{core → 01_core}/set/all/collection.rb +33 -5
- data/mod/01_core/set/all/content.rb +144 -0
- data/mod/01_core/set/all/erb.rb +11 -0
- data/mod/{core → 01_core}/set/all/fetch.rb +8 -1
- data/mod/01_core/set/all/haml.rb +7 -0
- data/mod/{core → 01_core}/set/all/initialize.rb +4 -2
- data/mod/{core → 01_core}/set/all/name.rb +2 -3
- data/mod/01_core/set/all/notify.rb +215 -0
- data/mod/{core → 01_core}/set/all/pattern.rb +0 -0
- data/mod/{core → 01_core}/set/all/permissions.rb +1 -1
- data/mod/{core → 01_core}/set/all/phases.rb +24 -8
- data/mod/{core → 01_core}/set/all/references.rb +2 -2
- data/mod/{core → 01_core}/set/all/rules.rb +2 -2
- data/mod/{core → 01_core}/set/all/states.rb +1 -1
- data/mod/{core → 01_core}/set/all/templating.rb +4 -4
- data/mod/{core → 01_core}/set/all/tracked_attributes.rb +15 -64
- data/mod/{core → 01_core}/set/all/trash.rb +6 -5
- data/mod/{core → 01_core}/set/all/type.rb +0 -0
- data/mod/{core → 01_core}/set/all/utils.rb +1 -1
- data/mod/{core → 01_core}/set_pattern/01_all.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/02_all_plus.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/03_type.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/04_star.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/05_rstar.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/06_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/07_type_plus_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/08_self.rb +0 -0
- data/mod/01_core/spec/chunk/literal_spec.rb +14 -0
- data/{spec/mod/core → mod/01_core/spec}/chunk/uri_spec.rb +3 -3
- data/{spec/mod/core → mod/01_core/spec}/format/data_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/format/html_format_spec.rb +9 -8
- data/{spec/mod/core → mod/01_core/spec}/format/text_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/active_card_spec.rb +0 -0
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +21 -0
- data/mod/01_core/spec/set/all/collection_spec.rb +65 -0
- data/mod/01_core/spec/set/all/content_spec.rb +15 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/fetch_spec.rb +70 -68
- data/{spec/mod/core → mod/01_core/spec}/set/all/initialize_spec.rb +12 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/name_spec.rb +7 -7
- data/mod/01_core/spec/set/all/notify_spec.rb +199 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/pattern_spec.rb +16 -16
- data/{spec/mod/core → mod/01_core/spec}/set/all/permissions_spec.rb +62 -62
- data/{spec/mod/core → mod/01_core/spec}/set/all/phases_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/references_spec.rb +1 -1
- data/{spec/mod/core → mod/01_core/spec}/set/all/rules2_spec.rb +57 -57
- data/mod/01_core/spec/set/all/rules_spec.rb +81 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/states_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/templating_spec.rb +16 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/tracked_attributes_spec.rb +24 -22
- data/{spec/mod/core → mod/01_core/spec}/set/all/trash_spec.rb +2 -2
- data/{spec/mod/core → mod/01_core/spec}/set/all/type_spec.rb +13 -13
- data/{spec/mod/core → mod/01_core/spec}/set/all/utils_spec.rb +0 -0
- data/mod/{core → 02_basic_types}/set/type/plain_text.rb +0 -0
- data/mod/{standard → 02_basic_types}/set/type/pointer.rb +21 -8
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/plain_text_spec.rb +0 -0
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/pointer_spec.rb +22 -9
- data/mod/{standard → 03_machines}/lib/card/machine.rb +3 -2
- data/mod/{standard → 03_machines}/lib/card/machine_input.rb +1 -1
- data/mod/{standard → 03_machines}/lib/javascript/html5shiv-printshiv.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery-ui.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.autosize.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.fileupload.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.iframe-transport.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.ui.autocomplete.html.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery_ujs.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquerymobile.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/tinymce.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn.js.coffee +17 -9
- data/mod/{standard → 03_machines}/lib/javascript/wagn_menu.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn_mod.js.coffee +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/functional.scss +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/jquery-ui-smoothness.css +0 -0
- data/mod/{standard → 03_machines}/lib/stylesheets/standard.scss +126 -21
- data/mod/{standard → 03_machines}/set/right/machine_output.rb +3 -2
- data/mod/{standard → 03_machines}/set/self/script_card_menu.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_html5shiv_printshiv.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery_helper.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_slot.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_tinymce.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_functional.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_jquery_ui_smoothness.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_standard.rb +1 -1
- data/mod/{standard → 03_machines}/set/type/coffee_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/css.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/java_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/scss.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/skin.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_input_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_spec.rb +4 -4
- data/{spec/mod/standard → mod/03_machines/spec}/set/right/machine_output_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_functional_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_jquery_ui_smoothness_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_standard_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/coffeescript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/css_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/javascript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/scss_spec.rb +1 -1
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/skin_spec.rb +22 -0
- data/mod/04_settings/lib/card/setting.rb +57 -0
- data/mod/{core/set/right/structure.rb → 04_settings/set/right/add_help.rb} +0 -2
- data/mod/{standard → 04_settings}/set/right/comment.rb +0 -1
- data/mod/{standard → 04_settings}/set/right/create.rb +0 -1
- data/mod/04_settings/set/right/default.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/delete.rb +2 -0
- data/mod/04_settings/set/right/help.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/read.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/script.rb +0 -0
- data/mod/04_settings/set/right/structure.rb +4 -0
- data/mod/{standard → 04_settings}/set/right/style.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/update.rb +0 -0
- data/mod/04_settings/set/self/accountable.rb +2 -0
- data/mod/04_settings/set/self/add_help.rb +2 -0
- data/mod/04_settings/set/self/autoname.rb +2 -0
- data/mod/04_settings/set/self/captcha.rb +2 -0
- data/mod/04_settings/set/self/comment.rb +2 -0
- data/mod/04_settings/set/self/create.rb +2 -0
- data/mod/04_settings/set/self/default.rb +2 -0
- data/mod/04_settings/set/self/delete.rb +2 -0
- data/mod/04_settings/set/self/help.rb +2 -0
- data/mod/04_settings/set/self/input.rb +2 -0
- data/mod/04_settings/set/self/layout.rb +2 -0
- data/mod/04_settings/set/self/on_create.rb +2 -0
- data/mod/04_settings/set/self/on_delete.rb +2 -0
- data/mod/04_settings/set/self/on_update.rb +2 -0
- data/mod/04_settings/set/self/options.rb +2 -0
- data/mod/04_settings/set/self/options_label.rb +2 -0
- data/mod/04_settings/set/self/read.rb +2 -0
- data/mod/04_settings/set/self/script.rb +2 -0
- data/mod/04_settings/set/self/structure.rb +2 -0
- data/mod/04_settings/set/self/style.rb +2 -0
- data/mod/04_settings/set/self/table_of_contents.rb +2 -0
- data/mod/04_settings/set/self/thanks.rb +2 -0
- data/mod/04_settings/set/self/update.rb +2 -0
- data/mod/{standard → 04_settings}/set/type/setting.rb +8 -14
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/add_help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/comment_spec.rb +5 -5
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/create_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/default_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/delete_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/read_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/script_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/structure_spec.rb +4 -2
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/style_spec.rb +1 -1
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/update_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/type/setting_spec.rb +0 -0
- data/mod/{standard → 05_standard}/file/103/icon-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/large-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/medium-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/original-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/small-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/79/icon-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/large-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/medium-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/original-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/small-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/790/icon-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/large-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/medium-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/original-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/small-6419.png +0 -0
- data/mod/{standard → 05_standard}/format/css_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/csv_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/file_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/js_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/json_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/rss_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/xml_format.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/account.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_css.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_csv.rb +1 -1
- data/mod/05_standard/set/all/all_js.rb +7 -0
- data/mod/{standard → 05_standard}/set/all/attach.rb +33 -33
- data/mod/{standard → 05_standard}/set/all/base.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/comment.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/event_viz.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/file.rb +0 -0
- data/mod/05_standard/set/all/follow.rb +51 -0
- data/mod/05_standard/set/all/history.rb +294 -0
- data/mod/{standard → 05_standard}/set/all/json.rb +2 -1
- data/mod/05_standard/set/all/observer.rb +27 -0
- data/mod/{standard → 05_standard}/set/all/rich_html.rb +21 -28
- data/mod/{standard → 05_standard}/set/all/rss.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/text.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/account.rb +53 -7
- data/mod/{standard → 05_standard}/set/right/email.rb +0 -1
- data/mod/{standard → 05_standard}/set/right/password.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/salt.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/stats.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/status.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/token.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_created.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_last_edited.rb +0 -0
- data/mod/{standard → 05_standard}/set/rstar/rules.rb +8 -7
- data/mod/{standard → 05_standard}/set/self/account_links.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/alerts.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/all.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/foot.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/head.rb +21 -6
- data/mod/{standard → 05_standard}/set/self/navbox.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/now.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/recent.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/search.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/signin.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/stats.rb +2 -2
- data/mod/{standard → 05_standard}/set/self/version.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/basic.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/cardtype.rb +4 -6
- data/mod/{standard → 05_standard}/set/type/date.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/file.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/html.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/image.rb +7 -6
- data/mod/{standard → 05_standard}/set/type/layout_type.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/number.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/phrase.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/search_type.rb +6 -3
- data/mod/{standard → 05_standard}/set/type/set.rb +16 -9
- data/mod/{standard → 05_standard}/set/type/signup.rb +16 -17
- data/mod/{standard → 05_standard}/set/type/toggle.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/user.rb +10 -11
- data/{spec/mod/standard → mod/05_standard/spec}/chunk/include_spec.rb +39 -39
- data/mod/05_standard/spec/chunk/link_spec.rb +61 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/css_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/csv_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/email_html_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/file_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/js_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/json_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/rss_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/xml_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/account_spec.rb +16 -16
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_css_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_csv_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/attach_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/base_spec.rb +10 -10
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/comment_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/email_html_spec.rb +15 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/event_viz_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/file_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/follow_spec.rb +83 -0
- data/mod/05_standard/spec/set/all/history_spec.rb +161 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/json_spec.rb +4 -4
- data/mod/05_standard/spec/set/all/observer_spec.rb +74 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rich_html_spec.rb +14 -14
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rss_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/text_spec.rb +0 -0
- data/mod/05_standard/spec/set/right/account_spec.rb +162 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/email_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/password_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/salt_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/status_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/token_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_created_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_last_edited_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/rstar/rules_spec.rb +4 -4
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/account_links_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/alerts_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/all_spec.rb +7 -6
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/foot_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/head_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/navbox_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/now_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/recent_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/search_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/signin_spec.rb +12 -12
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/version_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/basic_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/cardtype_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/date_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/email_template_spec.rb +130 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/file_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/html_spec.rb +3 -3
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/image_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/layout_type_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/number_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/phrase_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/search_type_spec.rb +27 -0
- data/mod/05_standard/spec/set/type/set_spec.rb +26 -0
- data/mod/05_standard/spec/set/type/signup_spec.rb +209 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/toggle_spec.rb +2 -2
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/user_spec.rb +0 -0
- data/mod/{standard → 06_email}/format/email_html_format.rb +0 -0
- data/mod/06_email/format/email_text_format.rb +7 -0
- data/mod/06_email/set/all/email_html.rb +9 -0
- data/mod/{standard/set/all/email_html.rb → 06_email/set/all/email_text.rb} +2 -1
- data/mod/06_email/set/right/bcc.rb +31 -0
- data/mod/06_email/set/right/cc.rb +2 -0
- data/mod/06_email/set/right/from.rb +2 -0
- data/mod/06_email/set/right/html_message.rb +3 -0
- data/mod/06_email/set/right/to.rb +2 -0
- data/mod/06_email/set/type/email_template.rb +99 -0
- data/spec/controllers/card_controller_spec.rb +34 -46
- data/spec/lib/card/action_spec.rb +14 -0
- data/spec/lib/card/chunk_spec.rb +3 -3
- data/spec/lib/card/codename_spec.rb +5 -5
- data/spec/lib/card/content_spec.rb +25 -25
- data/spec/lib/card/diff_spec.rb +107 -107
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/loader_spec.rb +35 -29
- data/spec/lib/card/name_spec.rb +82 -82
- data/spec/lib/card/query_spec.rb +83 -82
- data/spec/lib/card/reference_spec.rb +30 -30
- data/spec/lib/card/set_pattern_spec.rb +1 -1
- data/spec/lib/card/set_spec.rb +86 -82
- data/spec/lib/wagn/cache_spec.rb +24 -24
- data/spec/mailers/mailer_spec.rb +41 -30
- data/spec/models/card/cardtype_spec.rb +19 -19
- data/spec/models/card/create_spec.rb +14 -14
- data/spec/models/card/trash_spec.rb +37 -36
- data/spec/models/card/type_transition_spec.rb +13 -13
- data/spec/models/card/validation_spec.rb +6 -6
- data/spec/models/card_spec.rb +40 -39
- data/spec/spec_helper.rb +37 -11
- data/test/fixtures/card_actions.yml +4726 -0
- data/test/fixtures/card_acts.yml +589 -0
- data/test/fixtures/card_changes.yml +12644 -0
- data/test/fixtures/card_references.yml +976 -591
- data/test/fixtures/cards.yml +4544 -2781
- data/test/seed.rb +14 -13
- data/wagn.gemspec +4 -0
- metadata +404 -403
- data/db/bootstrap/card_revisions.yml +0 -3379
- data/lib/card/flexmail.rb +0 -53
- data/lib/card/mailer/change_notice.html.erb +0 -32
- data/lib/card/mailer/confirmation_email.html.erb +0 -12
- data/lib/card/mailer/flexmail.html.erb +0 -6
- data/lib/card/mailer/password_reset.html.erb +0 -9
- data/lib/card/mailer/signup_alert.html.erb +0 -14
- data/lib/card/revision.rb +0 -47
- data/lib/wagn/migration_helper.rb +0 -34
- data/mod/core/set/all/attribute_tracking.rb +0 -85
- data/mod/core/set/all/content.rb +0 -94
- data/mod/standard/set/all/flexmail.rb +0 -3
- data/mod/standard/set/all/follow.rb +0 -119
- data/mod/standard/set/all/history.rb +0 -107
- data/mod/standard/set/right/add_help.rb +0 -3
- data/mod/standard/set/right/default.rb +0 -3
- data/mod/standard/set/right/help.rb +0 -3
- data/spec/lib/card/flexmail_spec.rb +0 -209
- data/spec/lib/card/revision_spec.rb +0 -30
- data/spec/mod/core/chunk/literal_spec.rb +0 -14
- data/spec/mod/core/set/all/attribute_tracking_spec.rb +0 -21
- data/spec/mod/core/set/all/collection_spec.rb +0 -45
- data/spec/mod/core/set/all/content_spec.rb +0 -14
- data/spec/mod/core/set/all/rules_spec.rb +0 -98
- data/spec/mod/standard/chunk/link_spec.rb +0 -59
- data/spec/mod/standard/set/all/email_html_spec.rb +0 -13
- data/spec/mod/standard/set/all/flexmail_spec.rb +0 -5
- data/spec/mod/standard/set/all/follow_spec.rb +0 -95
- data/spec/mod/standard/set/all/history_spec.rb +0 -10
- data/spec/mod/standard/set/right/account_spec.rb +0 -90
- data/spec/mod/standard/set/type/search_type_spec.rb +0 -27
- data/spec/mod/standard/set/type/set_spec.rb +0 -26
- data/spec/mod/standard/set/type/signup_spec.rb +0 -169
- data/test/fixtures/card_revisions.yml +0 -4560
File without changes
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
describe Card::Set::All::References do
|
4
4
|
it "should replace references should work on inclusions inside links" do
|
5
|
-
card = Card.create!(:name=>"test", :content=>"[[test_card|test{{test}}]]" )
|
5
|
+
card = Card.create!(:name=>"ref test", :content=>"[[test_card|test{{test}}]]" )
|
6
6
|
assert_equal "[[test_card|test{{best}}]]", card.replace_references("test", "best" )
|
7
7
|
end
|
8
8
|
end
|
@@ -11,46 +11,46 @@ describe Card do
|
|
11
11
|
Card::Auth.as_bot do
|
12
12
|
Card.create! :name=>'Basic+*type+*table of contents', :content=>'2'
|
13
13
|
end
|
14
|
-
(@c1 = Card['Onne Heading']).
|
15
|
-
(@c2 = Card['Twwo Heading']).
|
16
|
-
(@c3 = Card['Three Heading']).
|
17
|
-
@c1.type_id.
|
18
|
-
(@rule_card = @c1.rule_card(:table_of_contents)).
|
14
|
+
expect(@c1 = Card['Onne Heading']).to be
|
15
|
+
expect(@c2 = Card['Twwo Heading']).to be
|
16
|
+
expect(@c3 = Card['Three Heading']).to be
|
17
|
+
expect(@c1.type_id).to eq(Card::BasicID)
|
18
|
+
expect(@rule_card = @c1.rule_card(:table_of_contents)).to be
|
19
19
|
end
|
20
20
|
|
21
21
|
describe ".rule" do
|
22
22
|
it "should have a value of 2" do
|
23
|
-
@rule_card.content.
|
24
|
-
@c1.rule(:table_of_contents).
|
23
|
+
expect(@rule_card.content).to eq("2")
|
24
|
+
expect(@c1.rule(:table_of_contents)).to eq("2")
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
28
|
describe "renders with/without toc" do
|
29
29
|
it "should not render for 'Onne Heading'" do
|
30
|
-
@c1.format.render_open_content.
|
30
|
+
expect(@c1.format.render_open_content).not_to match /Table of Contents/
|
31
31
|
end
|
32
32
|
it "should render for 'Twwo Heading'" do
|
33
|
-
@c2.format.render_open_content.
|
33
|
+
expect(@c2.format.render_open_content).to match /Table of Contents/
|
34
34
|
end
|
35
35
|
it "should render for 'Three Heading'" do
|
36
|
-
@c3.format.render_open_content.
|
36
|
+
expect(@c3.format.render_open_content).to match /Table of Contents/
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
40
|
describe ".rule_card" do
|
41
41
|
it "get the same card without the * and singular" do
|
42
|
-
@c1.rule_card(:table_of_contents).
|
42
|
+
expect(@c1.rule_card(:table_of_contents)).to eq(@rule_card)
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
46
|
describe ".related_sets" do
|
47
47
|
it "should have 2 sets (self and right) for a simple card" do
|
48
48
|
sets = Card['A'].related_sets.map { |s| s[0] }
|
49
|
-
sets.
|
49
|
+
expect(sets).to eq(['A+*self', 'A+*right'])
|
50
50
|
end
|
51
51
|
it "should have 3 sets (self, type, and right) for a cardtype card" do
|
52
52
|
sets = Card['Cardtype A'].related_sets.map { |s| s[0] }
|
53
|
-
sets.
|
53
|
+
expect(sets).to eq(['Cardtype A+*type', 'Cardtype A+*self', 'Cardtype A+*right'])
|
54
54
|
end
|
55
55
|
# it "should show type plus right sets when they exist" do
|
56
56
|
# Card::Auth.as_bot { Card.create :name=>'Basic+A+*type plus right', :content=>'' }
|
@@ -64,7 +64,7 @@ describe Card do
|
|
64
64
|
# end
|
65
65
|
it "should have sets for a non-simple card" do
|
66
66
|
sets = Card['A+B'].related_sets.map { |s| s[0] }
|
67
|
-
sets.
|
67
|
+
expect(sets).to eq(['A+B+*self'])
|
68
68
|
end
|
69
69
|
end
|
70
70
|
=begin
|
@@ -80,31 +80,31 @@ describe Card do
|
|
80
80
|
context "when I change the general toc setting to 1" do
|
81
81
|
|
82
82
|
before do
|
83
|
-
(@c1 = Card["Onne Heading"]).
|
84
|
-
(@c2 = Card["Twwo Heading"]).
|
85
|
-
@c1.type_id.
|
86
|
-
(@rule_card = @c1.rule_card(:table_of_contents)).
|
83
|
+
expect(@c1 = Card["Onne Heading"]).to be
|
84
|
+
expect(@c2 = Card["Twwo Heading"]).to be
|
85
|
+
expect(@c1.type_id).to eq(Card::BasicID)
|
86
|
+
expect(@rule_card = @c1.rule_card(:table_of_contents)).to be
|
87
87
|
@rule_card.content = "1"
|
88
88
|
end
|
89
89
|
|
90
90
|
describe ".rule" do
|
91
91
|
it "should have a value of 1" do
|
92
|
-
@rule_card.content.
|
93
|
-
@c1.rule(:table_of_contents).
|
92
|
+
expect(@rule_card.content).to eq("1")
|
93
|
+
expect(@c1.rule(:table_of_contents)).to eq("1")
|
94
94
|
end
|
95
95
|
end
|
96
96
|
|
97
97
|
describe "renders with/without toc" do
|
98
98
|
it "should not render toc for 'Onne Heading'" do
|
99
|
-
@c1.format.render_open_content.
|
99
|
+
expect(@c1.format.render_open_content).to match /Table of Contents/
|
100
100
|
end
|
101
101
|
it "should render toc for 'Twwo Heading'" do
|
102
|
-
@c2.format.render_open_content.
|
102
|
+
expect(@c2.format.render_open_content).to match /Table of Contents/
|
103
103
|
end
|
104
104
|
it "should not render for 'Twwo Heading' when changed to 3" do
|
105
105
|
@rule_card.content = "3"
|
106
|
-
@c2.rule(:table_of_contents).
|
107
|
-
@c2.format.render_open_content.
|
106
|
+
expect(@c2.rule(:table_of_contents)).to eq("3")
|
107
|
+
expect(@c2.format.render_open_content).not_to match /Table of Contents/
|
108
108
|
end
|
109
109
|
end
|
110
110
|
|
@@ -121,42 +121,42 @@ describe Card do
|
|
121
121
|
@c3 = Card.create :name=>'toc3', :type=>"CardtypeE",
|
122
122
|
:content=>Card['Three Heading'].content
|
123
123
|
end
|
124
|
-
@c1.type_name.
|
124
|
+
expect(@c1.type_name).to eq('Cardtype E')
|
125
125
|
@rule_card = @c1.rule_card(:table_of_contents)
|
126
126
|
|
127
|
-
@c1.
|
128
|
-
@c2.
|
129
|
-
@c3.
|
130
|
-
@rule_card.
|
127
|
+
expect(@c1).to be
|
128
|
+
expect(@c2).to be
|
129
|
+
expect(@c3).to be
|
130
|
+
expect(@rule_card).to be
|
131
131
|
end
|
132
132
|
|
133
133
|
describe ".rule" do
|
134
134
|
it "should have a value of 0" do
|
135
|
-
@c1.rule(:table_of_contents).
|
136
|
-
@rule_card.content.
|
135
|
+
expect(@c1.rule(:table_of_contents)).to eq("0")
|
136
|
+
expect(@rule_card.content).to eq("0")
|
137
137
|
end
|
138
138
|
end
|
139
139
|
|
140
140
|
describe "renders without toc" do
|
141
141
|
it "should not render for 'Onne Heading'" do
|
142
|
-
@c1.format.render_open_content.
|
142
|
+
expect(@c1.format.render_open_content).not_to match /Table of Contents/
|
143
143
|
end
|
144
144
|
it "should render for 'Twwo Heading'" do
|
145
|
-
@c2.format.render_open_content.
|
145
|
+
expect(@c2.format.render_open_content).not_to match /Table of Contents/
|
146
146
|
end
|
147
147
|
it "should render for 'Three Heading'" do
|
148
|
-
@c3.format.render_open_content.
|
148
|
+
expect(@c3.format.render_open_content).not_to match /Table of Contents/
|
149
149
|
end
|
150
150
|
end
|
151
151
|
|
152
152
|
describe ".rule_card" do
|
153
153
|
it "doesn't have a type rule" do
|
154
|
-
@rule_card.
|
155
|
-
@rule_card.name.
|
154
|
+
expect(@rule_card).to be
|
155
|
+
expect(@rule_card.name).to eq("*all+*table of contents")
|
156
156
|
end
|
157
157
|
|
158
158
|
it "get the same card without the * and singular" do
|
159
|
-
@c1.rule_card(:table_of_contents).
|
159
|
+
expect(@c1.rule_card(:table_of_contents)).to eq(@rule_card)
|
160
160
|
end
|
161
161
|
end
|
162
162
|
|
@@ -177,13 +177,13 @@ describe Card do
|
|
177
177
|
@c1 = Card.create! :name=>'toc1', :type=>"CardtypeE", :content=>Card['Onne Heading'].content
|
178
178
|
@c2 = Card.create! :name=>'toc2', :content=>Card['Twwo Heading'].content
|
179
179
|
@c3 = Card.create! :name=>'toc3', :content=>Card['Three Heading'].content
|
180
|
-
@c1.type_name.
|
180
|
+
expect(@c1.type_name).to eq('Cardtype E')
|
181
181
|
@rule_card = @c1.rule_card(:table_of_contents)
|
182
182
|
|
183
|
-
@c1.
|
184
|
-
@c2.
|
185
|
-
@c3.
|
186
|
-
@rule_card.name.
|
183
|
+
expect(@c1).to be
|
184
|
+
expect(@c2).to be
|
185
|
+
expect(@c3).to be
|
186
|
+
expect(@rule_card.name).to eq('*all+*table of contents')
|
187
187
|
if c=Card['CardtypeE+*type+*table of content']
|
188
188
|
c.content = '2'
|
189
189
|
c.save!
|
@@ -194,20 +194,20 @@ describe Card do
|
|
194
194
|
end
|
195
195
|
it "should take on new setting value" do
|
196
196
|
c = Card['toc1']
|
197
|
-
c.rule_card(:table_of_contents).name.
|
198
|
-
c.rule(:table_of_contents).
|
197
|
+
expect(c.rule_card(:table_of_contents).name).to eq('CardtypeE+*type+*table of content')
|
198
|
+
expect(c.rule(:table_of_contents)).to eq("2")
|
199
199
|
end
|
200
200
|
|
201
201
|
describe "renders with/without toc" do
|
202
202
|
it "should not render for 'Onne Heading'" do
|
203
|
-
@c1.format.render_open_content.
|
203
|
+
expect(@c1.format.render_open_content).not_to match /Table of Contents/
|
204
204
|
end
|
205
205
|
it "should render for 'Twwo Heading'" do
|
206
|
-
@c2.rule(:table_of_contents).
|
207
|
-
@c2.format.render_open_content.
|
206
|
+
expect(@c2.rule(:table_of_contents)).to eq("2")
|
207
|
+
expect(@c2.format.render_open_content).to match /Table of Contents/
|
208
208
|
end
|
209
209
|
it "should render for 'Three Heading'" do
|
210
|
-
@c3.format.render_open_content.
|
210
|
+
expect(@c3.format.render_open_content).to match /Table of Contents/
|
211
211
|
end
|
212
212
|
end
|
213
213
|
end
|
@@ -216,32 +216,32 @@ describe Card do
|
|
216
216
|
context "when I change the general toc setting to 1" do
|
217
217
|
|
218
218
|
before do
|
219
|
-
(@c1 = Card["Onne Heading"]).
|
219
|
+
expect(@c1 = Card["Onne Heading"]).to be
|
220
220
|
# FIXME: CardtypeE should inherit from *default => Basic
|
221
221
|
#@c2 = Card.create :name=>'toc2', :type=>"CardtypeE", :content=>Card['Twwo Heading'].content
|
222
|
-
(@c2 = Card["Twwo Heading"]).
|
223
|
-
@c1.type_id.
|
224
|
-
(@rule_card = @c1.rule_card(:table_of_contents)).
|
222
|
+
expect(@c2 = Card["Twwo Heading"]).to be
|
223
|
+
expect(@c1.type_id).to eq(Card::BasicID)
|
224
|
+
expect(@rule_card = @c1.rule_card(:table_of_contents)).to be
|
225
225
|
@rule_card.content = "1"
|
226
226
|
end
|
227
227
|
|
228
228
|
describe ".rule" do
|
229
229
|
it "should have a value of 1" do
|
230
|
-
@rule_card.content.
|
231
|
-
@c1.rule(:table_of_contents).
|
230
|
+
expect(@rule_card.content).to eq("1")
|
231
|
+
expect(@c1.rule(:table_of_contents)).to eq("1")
|
232
232
|
end
|
233
233
|
end
|
234
234
|
|
235
235
|
describe "renders with/without toc" do
|
236
236
|
it "should not render toc for 'Onne Heading'" do
|
237
|
-
@c1.format.render_open_content.
|
237
|
+
expect(@c1.format.render_open_content).to match /Table of Contents/
|
238
238
|
end
|
239
239
|
it "should render toc for 'Twwo Heading'" do
|
240
|
-
@c2.format.render_open_content.
|
240
|
+
expect(@c2.format.render_open_content).to match /Table of Contents/
|
241
241
|
end
|
242
242
|
it "should not render for 'Twwo Heading' when changed to 3" do
|
243
243
|
@rule_card.content = "3"
|
244
|
-
@c2.format.render_open_content.
|
244
|
+
expect(@c2.format.render_open_content).not_to match /Table of Contents/
|
245
245
|
end
|
246
246
|
end
|
247
247
|
|
@@ -0,0 +1,81 @@
|
|
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
|
+
expect(Card.create!( :name=>"SpeciForm+*type" ).type_code).to eq(: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
|
+
expect(Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help)).to eq("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
|
+
expect(Card.new( :type => "Basic" ).rule(:add_help, :fallback=>:help)).to eq("lobotomize")
|
26
|
+
end
|
27
|
+
|
28
|
+
it "retrieves single values" do
|
29
|
+
Card.create! :name => "banana+*self+*help", :content => "pebbles"
|
30
|
+
expect(Card["banana"].rule(:help)).to eq("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
|
+
expect(Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help)).to eq("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
|
+
expect(Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help)).to eq("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
|
+
expect(Card.new( :type => "Book" ).rule(:add_help, :fallback=>:help)).to eq("add any kind of card")
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
|
56
|
+
describe "#setting_codenames_by_group" do
|
57
|
+
before do
|
58
|
+
@pointer_settings = [ :options, :options_label, :input ]
|
59
|
+
end
|
60
|
+
it "doesn't fail on nonexistent trunks" do
|
61
|
+
expect(Card.new(:name=>'foob+*right').setting_codenames_by_group.class).to eq(Hash)
|
62
|
+
end
|
63
|
+
|
64
|
+
it "returns universal setting names for non-pointer set" do
|
65
|
+
skip "Different api, we should just put the tests in a new spec for that"
|
66
|
+
snbg = Card.fetch('*star').setting_codenames_by_group
|
67
|
+
#warn "snbg #{snbg.class} #{snbg.inspect}"
|
68
|
+
expect(snbg.keys.length).to eq(4)
|
69
|
+
expect(snbg.keys.first).to be_a Symbol
|
70
|
+
expect(snbg.keys.member?( :pointer )).not_to be_truthy
|
71
|
+
end
|
72
|
+
|
73
|
+
|
74
|
+
it "returns pointer-specific setting names for pointer card" do
|
75
|
+
c = Card.fetch 'Fruit+*type+*create+*self', :new=>{}
|
76
|
+
snbg = c.setting_codenames_by_group
|
77
|
+
expect(snbg[:pointer]).to eq(@pointer_settings)
|
78
|
+
end
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
File without changes
|
@@ -6,9 +6,9 @@ describe Card::Set::All::Templating do
|
|
6
6
|
it "for User+*type+*structure should return all Users" do
|
7
7
|
Card::Auth.as_bot do
|
8
8
|
c=Card.create(:name=>'User+*type+*structure')
|
9
|
-
c.structuree_names.sort.
|
9
|
+
expect(c.structuree_names.sort).to eq([
|
10
10
|
"Joe Admin", "Joe Camel", "Joe User", "John", "No Count", "Sample User", "Sara", "u1", "u2", "u3"
|
11
|
-
]
|
11
|
+
])
|
12
12
|
end
|
13
13
|
end
|
14
14
|
end
|
@@ -27,7 +27,7 @@ describe Card::Set::All::Templating do
|
|
27
27
|
end
|
28
28
|
|
29
29
|
it "should have default content" do
|
30
|
-
@jb.format._render_raw.
|
30
|
+
expect(@jb.format._render_raw).to eq('Today!')
|
31
31
|
end
|
32
32
|
|
33
33
|
it "should change type and content with template" do
|
@@ -37,8 +37,8 @@ describe Card::Set::All::Templating do
|
|
37
37
|
@bt.save!
|
38
38
|
end
|
39
39
|
jb = @jb.refresh force=true
|
40
|
-
jb.format.render(:raw).
|
41
|
-
jb.type_id.
|
40
|
+
expect(jb.format.render(:raw)).to eq('Tomorrow')
|
41
|
+
expect(jb.type_id).to eq(Card::PhraseID)
|
42
42
|
end
|
43
43
|
|
44
44
|
it "should have type and content overridden by (new) type_plus_right set" do
|
@@ -46,8 +46,8 @@ describe Card::Set::All::Templating do
|
|
46
46
|
Card.create! :name=>'Basic+birthday+*type plus right+*structure', :type=>'PlainText', :content=>'Yesterday'
|
47
47
|
end
|
48
48
|
jb = @jb.refresh force=true
|
49
|
-
jb.raw_content.
|
50
|
-
jb.type_id.
|
49
|
+
expect(jb.raw_content).to eq('Yesterday')
|
50
|
+
expect(jb.type_id).to eq(Card::PlainTextID)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
@@ -61,11 +61,15 @@ describe Card::Set::All::Templating do
|
|
61
61
|
end
|
62
62
|
|
63
63
|
it "should have default cardtype" do
|
64
|
-
@jb.type_code.
|
64
|
+
expect(@jb.type_code).to eq(:date)
|
65
65
|
end
|
66
66
|
|
67
67
|
it "should have default content" do
|
68
|
-
Card['Jim+birthday'].content.
|
68
|
+
expect(Card['Jim+birthday'].content).to eq('Today!')
|
69
|
+
end
|
70
|
+
|
71
|
+
it "should apply to new cards" do
|
72
|
+
expect(Card.new(:name=>"Pete+birthday").content).to eq('Today!')
|
69
73
|
end
|
70
74
|
end
|
71
75
|
|
@@ -77,7 +81,7 @@ describe Card::Set::All::Templating do
|
|
77
81
|
end
|
78
82
|
|
79
83
|
it "should return templated content even if content is passed in" do
|
80
|
-
Card.new(:type=>'Date', :content=>'').format._render(:raw).
|
84
|
+
expect(Card.new(:type=>'Date', :content=>'').format._render(:raw)).to eq('Tomorrow')
|
81
85
|
end
|
82
86
|
|
83
87
|
describe 'and right structure' do
|
@@ -89,12 +93,12 @@ describe Card::Set::All::Templating do
|
|
89
93
|
end
|
90
94
|
|
91
95
|
it "*right setting should override *type setting" do
|
92
|
-
Card['Jim+birthday'].raw_content.
|
96
|
+
expect(Card['Jim+birthday'].raw_content).to eq('Today')
|
93
97
|
end
|
94
98
|
|
95
99
|
it "should defer to normal content when *structure rule's content is (exactly) '_self'" do
|
96
100
|
Card::Auth.as_bot { Card.create! :name=>'Jim+birthday+*self+*structure', :content=>'_self' }
|
97
|
-
Card['Jim+birthday'].raw_content.
|
101
|
+
expect(Card['Jim+birthday'].raw_content).to eq('Yesterday')
|
98
102
|
end
|
99
103
|
end
|
100
104
|
end
|
@@ -6,7 +6,7 @@ module RenameMethods
|
|
6
6
|
{
|
7
7
|
:content => card.content,
|
8
8
|
#:updater_id => card.updater_id,
|
9
|
-
|
9
|
+
#:revisions => card.actions.count,
|
10
10
|
:referencers => card.referencers.map(&:name).sort,
|
11
11
|
:referees => card.referees.map(&:name).sort,
|
12
12
|
:dependents => card.dependents.map(&:id)
|
@@ -15,9 +15,11 @@ module RenameMethods
|
|
15
15
|
|
16
16
|
def assert_rename card, new_name
|
17
17
|
attrs_before = name_invariant_attributes( card )
|
18
|
+
actions_count_before = card.actions.count
|
18
19
|
card.name=new_name
|
19
20
|
card.update_referencers = true
|
20
21
|
card.save!
|
22
|
+
expect(card.actions.count).to eq(actions_count_before+1)
|
21
23
|
assert_equal attrs_before, name_invariant_attributes(card)
|
22
24
|
assert_equal new_name, card.name
|
23
25
|
assert Card[new_name]
|
@@ -37,8 +39,8 @@ describe Card::Set::All::TrackedAttributes do
|
|
37
39
|
it "should move plus keys into subcard hash" do
|
38
40
|
raw_args = { 'name'=>'test', 'subcards'=>{ '+*oldway'=>{'content'=>'old'}, }, '+*newway'=>{'content'=>'new'} }
|
39
41
|
subcards = Card.new.extract_subcard_args! raw_args
|
40
|
-
raw_args['subcards'].
|
41
|
-
subcards.keys.sort.
|
42
|
+
expect(raw_args['subcards']).to be_nil
|
43
|
+
expect(subcards.keys.sort).to eq(['+*newway', '+*oldway'])
|
42
44
|
end
|
43
45
|
end
|
44
46
|
|
@@ -48,19 +50,19 @@ describe Card::Set::All::TrackedAttributes do
|
|
48
50
|
|
49
51
|
it "should handle case variants" do
|
50
52
|
@c = Card.create! :name=>'chump'
|
51
|
-
@c.name.
|
53
|
+
expect(@c.name).to eq('chump')
|
52
54
|
@c.name = 'Chump'
|
53
55
|
@c.save!
|
54
|
-
@c.name.
|
56
|
+
expect(@c.name).to eq('Chump')
|
55
57
|
end
|
56
58
|
|
57
59
|
it "should handle changing from plus card to simple" do
|
58
60
|
c = Card.create! :name=>'four+five'
|
59
61
|
c.name = 'nine'
|
60
62
|
c.save!
|
61
|
-
c.name.
|
62
|
-
c.left_id.
|
63
|
-
c.right_id.
|
63
|
+
expect(c.name).to eq('nine')
|
64
|
+
expect(c.left_id).to eq(nil)
|
65
|
+
expect(c.right_id).to eq(nil)
|
64
66
|
end
|
65
67
|
|
66
68
|
#FIXME - following tests more about fetch than set_name. this spec still needs lots of cleanup
|
@@ -70,16 +72,16 @@ describe Card::Set::All::TrackedAttributes do
|
|
70
72
|
cards_should_be_added 0 do
|
71
73
|
c=Card.fetch "Carrots", :new=>{}
|
72
74
|
c.save
|
73
|
-
c.
|
74
|
-
Card.fetch("Carrots").
|
75
|
+
expect(c).to be_instance_of(Card)
|
76
|
+
expect(Card.fetch("Carrots")).to be_instance_of(Card)
|
75
77
|
end
|
76
78
|
end
|
77
79
|
|
78
80
|
it "test_simple" do
|
79
81
|
cards_should_be_added 1 do
|
80
|
-
Card['Boo!'].
|
81
|
-
Card.create(:name=>"Boo!").
|
82
|
-
Card['Boo!'].
|
82
|
+
expect(Card['Boo!']).to be_nil
|
83
|
+
expect(Card.create(:name=>"Boo!")).to be_instance_of(Card)
|
84
|
+
expect(Card['Boo!']).to be_instance_of(Card)
|
83
85
|
end
|
84
86
|
end
|
85
87
|
|
@@ -88,17 +90,17 @@ describe Card::Set::All::TrackedAttributes do
|
|
88
90
|
cards_should_be_added 1 do
|
89
91
|
c=Card.fetch("Tomatoes", :new=>{})
|
90
92
|
c.save
|
91
|
-
c.
|
92
|
-
Card.fetch("Tomatoes").
|
93
|
+
expect(c).to be_instance_of(Card)
|
94
|
+
expect(Card.fetch("Tomatoes")).to be_instance_of(Card)
|
93
95
|
end
|
94
96
|
end
|
95
97
|
|
96
98
|
it "test_create_junction" do
|
97
99
|
cards_should_be_added 3 do
|
98
|
-
Card.create(:name=>"Peach+Pear", :content=>"juicy").
|
100
|
+
expect(Card.create(:name=>"Peach+Pear", :content=>"juicy")).to be_instance_of(Card)
|
99
101
|
end
|
100
|
-
Card["Peach"].
|
101
|
-
Card["Pear"].
|
102
|
+
expect(Card["Peach"]).to be_instance_of(Card)
|
103
|
+
expect(Card["Pear"]).to be_instance_of(Card)
|
102
104
|
assert_equal "juicy", Card["Peach+Pear"].content
|
103
105
|
end
|
104
106
|
|
@@ -107,7 +109,7 @@ describe Card::Set::All::TrackedAttributes do
|
|
107
109
|
def cards_should_be_added number
|
108
110
|
number += Card.all.count
|
109
111
|
yield
|
110
|
-
Card.all.count.
|
112
|
+
expect(Card.all.count).to eq(number)
|
111
113
|
end
|
112
114
|
|
113
115
|
end
|
@@ -129,20 +131,20 @@ describe Card::Set::All::TrackedAttributes do
|
|
129
131
|
|
130
132
|
it "clears cache for old name" do
|
131
133
|
assert_rename Card['Menu'], 'manure'
|
132
|
-
Card['Menu'].
|
134
|
+
expect(Card['Menu']).to be_nil
|
133
135
|
end
|
134
136
|
|
135
137
|
it "wipes old references by default" do
|
136
138
|
c = Card['Menu']
|
137
139
|
c.name = 'manure'
|
138
140
|
c.save!
|
139
|
-
Card['manure'].references_from.size.
|
141
|
+
expect(Card['manure'].references_from.size).to eq(0)
|
140
142
|
end
|
141
143
|
|
142
144
|
it "picks up new references" do
|
143
145
|
Card.create :name=>'kinds of poop', :content=>'[[manure]]'
|
144
146
|
assert_rename Card['Menu'], 'manure'
|
145
|
-
Card['manure'].references_from.size.
|
147
|
+
expect(Card['manure'].references_from.size).to eq(2)
|
146
148
|
end
|
147
149
|
|
148
150
|
it "handles name variants" do
|