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
@@ -12,21 +12,21 @@ describe Card::Reference do
|
|
12
12
|
Card["JoeForm"].format.render(:core)
|
13
13
|
assert_equal ["joe_form+age", "joe_form+description", "joe_form+name"],
|
14
14
|
Card["JoeForm"].includees.map(&:key).sort
|
15
|
-
Card["JoeForm"].references_expired.
|
15
|
+
expect(Card["JoeForm"].references_expired).not_to eq(true)
|
16
16
|
end
|
17
17
|
|
18
18
|
it "on template creation" do
|
19
19
|
Card.create! :name=>"SpecialForm", :type=>'Cardtype'
|
20
20
|
Card.create! :name=>"Form1", :type=>'SpecialForm', :content=>"foo"
|
21
21
|
c = Card["Form1"]
|
22
|
-
c.references_expired.
|
22
|
+
expect(c.references_expired).to be_nil
|
23
23
|
Card.create! :name=>"SpecialForm+*type+*structure", :content=>"{{+bar}}"
|
24
24
|
c = Card["Form1"]
|
25
|
-
c.references_expired.
|
25
|
+
expect(c.references_expired).to be_truthy
|
26
26
|
Card["Form1"].format.render(:core)
|
27
27
|
c = Card["Form1"]
|
28
|
-
c.references_expired.
|
29
|
-
Card["Form1"].includees.map(&:key).
|
28
|
+
expect(c.references_expired).to be_nil
|
29
|
+
expect(Card["Form1"].includees.map(&:key)).to eq(["form1+bar"])
|
30
30
|
end
|
31
31
|
|
32
32
|
it "on template update" do
|
@@ -34,11 +34,11 @@ describe Card::Reference do
|
|
34
34
|
tmpl = Card["UserForm+*type+*structure"]
|
35
35
|
tmpl.content = "{{+monkey}} {{+banana}} {{+fruit}}";
|
36
36
|
tmpl.save!
|
37
|
-
Card["JoeForm"].references_expired.
|
37
|
+
expect(Card["JoeForm"].references_expired).to be_truthy
|
38
38
|
Card["JoeForm"].format.render(:core)
|
39
39
|
assert_equal ["joe_form+banana", "joe_form+fruit", "joe_form+monkey"],
|
40
40
|
Card["JoeForm"].includees.map(&:key).sort
|
41
|
-
Card["JoeForm"].references_expired.
|
41
|
+
expect(Card["JoeForm"].references_expired).not_to eq(true)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
@@ -47,19 +47,19 @@ describe Card::Reference do
|
|
47
47
|
newcard("Submarine","[[Yellow]]")
|
48
48
|
newcard("Sun","[[Yellow]]")
|
49
49
|
newcard("Yellow")
|
50
|
-
Card["Yellow"].referencers.map(&:name).sort.
|
50
|
+
expect(Card["Yellow"].referencers.map(&:name).sort).to eq(%w{ Banana Submarine Sun })
|
51
51
|
y=Card["Yellow"];
|
52
52
|
y.type_id= Card.fetch_id "UserForm";
|
53
53
|
y.save!
|
54
|
-
Card["Yellow"].referencers.map(&:name).sort.
|
54
|
+
expect(Card["Yellow"].referencers.map(&:name).sort).to eq(%w{ Banana Submarine Sun })
|
55
55
|
end
|
56
56
|
|
57
57
|
it "container inclusion" do
|
58
58
|
Card.create :name=>'bob+city'
|
59
59
|
Card.create :name=>'address+*right+*default',:content=>"{{_L+city}}"
|
60
60
|
Card.create :name=>'bob+address'
|
61
|
-
Card.fetch('bob+address').includees.map(&:name).
|
62
|
-
Card.fetch('bob+city').includers.map(&:name).
|
61
|
+
expect(Card.fetch('bob+address').includees.map(&:name)).to eq(["bob+city"])
|
62
|
+
expect(Card.fetch('bob+city').includers.map(&:name)).to eq(["bob+address"])
|
63
63
|
end
|
64
64
|
|
65
65
|
it "pickup new links on rename" do
|
@@ -68,7 +68,7 @@ describe Card::Reference do
|
|
68
68
|
@e.update_attributes! :name => "Ethan" # NOW there is an Ethan card
|
69
69
|
# @e.referencers.map(&:name).include("L") as the test was originally written, fails
|
70
70
|
# do we need the links to be caught before reloading the card?
|
71
|
-
Card["Ethan"].referencers.map(&:name).include?("L").
|
71
|
+
expect(Card["Ethan"].referencers.map(&:name).include?("L")).not_to eq(nil)
|
72
72
|
end
|
73
73
|
|
74
74
|
it "should update references on rename when requested" do
|
@@ -80,7 +80,7 @@ describe Card::Reference do
|
|
80
80
|
watermelon.update_referencers = true
|
81
81
|
watermelon.name="grapefruit"
|
82
82
|
watermelon.save!
|
83
|
-
lew.reload.content.
|
83
|
+
expect(lew.reload.content).to eq("likes [[grapefruit]] and [[grapefruit+seeds|seeds]]")
|
84
84
|
end
|
85
85
|
|
86
86
|
it "should update referencers on rename when requested (case 2)" do
|
@@ -89,7 +89,7 @@ describe Card::Reference do
|
|
89
89
|
card.update_referencers = true
|
90
90
|
card.name='Administrator Menu+*type+*read'
|
91
91
|
card.save
|
92
|
-
Card::Reference.where(:referee_id => Card::AdministratorID).map(&:referer_id).sort.
|
92
|
+
expect(Card::Reference.where(:referee_id => Card::AdministratorID).map(&:referer_id).sort).to eq(refs)
|
93
93
|
end
|
94
94
|
|
95
95
|
it "should not update references when not requested" do
|
@@ -103,7 +103,7 @@ describe Card::Reference do
|
|
103
103
|
watermelon.update_referencers = false
|
104
104
|
watermelon.name="grapefruit"
|
105
105
|
watermelon.save!
|
106
|
-
lew.reload.content.
|
106
|
+
expect(lew.reload.content).to eq("likes [[watermelon]] and [[watermelon+seeds|seeds]]")
|
107
107
|
assert_equal [ 'L', 'L' ], lew.references_to.map(&:ref_type), "links should be a LINK"
|
108
108
|
assert_equal [ 0, 0 ], lew.references_to.map(&:present), "links should not be present"
|
109
109
|
end
|
@@ -112,14 +112,14 @@ describe Card::Reference do
|
|
112
112
|
@ab = Card["A+B"] #linked to from X, included by Y
|
113
113
|
@ab.update_attributes! :name=>'Peanut+Butter', :update_referencers => true
|
114
114
|
@x = Card['X']
|
115
|
-
@x.content.
|
115
|
+
expect(@x.content).to eq("[[A]] [[Peanut+Butter]] [[T]]")
|
116
116
|
end
|
117
117
|
|
118
118
|
it "update referencing content on rename junction card" do
|
119
119
|
@ab = Card["A+B"] #linked to from X, included by Y
|
120
120
|
@ab.update_attributes! :name=>'Peanut+Butter', :update_referencers=>false
|
121
121
|
@x = Card['X']
|
122
|
-
@x.content.
|
122
|
+
expect(@x.content).to eq("[[A]] [[A+B]] [[T]]")
|
123
123
|
end
|
124
124
|
|
125
125
|
it "template inclusion" do
|
@@ -129,42 +129,42 @@ describe Card::Reference do
|
|
129
129
|
rgb = newcard 'rgb'
|
130
130
|
green_rgb = Card.create! :name => "green+rgb", :content=>"#00ff00"
|
131
131
|
|
132
|
-
green.reload.includees.map(&:name).
|
133
|
-
green_rgb.reload.includers.map(&:name).
|
132
|
+
expect(green.reload.includees.map(&:name)).to eq(["green+rgb"])
|
133
|
+
expect(green_rgb.reload.includers.map(&:name)).to eq(['green'])
|
134
134
|
end
|
135
135
|
|
136
136
|
it "simple link" do
|
137
137
|
alpha = Card.create :name=>'alpha'
|
138
138
|
beta = Card.create :name=>'beta', :content=>"I link to [[alpha]]"
|
139
|
-
Card['alpha'].referencers.map(&:name).
|
140
|
-
Card['beta'].referees.map(&:name).
|
139
|
+
expect(Card['alpha'].referencers.map(&:name)).to eq(['beta'])
|
140
|
+
expect(Card['beta'].referees.map(&:name)).to eq(['alpha'])
|
141
141
|
end
|
142
142
|
|
143
143
|
it "link with spaces" do
|
144
144
|
alpha = Card.create! :name=>'alpha card'
|
145
145
|
beta = Card.create! :name=>'beta card', :content=>"I link to [[alpha_card|ALPHA CARD]]"
|
146
|
-
Card['beta card'].referees.map(&:name).
|
147
|
-
Card['alpha card'].referencers.map(&:name).
|
146
|
+
expect(Card['beta card'].referees.map(&:name)).to eq(['alpha card'])
|
147
|
+
expect(Card['alpha card'].referencers.map(&:name)).to eq(['beta card'])
|
148
148
|
end
|
149
149
|
|
150
150
|
|
151
151
|
it "simple inclusion" do
|
152
152
|
alpha = Card.create :name=>'alpha'
|
153
153
|
beta = Card.create :name=>'beta', :content=>"I include to {{alpha}}"
|
154
|
-
Card['beta'].includees.map(&:name).
|
155
|
-
Card['alpha'].includers.map(&:name).
|
154
|
+
expect(Card['beta'].includees.map(&:name)).to eq(['alpha'])
|
155
|
+
expect(Card['alpha'].includers.map(&:name)).to eq(['beta'])
|
156
156
|
end
|
157
157
|
|
158
158
|
it "non simple link" do
|
159
159
|
alpha = Card.create :name=>'alpha'
|
160
160
|
beta = Card.create :name=>'beta', :content=>"I link to [[alpha|ALPHA]]"
|
161
|
-
Card['beta'].referees.map(&:name).
|
162
|
-
Card['alpha'].referencers.map(&:name).
|
161
|
+
expect(Card['beta'].referees.map(&:name)).to eq(['alpha'])
|
162
|
+
expect(Card['alpha'].referencers.map(&:name)).to eq(['beta'])
|
163
163
|
end
|
164
164
|
|
165
165
|
it "should handle commented inclusion" do
|
166
166
|
c = Card.create :name=>'inclusion comment test', :content=>'{{## hi mom }}'
|
167
|
-
c.errors.any
|
167
|
+
expect(c.errors.any?).to be_falsey
|
168
168
|
end
|
169
169
|
|
170
170
|
|
@@ -172,13 +172,13 @@ describe Card::Reference do
|
|
172
172
|
@l = newcard("woof", "[[Lewdog]]") # no Lewdog card yet...
|
173
173
|
@e = newcard("Lewdog") # now there is
|
174
174
|
# NOTE @e.referencers does not work, you have to reload
|
175
|
-
@e.reload.referencers.map(&:name).include?("woof").
|
175
|
+
expect(@e.reload.referencers.map(&:name).include?("woof")).not_to eq(nil)
|
176
176
|
end
|
177
177
|
|
178
178
|
it "pickup new inclusions on create" do
|
179
179
|
@l = Card.create! :name=>"woof", :content=>"{{Lewdog}}" # no Lewdog card yet...
|
180
180
|
@e = Card.new(:name=>"Lewdog", :content=>"grrr") # now there is
|
181
|
-
@e.name_referencers.map(&:name).include?("woof").
|
181
|
+
expect(@e.name_referencers.map(&:name).include?("woof")).not_to eq(nil)
|
182
182
|
end
|
183
183
|
|
184
184
|
=begin
|
data/spec/lib/card/set_spec.rb
CHANGED
@@ -1,84 +1,88 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
-
module Card::Set::Right::Account # won't this conflict with a real set (and fail to provide controlled test?)
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
end
|
10
|
-
|
11
|
-
describe Card do
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
# @account_card.status.should == 'pending'
|
35
|
-
|
36
|
-
# Card.cache.reset
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
3
|
+
# module Card::Set::Right::Account # won't this conflict with a real set (and fail to provide controlled test?)
|
4
|
+
# extend Card::Set
|
5
|
+
#
|
6
|
+
# card_accessor :role, :default => "request", :type=>:phrase
|
7
|
+
# card_writer :write, :default => "request", :type=>:phrase
|
8
|
+
# card_reader :read, :default => "request", :type=>:phrase
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
# describe Card do
|
12
|
+
# before do
|
13
|
+
# @account_card = Card['sara'].fetch :trait=>:account
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# describe "Read and write card attribute" do
|
17
|
+
# it "gets email attribute" do
|
18
|
+
# expect(@account_card.role).to eq('request')
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
# it "shouldn't have a reader method for card_writer" do
|
22
|
+
# expect(@account_card.respond_to?( :write)).to be_falsey
|
23
|
+
# expect(@account_card.method( :write= )).to be
|
24
|
+
# end
|
25
|
+
#
|
26
|
+
# it "shouldn't have a reader method for card_reader" do
|
27
|
+
# expect(@account_card.method( :read)).to be
|
28
|
+
# expect(@account_card.respond_to?( :read= )).to be_falsey
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# it "sets and saves attribute" do
|
32
|
+
# @account_card.write= 'test_value'
|
33
|
+
# @account_card.status= 'pending'
|
34
|
+
# # @account_card.status.should == 'pending'
|
35
|
+
# Card::Auth.as_bot { @account_card.save }
|
36
|
+
# # Card.cache.reset
|
37
|
+
# expect(tcard = Card['sara'].fetch(:trait=>:account)).to be
|
38
|
+
# expect(tcard.status).to eq('pending')
|
39
|
+
# expect(tcard.fetch(:trait=>:write).content).to eq('test_value')
|
40
|
+
# end
|
41
|
+
#
|
42
|
+
# end
|
43
|
+
#
|
44
|
+
# let(:card) { Card.new(:name=>'simple') }
|
45
|
+
# let(:card_self) { Card.new(:name=>'*navbox') }
|
46
|
+
# let(:card_right) { Card.new(:name=>'card+*right') }
|
47
|
+
# let(:card_type_search) { Card.new(:name=>'search_me', :type=>Card::SearchID) }
|
48
|
+
# let(:card_double) { Card }
|
49
|
+
# let(:format_double) { object_double(Card.new(:name=>'card+*right').format) }
|
50
|
+
#
|
51
|
+
# #let(:html_format_double) { Card::HtmlFormat }
|
52
|
+
# let(:html_format_double) { double("Card::HtmlFormat") }
|
53
|
+
#
|
54
|
+
# it "should define Formatter methods from modules" do
|
55
|
+
# expect(format_double).to respond_to(:render_navbox_self_core)
|
56
|
+
# expect(format_double.method(:render_navbox_self_core)).to be
|
57
|
+
# expect(format_double.method(:_render_right_right_raw)).to be
|
58
|
+
# expect(format_double.method(:render_type_search_core)).to be
|
59
|
+
# expect(format_double.method(:_final_type_search_raw)).to be
|
60
|
+
# end
|
61
|
+
# it "should call set render methods" do
|
62
|
+
# expect(card_self).to receive(:_final_self_navbox_core)
|
63
|
+
# card_self.format.render_core
|
64
|
+
# #expect(card_right.format.method(:_render_right_right_raw)).to be
|
65
|
+
# #expect(card_right.format).to respond_to(:_render_right_right_raw)
|
66
|
+
# card_right.format.render_core
|
67
|
+
# expect(card_type_search.method(:render_type_search_core)).to be
|
68
|
+
# card_type_search.format.render_core
|
69
|
+
# expect(card.method(:_final_type_search_raw)).to be
|
70
|
+
# card.format.render_core
|
71
|
+
# end
|
72
|
+
# it "should define Formatter methods from modules" do
|
73
|
+
# expect(html_format_double.method(:render_self_navbox_core)).to be
|
74
|
+
# expect(html_format_double.method(:_render_right_right_raw)).to be
|
75
|
+
# expect(html_format_double.method(:render_type_search_core)).to be
|
76
|
+
# expect(html_format_double.method(:_final_type_search_raw)).to be
|
77
|
+
# end
|
78
|
+
# it "should define Formatter methods from modules" do
|
79
|
+
# expect(card_self).to receive(:_final_self_navbox_titled)
|
80
|
+
# card_self.render_titled
|
81
|
+
# expect(card_right.method(:_render_right_right_edit)).to be
|
82
|
+
# card_right.render_edit
|
83
|
+
# expect(card_type_search.method(:render_type_search_menu)).to be
|
84
|
+
# card_type_search.render_menu
|
85
|
+
# expect(card.method(:_final_type_search_content)).to be
|
86
|
+
# card.render_content
|
87
|
+
# end
|
88
|
+
# end
|
data/spec/lib/wagn/cache_spec.rb
CHANGED
@@ -3,16 +3,16 @@
|
|
3
3
|
describe Wagn::Cache do
|
4
4
|
describe "with nil store" do
|
5
5
|
before do
|
6
|
-
|
6
|
+
expect(Wagn::Cache).to receive(:generate_cache_id).exactly(2).times.and_return("cache_id")
|
7
7
|
@cache = Wagn::Cache.new :prefix=>"prefix"
|
8
8
|
end
|
9
9
|
|
10
10
|
describe "#basic operations" do
|
11
11
|
it "should work" do
|
12
12
|
@cache.write("a", "foo")
|
13
|
-
@cache.read("a").
|
13
|
+
expect(@cache.read("a")).to eq("foo")
|
14
14
|
@cache.fetch("b") { "bar" }
|
15
|
-
@cache.read("b").
|
15
|
+
expect(@cache.read("b")).to eq("bar")
|
16
16
|
@cache.reset
|
17
17
|
end
|
18
18
|
end
|
@@ -21,57 +21,57 @@ describe Wagn::Cache do
|
|
21
21
|
describe "with same cache_id" do
|
22
22
|
before :each do
|
23
23
|
@store = ActiveSupport::Cache::MemoryStore.new
|
24
|
-
|
24
|
+
expect(Wagn::Cache).to receive(:generate_cache_id).and_return("cache_id")
|
25
25
|
@cache = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
26
26
|
end
|
27
27
|
|
28
28
|
it "#read" do
|
29
|
-
|
29
|
+
expect(@store).to receive(:read).with("prefix/cache_id/foo")
|
30
30
|
@cache.read("foo")
|
31
31
|
end
|
32
32
|
|
33
33
|
it "#write" do
|
34
|
-
|
34
|
+
expect(@store).to receive(:write).with("prefix/cache_id/foo", "val")
|
35
35
|
@cache.write("foo", "val")
|
36
|
-
@cache.read('foo').
|
36
|
+
expect(@cache.read('foo')).to eq("val")
|
37
37
|
end
|
38
38
|
|
39
39
|
it "#fetch" do
|
40
40
|
block = Proc.new { "hi" }
|
41
|
-
|
41
|
+
expect(@store).to receive(:fetch).with("prefix/cache_id/foo", &block)
|
42
42
|
@cache.fetch("foo", &block)
|
43
43
|
end
|
44
44
|
|
45
45
|
it "#delete" do
|
46
|
-
|
46
|
+
expect(@store).to receive(:delete).with("prefix/cache_id/foo")
|
47
47
|
@cache.delete "foo"
|
48
48
|
end
|
49
49
|
|
50
50
|
it "#write_local" do
|
51
51
|
@cache.write_local('a', 'foo')
|
52
|
-
@cache.read("a").
|
53
|
-
|
54
|
-
@cache.store.read("a").
|
52
|
+
expect(@cache.read("a")).to eq('foo')
|
53
|
+
expect(@store).not_to receive(:write)
|
54
|
+
expect(@cache.store.read("a")).to eq(nil)
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
58
|
it "#reset" do
|
59
|
-
|
59
|
+
expect(Wagn::Cache).to receive(:generate_cache_id).and_return("cache_id1")
|
60
60
|
@store = ActiveSupport::Cache::MemoryStore.new
|
61
61
|
@cache = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
62
|
-
@cache.prefix.
|
62
|
+
expect(@cache.prefix).to eq("prefix/cache_id1/")
|
63
63
|
@cache.write("foo","bar")
|
64
|
-
@cache.read("foo").
|
64
|
+
expect(@cache.read("foo")).to eq("bar")
|
65
65
|
|
66
66
|
# reset
|
67
|
-
|
67
|
+
expect(Wagn::Cache).to receive(:generate_cache_id).and_return("cache_id2")
|
68
68
|
@cache.reset
|
69
|
-
@cache.prefix.
|
70
|
-
@cache.store.read("prefix/cache_id").
|
71
|
-
@cache.read("foo").
|
69
|
+
expect(@cache.prefix).to eq("prefix/cache_id2/")
|
70
|
+
expect(@cache.store.read("prefix/cache_id")).to eq("cache_id2")
|
71
|
+
expect(@cache.read("foo")).to be_nil
|
72
72
|
|
73
73
|
cache2 = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
74
|
-
cache2.prefix.
|
74
|
+
expect(cache2.prefix).to eq("prefix/cache_id2/")
|
75
75
|
end
|
76
76
|
|
77
77
|
describe "with file store" do
|
@@ -88,7 +88,7 @@ describe Wagn::Cache do
|
|
88
88
|
#files_to_remove = root_dirs.collect{|f| File.join(cache_path, f)}
|
89
89
|
#FileUtils.rm_r(files_to_remove)
|
90
90
|
|
91
|
-
|
91
|
+
expect(Wagn::Cache).to receive(:generate_cache_id).exactly(2).times.and_return("cache_id1")
|
92
92
|
@cache = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
93
93
|
end
|
94
94
|
|
@@ -96,7 +96,7 @@ describe Wagn::Cache do
|
|
96
96
|
it "should work" do
|
97
97
|
@cache.write('%\\/*:?"<>|', "foo")
|
98
98
|
cache2 = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
99
|
-
cache2.read('%\\/*:?"<>|').
|
99
|
+
expect(cache2.read('%\\/*:?"<>|')).to eq("foo")
|
100
100
|
@cache.reset
|
101
101
|
end
|
102
102
|
end
|
@@ -106,8 +106,8 @@ describe Wagn::Cache do
|
|
106
106
|
@cache.write('(汉语漢語 Hànyǔ; 华语華語 Huáyǔ; 中文 Zhōngwén', "foo")
|
107
107
|
@cache.write('русский', "foo")
|
108
108
|
cache3 = Wagn::Cache.new :store=>@store, :prefix=>"prefix"
|
109
|
-
cache3.read('(汉语漢語 Hànyǔ; 华语華語 Huáyǔ; 中文 Zhōngwén').
|
110
|
-
cache3.read('русский').
|
109
|
+
expect(cache3.read('(汉语漢語 Hànyǔ; 华语華語 Huáyǔ; 中文 Zhōngwén')).to eq("foo")
|
110
|
+
expect(cache3.read('русский')).to eq("foo")
|
111
111
|
@cache.reset
|
112
112
|
end
|
113
113
|
end
|