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
data/spec/mailers/mailer_spec.rb
CHANGED
@@ -4,8 +4,6 @@ describe Card::Mailer do
|
|
4
4
|
#include ActionMailer::Quoting
|
5
5
|
|
6
6
|
before do
|
7
|
-
ActionMailer::Base.delivery_method = :test
|
8
|
-
ActionMailer::Base.perform_deliveries = true
|
9
7
|
ActionMailer::Base.deliveries = []
|
10
8
|
|
11
9
|
@expected = Mail.new
|
@@ -15,34 +13,47 @@ describe Card::Mailer do
|
|
15
13
|
## see notifier test for data used in these tests
|
16
14
|
# FIXME: the cache is not cleared properly between tests. if the order changes
|
17
15
|
# (ie try renamed change notice below to change_notice) then *notify+*from gets stuck on.
|
18
|
-
context "change notice" do
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
end
|
42
|
-
|
43
|
-
describe "flexmail" do
|
44
|
-
|
45
|
-
end
|
16
|
+
# context "change notice" do
|
17
|
+
# before do
|
18
|
+
# user = Card['sara'].id
|
19
|
+
# card = Card["Sunglasses"]
|
20
|
+
# action = "edited"
|
21
|
+
# Card::Mailer.change_notice( user, card, action, card.name ).deliver
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# it "deliver a message" do
|
25
|
+
# assert_equal 1, ActionMailer::Base.deliveries.size
|
26
|
+
# end
|
27
|
+
#
|
28
|
+
# context "change notice message" do
|
29
|
+
# before do
|
30
|
+
# @mail = ActionMailer::Base.deliveries[0]
|
31
|
+
# end
|
32
|
+
# it "is addressed to users email" do
|
33
|
+
# assert_equal ["sara@user.com"], @mail.to
|
34
|
+
# end
|
35
|
+
# it "is from Wag bot email" do
|
36
|
+
# assert_equal [Card[Card::WagnBotID].account.email], @mail.from
|
37
|
+
# end
|
38
|
+
# end
|
39
|
+
# end
|
40
|
+
#
|
41
|
+
# describe "flexmail" do
|
42
|
+
# # FIXME: at least two tests should be here, with & w/o attachment.
|
43
|
+
# end
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
# describe "cardmail" do
|
48
|
+
# before do
|
49
|
+
# Card.gimme "mailtest", :content => "test"
|
50
|
+
# end
|
51
|
+
# it "renders email text" do
|
52
|
+
# Card::Mailer.cardmail(:to => "sara@user.com").deliver
|
53
|
+
# @mail = ActionMailer::Base.deliveries.last
|
54
|
+
# expect(@mail.body).to eq("test")
|
55
|
+
# end
|
56
|
+
# end
|
46
57
|
|
47
58
|
private
|
48
59
|
def encode(subject)
|
@@ -18,7 +18,7 @@ describe "Card (Cardtype)" do
|
|
18
18
|
city.delete!
|
19
19
|
end
|
20
20
|
# make sure it wasn't deleted / trashed
|
21
|
-
Card['City'].
|
21
|
+
expect(Card['City']).not_to be_nil
|
22
22
|
end
|
23
23
|
|
24
24
|
it "remove cardtype" do
|
@@ -41,16 +41,16 @@ describe "Card (Cardtype)" do
|
|
41
41
|
describe "conversion to cardtype" do
|
42
42
|
before do
|
43
43
|
@card = Card.create!(:type=>'Cardtype', :name=>'Cookie')
|
44
|
-
@card.type_name.
|
44
|
+
expect(@card.type_name).to eq('Cardtype')
|
45
45
|
end
|
46
46
|
|
47
47
|
it "creates cardtype model and permission" do
|
48
48
|
@card.type_id = Card.fetch_id('cookie')
|
49
49
|
@card.save!
|
50
|
-
@card.type_name.
|
50
|
+
expect(@card.type_name).to eq('Cookie')
|
51
51
|
@card=Card['Cookie']
|
52
52
|
assert_instance_of Card, @card
|
53
|
-
@card.type_code.
|
53
|
+
expect(@card.type_code).to eq(nil) # :cookie
|
54
54
|
assert_equal 'Cookie', Card.create!( :name=>'Oreo', :type=>'Cookie' ).type_name
|
55
55
|
end
|
56
56
|
end
|
@@ -77,9 +77,9 @@ describe Card, "created without permission" do
|
|
77
77
|
#end
|
78
78
|
|
79
79
|
it "should not create a new cardtype until saved" do
|
80
|
-
|
80
|
+
expect {
|
81
81
|
Card.new( :name=>'foo', :type=>'Cardtype')
|
82
|
-
}.
|
82
|
+
}.not_to change(Card, :count)
|
83
83
|
end
|
84
84
|
end
|
85
85
|
|
@@ -89,20 +89,20 @@ describe Card, "Normal card with dependents" do
|
|
89
89
|
@a = Card['A']
|
90
90
|
end
|
91
91
|
it "should confirm that it has dependents" do
|
92
|
-
@a.dependents.length.
|
92
|
+
expect(@a.dependents.length).to be > 0
|
93
93
|
end
|
94
94
|
it "should successfully have its type changed" do
|
95
95
|
Card::Auth.as_bot do
|
96
96
|
@a.type_id = Card::PhraseID;
|
97
97
|
@a.save!
|
98
|
-
Card['A'].type_code.
|
98
|
+
expect(Card['A'].type_code).to eq(:phrase)
|
99
99
|
end
|
100
100
|
end
|
101
101
|
it "should still have its dependents after changing type" do
|
102
102
|
Card::Auth.as_bot do
|
103
103
|
assert type_id = Card.fetch_id('cardtype_e')
|
104
104
|
@a.type_id = type_id; @a.save!
|
105
|
-
Card['A'].dependents.length.
|
105
|
+
expect(Card['A'].dependents.length).to be > 0
|
106
106
|
end
|
107
107
|
end
|
108
108
|
end
|
@@ -133,11 +133,11 @@ describe Card, "New Cardtype" do
|
|
133
133
|
end
|
134
134
|
|
135
135
|
it "should have create permissions" do
|
136
|
-
@ct.who_can(:create).
|
136
|
+
expect(@ct.who_can(:create)).not_to be_nil
|
137
137
|
end
|
138
138
|
|
139
139
|
it "its create permissions should be based on Basic" do
|
140
|
-
@ct.who_can(:create).
|
140
|
+
expect(@ct.who_can(:create)).to eq(Card['Basic'].who_can(:create))
|
141
141
|
end
|
142
142
|
end
|
143
143
|
|
@@ -151,7 +151,7 @@ describe Card, "Wannabe Cardtype Card" do
|
|
151
151
|
|
152
152
|
end
|
153
153
|
it "should successfully change its type to a Cardtype" do
|
154
|
-
Card['convertible'].type_code.
|
154
|
+
expect(Card['convertible'].type_code).to eq(:cardtype)
|
155
155
|
end
|
156
156
|
end
|
157
157
|
|
@@ -167,16 +167,16 @@ describe Card, "Joe User" do
|
|
167
167
|
end
|
168
168
|
|
169
169
|
it "should not have r3 permissions" do
|
170
|
-
@ucard.fetch(:new=>{}, :trait=>:roles).item_names.member?(@r3.name).
|
170
|
+
expect(@ucard.fetch(:new=>{}, :trait=>:roles).item_names.member?(@r3.name)).to be_falsey
|
171
171
|
end
|
172
172
|
it "should ponder creating a card of Cardtype F, but find that he lacks create permissions" do
|
173
|
-
Card.new(:type=>'Cardtype F').ok?(:create).
|
173
|
+
expect(Card.new(:type=>'Cardtype F').ok?(:create)).to be_falsey
|
174
174
|
end
|
175
175
|
it "should not find Cardtype F on its list of createable cardtypes" do
|
176
|
-
@type_names.member?('Cardtype F').
|
176
|
+
expect(@type_names.member?('Cardtype F')).to be_falsey
|
177
177
|
end
|
178
178
|
it "should find Basic on its list of createable cardtypes" do
|
179
|
-
@type_names.member?('Basic').
|
179
|
+
expect(@type_names.member?('Basic')).to be_truthy
|
180
180
|
end
|
181
181
|
|
182
182
|
end
|
@@ -187,13 +187,13 @@ describe Card, "Cardtype with Existing Cards" do
|
|
187
187
|
@ct = Card['Cardtype F']
|
188
188
|
end
|
189
189
|
it "should have existing cards of that type" do
|
190
|
-
Card.search(:type=>@ct.name).
|
190
|
+
expect(Card.search(:type=>@ct.name)).not_to be_empty
|
191
191
|
end
|
192
192
|
|
193
193
|
it "should raise an error when you try to delete it" do
|
194
194
|
Card::Auth.as_bot do
|
195
195
|
@ct.delete
|
196
|
-
@ct.errors[:cardtype].
|
196
|
+
expect(@ct.errors[:cardtype]).not_to be_empty
|
197
197
|
end
|
198
198
|
end
|
199
199
|
end
|
@@ -207,7 +207,7 @@ describe Card::Set::Type::Cardtype do
|
|
207
207
|
ctg.type_id = Card::BasicID
|
208
208
|
ctg.save!
|
209
209
|
ctg = Card["CardtypeG"]
|
210
|
-
ctg.type_code.
|
210
|
+
expect(ctg.type_code).to eq(:basic)
|
211
211
|
#ctg.extension.should == nil
|
212
212
|
end
|
213
213
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# FIXME this shouldn't be here
|
4
4
|
describe Card::Set::Type::Cardtype, ".create with :codename" do
|
5
5
|
it "should work" do
|
6
|
-
Card.create!(:name=>"Foo Type", :codename=>"foo", :type=>'Cardtype').type_code.
|
6
|
+
expect(Card.create!(:name=>"Foo Type", :codename=>"foo", :type=>'Cardtype').type_code).to eq(:cardtype)
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
@@ -21,7 +21,7 @@ describe Card, "created by Card.new " do
|
|
21
21
|
Card::Auth.as_bot do
|
22
22
|
Card.create! :name => "blue+*right+*default", :content => "joe", :type=>"Pointer"
|
23
23
|
c = Card.new :name => "Lady+blue", :content => "[[Jimmy]]"
|
24
|
-
c.content.
|
24
|
+
expect(c.content).to eq("[[Jimmy]]")
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
@@ -36,18 +36,18 @@ describe Card, "created by Card.create with valid attributes" do
|
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
39
|
-
it "should not have errors" do @b.errors.size.
|
40
|
-
it "should have the right class" do @c.class.
|
41
|
-
it "should have the right key" do @c.key.
|
42
|
-
it "should have the right name" do @c.name.
|
43
|
-
it "should have the right content" do @c.content.
|
39
|
+
it "should not have errors" do expect(@b.errors.size).to eq(0) end
|
40
|
+
it "should have the right class" do expect(@c.class).to eq(Card) end
|
41
|
+
it "should have the right key" do expect(@c.key).to eq("new_card") end
|
42
|
+
it "should have the right name" do expect(@c.name).to eq("New Card") end
|
43
|
+
it "should have the right content" do expect(@c.content).to eq("Great Content") end
|
44
44
|
|
45
|
-
it "should have
|
46
|
-
@c.
|
45
|
+
it "should have the right content" do
|
46
|
+
@c.db_content == "Great Content"
|
47
47
|
end
|
48
48
|
|
49
49
|
it "should be findable by name" do
|
50
|
-
Card["New Card"].class.
|
50
|
+
expect(Card["New Card"].class).to eq(Card)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
@@ -58,19 +58,19 @@ describe Card, "create junction" do
|
|
58
58
|
end
|
59
59
|
|
60
60
|
it "should not have errors" do
|
61
|
-
@c.errors.size.
|
61
|
+
expect(@c.errors.size).to eq(0)
|
62
62
|
end
|
63
63
|
|
64
64
|
it "should create junction card" do
|
65
|
-
Card["Peach+Pear"].class.
|
65
|
+
expect(Card["Peach+Pear"].class).to eq(Card)
|
66
66
|
end
|
67
67
|
|
68
68
|
it "should create trunk card" do
|
69
|
-
Card["Peach"].class.
|
69
|
+
expect(Card["Peach"].class).to eq(Card)
|
70
70
|
end
|
71
71
|
|
72
72
|
it "should create tag card" do
|
73
|
-
Card["Pear"].class.
|
73
|
+
expect(Card["Pear"].class).to eq(Card)
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
@@ -1,14 +1,15 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
+
require 'card/action'
|
3
4
|
|
4
5
|
describe Card, "deleting card" do
|
5
6
|
it "should require permission" do
|
6
7
|
a = Card['a']
|
7
8
|
Card::Auth.as :anonymous do
|
8
|
-
a.ok?(:delete).
|
9
|
-
a.delete.
|
10
|
-
a.errors[:permission_denied].
|
11
|
-
Card['a'].trash.
|
9
|
+
expect(a.ok?(:delete)).to eq(false)
|
10
|
+
expect(a.delete).to eq(false)
|
11
|
+
expect(a.errors[:permission_denied]).not_to be_empty
|
12
|
+
expect(Card['a'].trash).to eq(false)
|
12
13
|
end
|
13
14
|
|
14
15
|
end
|
@@ -22,13 +23,13 @@ describe Card, "deleted card" do
|
|
22
23
|
end
|
23
24
|
end
|
24
25
|
it "should be in the trash" do
|
25
|
-
@c.trash.
|
26
|
+
expect(@c.trash).to be_truthy
|
26
27
|
end
|
27
28
|
it "should come out of the trash when a plus card is created" do
|
28
29
|
Card::Auth.as_bot do
|
29
30
|
Card.create(:name=>'A+*acct')
|
30
31
|
c = Card[ 'A' ]
|
31
|
-
c.trash.
|
32
|
+
expect(c.trash).to be_falsey
|
32
33
|
end
|
33
34
|
end
|
34
35
|
end
|
@@ -38,7 +39,7 @@ describe Card, "in trash" do
|
|
38
39
|
Card.create(:name=>"Betty").delete
|
39
40
|
c=Card.fetch "Betty", :new=>{}
|
40
41
|
c.save
|
41
|
-
Card["Betty"].
|
42
|
+
expect(Card["Betty"]).to be_instance_of(Card)
|
42
43
|
end
|
43
44
|
end
|
44
45
|
|
@@ -50,8 +51,8 @@ describe Card, "plus cards" do
|
|
50
51
|
root = Card['zz']
|
51
52
|
root.delete
|
52
53
|
# Rails.logger.info "ERRORS = #{root.errors.full_messages*''}"
|
53
|
-
Card.find(c.id).trash.
|
54
|
-
Card['zz'].
|
54
|
+
expect(Card.find(c.id).trash).to be_truthy
|
55
|
+
expect(Card['zz']).to be_nil
|
55
56
|
end
|
56
57
|
end
|
57
58
|
end
|
@@ -61,7 +62,7 @@ describe Card do
|
|
61
62
|
context "with revisions" do
|
62
63
|
before do Card::Auth.as_bot { @c = Card["Wagn Bot"] } end
|
63
64
|
it "should not be removable" do
|
64
|
-
@c.delete.
|
65
|
+
expect(@c.delete).not_to be_truthy
|
65
66
|
end
|
66
67
|
end
|
67
68
|
|
@@ -72,7 +73,7 @@ describe Card do
|
|
72
73
|
end
|
73
74
|
end
|
74
75
|
it "should be removable" do
|
75
|
-
@c.delete
|
76
|
+
expect(@c.delete!).to be_truthy
|
76
77
|
end
|
77
78
|
end
|
78
79
|
end
|
@@ -101,11 +102,11 @@ describe Card, "dependent removal" do
|
|
101
102
|
end
|
102
103
|
|
103
104
|
it "should be trash" do
|
104
|
-
@c.trash.
|
105
|
+
expect(@c.trash).to be_truthy
|
105
106
|
end
|
106
107
|
|
107
108
|
it "should not be findable by name" do
|
108
|
-
Card["A+B+C"].
|
109
|
+
expect(Card["A+B+C"]).to eq(nil)
|
109
110
|
end
|
110
111
|
end
|
111
112
|
|
@@ -122,13 +123,13 @@ describe Card, "rename to trashed name" do
|
|
122
123
|
end
|
123
124
|
|
124
125
|
it "should rename b to a" do
|
125
|
-
@b.name.
|
126
|
+
expect(@b.name).to eq('A')
|
126
127
|
end
|
127
128
|
|
128
129
|
it "should rename a to a*trash" do
|
129
|
-
(c = Card.find(@a.id)).cardname.to_s.
|
130
|
-
c.name.
|
131
|
-
c.key.
|
130
|
+
expect((c = Card.find(@a.id)).cardname.to_s).to eq('A*trash')
|
131
|
+
expect(c.name).to eq('A*trash')
|
132
|
+
expect(c.key).to eq('a*trash')
|
132
133
|
end
|
133
134
|
end
|
134
135
|
|
@@ -142,16 +143,16 @@ describe Card, "sent to trash" do
|
|
142
143
|
end
|
143
144
|
|
144
145
|
it "should be trash" do
|
145
|
-
@c.trash.
|
146
|
+
expect(@c.trash).to eq(true)
|
146
147
|
end
|
147
148
|
|
148
149
|
it "should not be findable by name" do
|
149
|
-
Card["basicname"].
|
150
|
+
expect(Card["basicname"]).to eq(nil)
|
150
151
|
end
|
151
152
|
|
152
|
-
it "should still have
|
153
|
-
@c.
|
154
|
-
@c.
|
153
|
+
it "should still have actions" do
|
154
|
+
expect(@c.actions.count).to eq(2)
|
155
|
+
expect(@c.last_change_on(:db_content).value).to eq('basiccontent')
|
155
156
|
end
|
156
157
|
end
|
157
158
|
|
@@ -165,19 +166,19 @@ describe Card, "revived from trash" do
|
|
165
166
|
end
|
166
167
|
|
167
168
|
it "should not be trash" do
|
168
|
-
@c.trash.
|
169
|
+
expect(@c.trash).to eq(false)
|
169
170
|
end
|
170
171
|
|
171
|
-
it "should have
|
172
|
-
@c.
|
172
|
+
it "should have 3 actions" do
|
173
|
+
expect(@c.actions.count).to eq(3)
|
173
174
|
end
|
174
175
|
|
175
|
-
it "should still have old
|
176
|
-
@c.
|
176
|
+
it "should still have old content" do
|
177
|
+
expect(@c.nth_action(1).change_for(2).first.value).to eq('basiccontent')
|
177
178
|
end
|
178
179
|
|
179
|
-
it "should have
|
180
|
-
@c.content.
|
180
|
+
it "should have the same content" do
|
181
|
+
expect(@c.content).to eq('revived content')
|
181
182
|
# Card.fetch(@c.name).content.should == 'revived content'
|
182
183
|
end
|
183
184
|
end
|
@@ -207,19 +208,19 @@ describe Card, "junction revival" do
|
|
207
208
|
end
|
208
209
|
|
209
210
|
it "should not be trash" do
|
210
|
-
@c.trash.
|
211
|
+
expect(@c.trash).to eq(false)
|
211
212
|
end
|
212
213
|
|
213
|
-
it "should have
|
214
|
-
@c.
|
214
|
+
it "should have 3 actions" do
|
215
|
+
expect(@c.actions.count).to eq(3)
|
215
216
|
end
|
216
217
|
|
217
|
-
it "should still have old
|
218
|
-
@c.
|
218
|
+
it "should still have old action" do
|
219
|
+
expect(@c.nth_action(1).change_for(2).first.value).to eq('basiccontent')
|
219
220
|
end
|
220
221
|
|
221
|
-
it "should have
|
222
|
-
@c.
|
222
|
+
it "should have old content" do
|
223
|
+
expect(@c.db_content).to eq('revived content')
|
223
224
|
end
|
224
225
|
end
|
225
226
|
|