fortitude 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec-local +4 -0
- data/.travis.yml +26 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README-erector.md +246 -0
- data/README.md +15 -0
- data/Rakefile +67 -0
- data/ext/FortitudeJrubyNativeExtService.java +11 -0
- data/ext/com/fortituderuby/ext/fortitude/FortitudeNativeLibrary.java +223 -0
- data/ext/fortitude_native_ext/extconf.rb +4 -0
- data/ext/fortitude_native_ext/fortitude_native_ext.c +333 -0
- data/fortitude.gemspec +37 -0
- data/lib/fortitude/assign_locals_from_template.rb.smpl +22 -0
- data/lib/fortitude/assigns_proxy.rb +75 -0
- data/lib/fortitude/class_inheritable_attributes.rb +96 -0
- data/lib/fortitude/doctypes/base.rb +38 -0
- data/lib/fortitude/doctypes/html4.rb +20 -0
- data/lib/fortitude/doctypes/html4_frameset.rb +18 -0
- data/lib/fortitude/doctypes/html4_strict.rb +17 -0
- data/lib/fortitude/doctypes/html4_tags_frameset.rb +52 -0
- data/lib/fortitude/doctypes/html4_tags_strict.rb +273 -0
- data/lib/fortitude/doctypes/html4_tags_transitional.rb +114 -0
- data/lib/fortitude/doctypes/html4_transitional.rb +18 -0
- data/lib/fortitude/doctypes/html5.rb +372 -0
- data/lib/fortitude/doctypes/unknown_doctype.rb +19 -0
- data/lib/fortitude/doctypes/xhtml10.rb +19 -0
- data/lib/fortitude/doctypes/xhtml10_frameset.rb +17 -0
- data/lib/fortitude/doctypes/xhtml10_strict.rb +17 -0
- data/lib/fortitude/doctypes/xhtml10_transitional.rb +17 -0
- data/lib/fortitude/doctypes/xhtml11.rb +29 -0
- data/lib/fortitude/doctypes.rb +46 -0
- data/lib/fortitude/errors.rb +153 -0
- data/lib/fortitude/fortitude_ruby_ext.rb +71 -0
- data/lib/fortitude/instance_variable_set.rb +74 -0
- data/lib/fortitude/need_assignment_template.rb.smpl +16 -0
- data/lib/fortitude/need_method_template.rb.smpl +4 -0
- data/lib/fortitude/non_rails_widget_methods.rb +15 -0
- data/lib/fortitude/partial_tag_placeholder.rb +17 -0
- data/lib/fortitude/rails/helpers.rb +153 -0
- data/lib/fortitude/rails/renderer.rb +43 -0
- data/lib/fortitude/rails/template_handler.rb +23 -0
- data/lib/fortitude/rails/widget_methods.rb +17 -0
- data/lib/fortitude/rails/yielded_object_outputter.rb +31 -0
- data/lib/fortitude/railtie.rb +254 -0
- data/lib/fortitude/rendering_context.rb +205 -0
- data/lib/fortitude/simple_template.rb +45 -0
- data/lib/fortitude/staticized_method.rb +85 -0
- data/lib/fortitude/tag.rb +162 -0
- data/lib/fortitude/tag_method_template.rb.smpl +68 -0
- data/lib/fortitude/tag_return_value.rb +11 -0
- data/lib/fortitude/tag_store.rb +48 -0
- data/lib/fortitude/tag_support.rb +48 -0
- data/lib/fortitude/tags_module.rb +14 -0
- data/lib/fortitude/text_method_template.rb.smpl +17 -0
- data/lib/fortitude/tilt/fortitude_template.rb +169 -0
- data/lib/fortitude/version.rb +3 -0
- data/lib/fortitude/widget.rb +904 -0
- data/lib/fortitude/widgets/html4_frameset.rb +9 -0
- data/lib/fortitude/widgets/html4_strict.rb +9 -0
- data/lib/fortitude/widgets/html4_transitional.rb +9 -0
- data/lib/fortitude/widgets/html5.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_frameset.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_strict.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_transitional.rb +9 -0
- data/lib/fortitude/widgets/xhtml11.rb +9 -0
- data/lib/fortitude.rb +93 -0
- data/lib/fortitude_jruby_native_ext.jar +0 -0
- data/spec/helpers/global_helper.rb +8 -0
- data/spec/helpers/rails_helpers.rb +85 -0
- data/spec/helpers/rails_server.rb +386 -0
- data/spec/helpers/system_helpers.rb +117 -0
- data/spec/rails/basic_rails_system_spec.rb +7 -0
- data/spec/rails/capture_system_spec.rb +75 -0
- data/spec/rails/class_loading_system_spec.rb +63 -0
- data/spec/rails/complex_helpers_system_spec.rb +33 -0
- data/spec/rails/data_passing_system_spec.rb +96 -0
- data/spec/rails/default_layout_system_spec.rb +15 -0
- data/spec/rails/development_mode_system_spec.rb +67 -0
- data/spec/rails/erb_integration_system_spec.rb +23 -0
- data/spec/rails/helpers_include_all_off_system_spec.rb +7 -0
- data/spec/rails/helpers_system_spec.rb +79 -0
- data/spec/rails/helpers_unrefined_system_spec.rb +7 -0
- data/spec/rails/layouts_system_spec.rb +60 -0
- data/spec/rails/localization_system_spec.rb +38 -0
- data/spec/rails/production_mode_system_spec.rb +13 -0
- data/spec/rails/rendering_context_system_spec.rb +64 -0
- data/spec/rails/rendering_system_spec.rb +158 -0
- data/spec/rails/rules_system_spec.rb +23 -0
- data/spec/rails/static_method_system_spec.rb +12 -0
- data/spec/rails/templates/base/app/controllers/application_controller.rb +15 -0
- data/spec/rails/templates/base/app/controllers/working_controller.rb +5 -0
- data/spec/rails/templates/base/app/views/layouts/application.html.erb +11 -0
- data/spec/rails/templates/base/config/routes.rb +4 -0
- data/spec/rails/templates/base/config/secrets.yml +22 -0
- data/spec/rails/templates/basic_rails_system_spec/app/controllers/basic_rails_system_spec_controller.rb +8 -0
- data/spec/rails/templates/basic_rails_system_spec/app/views/basic_rails_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/controllers/capture_system_spec_controller.rb +37 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/_some_erb_partial.html.erb +1 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/another_widget.rb +7 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_erb_from_widget.rb +11 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_erb.html.erb +9 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_widget.rb +17 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/some_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_content_for.rb +19 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_layout_needing_content_yield_with_erb.html.erb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_provide.rb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/erb_layout_needing_content.html.erb +15 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_content_for.rb +23 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_yield.rb +23 -0
- data/spec/rails/templates/class_loading_system_spec/app/controllers/class_loading_system_spec_controller.rb +74 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/app_models_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/models_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/autoload_namespace/autoload_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_loaded_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_view.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/app_models.rb +6 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/autoload_one_widget_from_another.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/class_should_not_load.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/lib_views.rb +8 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_lib_widget_from_view_widget.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_models_widget_from_view_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/some_namespace/some_other_namespace/.git_keep +0 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/sub_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/arbitrary_name/some_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/lib_views_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/widget_defined_outside_app_views.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/lib_widget.rb +5 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/controllers/complex_helpers_system_spec_controller.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/cache_test.rb +12 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/fields_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/config/environments/development.rb +31 -0
- data/spec/rails/templates/data_passing_system_spec/app/controllers/data_passing_system_spec_controller.rb +101 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_erb_to_parallel_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_erb_to_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_variable_write_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_widget_to_parallel_erb_handoff_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_copied_variables.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/explicit_controller_variable_read.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables.rb +23 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables_requested.rb +24 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_one.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_two.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_parent.rb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inner.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read_inner.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_data_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_and_controller_variables_widget.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/variables_to_layout.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_copied_variables.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/layouts/data_layout.rb +14 -0
- data/spec/rails/templates/default_layout_system_spec/app/controllers/default_layout_system_spec_controller.rb +9 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/erb_with_widget_default_layout.html.erb +1 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/widget_with_widget_default_layout.rb +5 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/layouts/application.rb +12 -0
- data/spec/rails/templates/development_mode_system_spec/app/controllers/development_mode_system_spec_controller.rb +9 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/reload_widget.rb +7 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +10 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_erb_partial_from_widget_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_fortitude_partial_with_underscore_partial.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_prefers_erb_partial_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb +7 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/controllers/helpers_include_all_off_system_spec_controller.rb +13 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/application_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/some_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/views/helpers_include_all_off_system_spec/include_all_off.rb +23 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/config/application.rb +28 -0
- data/spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb +86 -0
- data/spec/rails/templates/helpers_system_spec/app/helpers/some_helper.rb +21 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_disabled.rb +37 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_one.rb +34 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb +36 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/basic_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/block_helpers.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_to_returning.rb +8 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_method.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_module.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helper_outputs.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_basic.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_with_a_block.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_outputting_to_returning.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_erb.html.erb +1 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_fortitude.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/lib/some_stuff.rb +5 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/controllers/helpers_unrefined_system_spec_controller.rb +7 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/views/helpers_unrefined_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/config/environments/production.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/controllers/layouts_system_spec_controller.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/alternate.html.erb +11 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/application.html.erb +26 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/explicit_yield.rb +12 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/widget_layout.rb +22 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/erb_inside_widget_layout.html.erb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/the_render_widget.rb +5 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_erb_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_widget_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/yield_from_widget_explicitly.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/controllers/localization_system_spec_controller.rb +31 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/content_method.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/dot_notation.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/explicit_html.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/i18n_t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/native_support.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/readjust_base.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/config/locales/en.yml +21 -0
- data/spec/rails/templates/localization_system_spec/config/locales/fr.yml +14 -0
- data/spec/rails/templates/localization_system_spec/config/locales/pt.yml +2 -0
- data/spec/rails/templates/production_mode_system_spec/app/controllers/production_mode_system_spec_controller.rb +5 -0
- data/spec/rails/templates/production_mode_system_spec/app/views/production_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/rendering_context_system_spec/app/controllers/rendering_context_system_spec_controller.rb +72 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_start_end_widget_through_partials_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_direct_context_for_all_widgets_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_specified_context_through_nesting_partial.html.erb +2 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/render_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic.rb +12 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic_inner.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials.rb +16 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials_partial_widget.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials.html.erb +3 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting.rb +6 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting_inner_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/lib/simple_rc.rb +17 -0
- data/spec/rails/templates/rendering_system_spec/app/controllers/rendering_system_spec_controller.rb +111 -0
- data/spec/rails/templates/rendering_system_spec/app/views/layouts/application.html.erb +19 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_layout_for_partial.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_the_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/partial_with_layout.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection_as.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_file_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_html_safe_strings.rb +16 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_inline_from_widget.rb +11 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_object.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_widget_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_template_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_text_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/stream_widget.rb +13 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_layout_for_partial.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_with_name.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/word.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/widget_to_render.rb +7 -0
- data/spec/rails/templates/rules_system_spec/app/controllers/rules_system_spec_controller.rb +22 -0
- data/spec/rails/templates/rules_system_spec/app/views/layouts/fortitude_layout_with_p.rb +19 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/_intervening_partial_erb_partial.html.erb +1 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial_fortitude_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_view.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag.rb +11 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial_partial.rb +11 -0
- data/spec/rails/templates/static_method_system_spec/app/controllers/static_method_system_spec_controller.rb +15 -0
- data/spec/rails/templates/static_method_system_spec/app/helpers/some_helper.rb +10 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/allows_helper_access.rb +8 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/localization.rb +7 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/en.yml +4 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/fr.yml +4 -0
- data/spec/system/around_content_system_spec.rb +399 -0
- data/spec/system/assigns_system_spec.rb +316 -0
- data/spec/system/attribute_rules_system_spec.rb +227 -0
- data/spec/system/basic_system_spec.rb +9 -0
- data/spec/system/content_inheritance_system_spec.rb +13 -0
- data/spec/system/convenience_methods_system_spec.rb +30 -0
- data/spec/system/doctypes_system_spec.rb +213 -0
- data/spec/system/erector_compatibility_system_spec.rb +84 -0
- data/spec/system/escaping_system_spec.rb +43 -0
- data/spec/system/formatting_system_spec.rb +63 -0
- data/spec/system/helpers_system_spec.rb +235 -0
- data/spec/system/id_uniqueness_system_spec.rb +205 -0
- data/spec/system/localization_system_spec.rb +94 -0
- data/spec/system/method_precedence_system_spec.rb +48 -0
- data/spec/system/needs_system_spec.rb +368 -0
- data/spec/system/other_outputters_system_spec.rb +117 -0
- data/spec/system/rails_not_available_spec.rb +11 -0
- data/spec/system/rebuild_notifications_system_spec.rb +208 -0
- data/spec/system/rendering_context_system_spec.rb +83 -0
- data/spec/system/setting_inheritance_system_spec.rb +585 -0
- data/spec/system/shared_variable_system_spec.rb +120 -0
- data/spec/system/start_end_comments_system_spec.rb +363 -0
- data/spec/system/static_method_system_spec.rb +348 -0
- data/spec/system/tag_rendering_system_spec.rb +253 -0
- data/spec/system/tag_return_value_system_spec.rb +41 -0
- data/spec/system/tag_rules_system_spec.rb +196 -0
- data/spec/system/tag_updating_system_spec.rb +171 -0
- data/spec/system/tilt_system_spec.rb +378 -0
- data/spec/system/unparsed_data_system_spec.rb +16 -0
- data/spec/system/void_tags_system_spec.rb +51 -0
- data/spec/system/widget_return_values_system_spec.rb +89 -0
- metadata +736 -0
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
describe "Fortitude needs", :type => :system do
|
|
2
|
+
def required
|
|
3
|
+
Fortitude::Widget::REQUIRED_NEED
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
it "should return the current needs from .needs, with or without arguments" do
|
|
7
|
+
parent = widget_class
|
|
8
|
+
child = widget_class(:superclass => parent)
|
|
9
|
+
|
|
10
|
+
expect(parent.needs).to eq({ })
|
|
11
|
+
expect(parent.needs(:foo)).to eq(:foo => required)
|
|
12
|
+
expect(parent.needs(:bar => 'def_bar')).to eq(:foo => required, :bar => 'def_bar')
|
|
13
|
+
|
|
14
|
+
expect(child.needs).to eq(:foo => required, :bar => 'def_bar')
|
|
15
|
+
expect(child.needs(:bar)).to eq(:foo => required, :bar => required)
|
|
16
|
+
expect(child.needs(:baz => 'def_baz')).to eq(:foo => required, :bar => required, :baz => 'def_baz')
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
it "should allow you to override a 'needs' method, and use #super" do
|
|
20
|
+
klass = widget_class do
|
|
21
|
+
needs :foo
|
|
22
|
+
|
|
23
|
+
def foo
|
|
24
|
+
"xx" + super + "yy"
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def content
|
|
28
|
+
p "foo is: #{foo}"
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
expect(render(klass.new(:foo => 'aaa'))).to eq("<p>foo is: xxaaayy</p>")
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
describe "shadowing" do
|
|
36
|
+
it "should shadow tags with needs, not the other way around" do
|
|
37
|
+
klass = widget_class do
|
|
38
|
+
needs :p, :div => 'whatever'
|
|
39
|
+
|
|
40
|
+
def content
|
|
41
|
+
text "p is: #{p}, div is: #{div}"
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
expect(render(klass.new(:p => 'aaa'))).to eq("p is: aaa, div is: whatever")
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
it "should still allow access to tags using tag_*" do
|
|
49
|
+
klass = widget_class do
|
|
50
|
+
needs :p, :div => 'whatever'
|
|
51
|
+
|
|
52
|
+
def content
|
|
53
|
+
tag_p "this is a p"
|
|
54
|
+
tag_div "this is a div"
|
|
55
|
+
text "p is: #{p}, div is: #{div}"
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
expect(render(klass.new(:p => 'bbb'))).to eq("<p>this is a p</p><div>this is a div</div>p is: bbb, div is: whatever")
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
it "should still allow access to text, comment, rawtext, and javascript using tag_*" do
|
|
63
|
+
klass = widget_class do
|
|
64
|
+
needs :text => 'foo', :comment => 'bar', :rawtext => 'baz', :javascript => 'quux'
|
|
65
|
+
|
|
66
|
+
def content
|
|
67
|
+
tag_text "text is: #{text}"
|
|
68
|
+
tag_comment "comment is: #{comment}"
|
|
69
|
+
tag_rawtext "rawtext is: #{rawtext}"
|
|
70
|
+
tag_javascript "javascript is: #{javascript}"
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
expect(render(klass)).to eq(%{text is: foo<!-- comment is: bar -->rawtext is: baz<script>javascript is: quux</script>})
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
it "should raise an error if you pass a block to a 'needs' method and debugging is on" do
|
|
78
|
+
klass = widget_class do
|
|
79
|
+
debug true
|
|
80
|
+
needs :p
|
|
81
|
+
|
|
82
|
+
def content
|
|
83
|
+
p { text "this is not run" }
|
|
84
|
+
text "p is: #{p}"
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
expect { render(klass.new(:p => 'aaa')) }.to raise_error(Fortitude::Errors::BlockPassedToNeedMethod)
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
it "should not raise an error if you pass a block to a 'needs' method and debugging is off" do
|
|
92
|
+
klass = widget_class do
|
|
93
|
+
needs :p
|
|
94
|
+
|
|
95
|
+
def content
|
|
96
|
+
p { text "this is not run" }
|
|
97
|
+
text "p is: #{p}"
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
expect(render(klass.new(:p => 'aaa'))).to eq("p is: aaa")
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
describe "names" do
|
|
106
|
+
BAD_METHOD_NAMES = [ " ", "0123", "0foo", "?baz", "!yo", "!", "?", "abc??" ]
|
|
107
|
+
|
|
108
|
+
BAD_METHOD_NAMES.each do |bad_method_name|
|
|
109
|
+
it "should fail if you try to use a name for a need that's not a valid method name, like #{bad_method_name.inspect}" do
|
|
110
|
+
expect { widget_class { needs bad_method_name } }.to raise_error(ArgumentError)
|
|
111
|
+
expect { widget_class { needs bad_method_name.to_sym } }.to raise_error(ArgumentError)
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
it "should ignore any extra assigns that aren't valid method names, like #{bad_method_name.inspect}" do
|
|
115
|
+
wc = widget_class do
|
|
116
|
+
extra_assigns :use
|
|
117
|
+
|
|
118
|
+
def content
|
|
119
|
+
rawtext assigns.to_hash.inspect
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
expect(render(wc.new(bad_method_name => "foobar", :foo => 'bar'))).to eq("{:foo=>\"bar\"}")
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
VALID_METHOD_NAMES = [ "o01239014", "______", "_", "foo?", "bar!", "_0123" ]
|
|
128
|
+
|
|
129
|
+
VALID_METHOD_NAMES.each do |valid_method_name|
|
|
130
|
+
it "should allow you to use corner-case names for a need, like #{valid_method_name.inspect}" do
|
|
131
|
+
wc = widget_class do
|
|
132
|
+
needs valid_method_name.to_sym
|
|
133
|
+
|
|
134
|
+
attr_accessor :method_name
|
|
135
|
+
|
|
136
|
+
def content
|
|
137
|
+
eval("p \"value: \#{#{method_name}}\"")
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
i = wc.new(valid_method_name => "foo")
|
|
142
|
+
i.method_name = valid_method_name
|
|
143
|
+
|
|
144
|
+
expect(render(i)).to eq("<p>value: foo</p>")
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
it "should allow you to pass corner-case names for an extra assign, like #{valid_method_name.inspect}" do
|
|
148
|
+
wc = widget_class do
|
|
149
|
+
extra_assigns :use
|
|
150
|
+
|
|
151
|
+
attr_accessor :method_name
|
|
152
|
+
|
|
153
|
+
def content
|
|
154
|
+
eval("p \"value: \#{#{method_name}}\"")
|
|
155
|
+
end
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
i = wc.new(valid_method_name => "foo")
|
|
159
|
+
i.method_name = valid_method_name
|
|
160
|
+
|
|
161
|
+
expect(render(i)).to eq("<p>value: foo</p>")
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
describe "inheritance" do
|
|
167
|
+
it "should require needs from all superclasses" do
|
|
168
|
+
grandparent = widget_class { needs :foo }
|
|
169
|
+
parent = widget_class(:superclass => grandparent) { needs :bar }
|
|
170
|
+
child = widget_class(:superclass => parent) do
|
|
171
|
+
needs :baz
|
|
172
|
+
def content
|
|
173
|
+
text "foo: #{foo}, bar: #{bar}, baz: #{baz}"
|
|
174
|
+
end
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
expect { child.new }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
178
|
+
expect { child.new(:foo => 'f') }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
179
|
+
expect { child.new(:foo => 'f', :bar => 'b') }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
180
|
+
expect(render(child.new(:foo => 'f', :bar => 'b', :baz => 'z'))).to eq("foo: f, bar: b, baz: z")
|
|
181
|
+
|
|
182
|
+
expect(grandparent.needs).to eq({ :foo => required })
|
|
183
|
+
expect(parent.needs).to eq({ :foo => required, :bar => required })
|
|
184
|
+
expect(child.needs).to eq({ :foo => required, :bar => required, :baz => required })
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
it "should let you add needs later, and it should apply to both that class and any subclasses" do
|
|
188
|
+
parent = widget_class_with_content { text "parent" }
|
|
189
|
+
child = widget_class(:superclass => parent) do
|
|
190
|
+
needs :bar
|
|
191
|
+
def content
|
|
192
|
+
super
|
|
193
|
+
text "; child: bar: #{bar}"
|
|
194
|
+
end
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
expect(render(parent)).to eq("parent")
|
|
198
|
+
expect(render(child.new(:bar => "the_bar"))).to eq("parent; child: bar: the_bar")
|
|
199
|
+
expect(parent.needs).to eq({ })
|
|
200
|
+
expect(child.needs).to eq({ :bar => required })
|
|
201
|
+
|
|
202
|
+
parent.class_eval { needs :foo }
|
|
203
|
+
child.class_eval do
|
|
204
|
+
def content
|
|
205
|
+
super
|
|
206
|
+
text "; child: bar: #{bar}; foo: #{foo}"
|
|
207
|
+
end
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
expect { parent.new }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
211
|
+
expect { child.new(:bar => 'the_bar') }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
212
|
+
|
|
213
|
+
expect(render(parent.new(:foo => "the_foo"))).to eq("parent")
|
|
214
|
+
expect(render(child.new(:foo => "the_foo", :bar => "the_bar"))).to eq("parent; child: bar: the_bar; foo: the_foo")
|
|
215
|
+
|
|
216
|
+
expect(parent.needs).to eq(:foo => required)
|
|
217
|
+
expect(child.needs).to eq(:foo => required, :bar => required)
|
|
218
|
+
end
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
describe "defaults" do
|
|
222
|
+
it "should allow supplying defaults, and allow overriding them" do
|
|
223
|
+
c = widget_class do
|
|
224
|
+
needs :foo, :bar => 'def_bar', :baz => 'def_baz'
|
|
225
|
+
def content
|
|
226
|
+
text "foo: #{foo}, bar: #{bar}, baz: #{baz}"
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
expect { c.new }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
231
|
+
expect(render(c.new(:foo => 'the_foo'))).to eq("foo: the_foo, bar: def_bar, baz: def_baz")
|
|
232
|
+
expect(render(c.new(:foo => 'the_foo', :baz => 'the_baz'))).to eq("foo: the_foo, bar: def_bar, baz: the_baz")
|
|
233
|
+
|
|
234
|
+
expect(c.needs).to eq(:foo => required, :bar => 'def_bar', :baz => 'def_baz')
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
it "should inherit defaults properly" do
|
|
238
|
+
parent = widget_class do
|
|
239
|
+
needs :foo, :bar => 'def_bar', :baz => 'def_baz'
|
|
240
|
+
def content
|
|
241
|
+
text "foo: #{foo}, bar: #{bar}, baz: #{baz}"
|
|
242
|
+
end
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
child = widget_class(:superclass => parent) do
|
|
246
|
+
needs :baz => 'child_def_baz', :quux => 'child_quux'
|
|
247
|
+
def content
|
|
248
|
+
super
|
|
249
|
+
text "; baz: #{baz}, quux: #{quux}"
|
|
250
|
+
end
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
expect(render(parent.new(:foo => 'the_foo'))).to eq('foo: the_foo, bar: def_bar, baz: def_baz')
|
|
254
|
+
expect { child.new }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
255
|
+
expect(render(child.new(:foo => 'the_foo'))).to eq('foo: the_foo, bar: def_bar, baz: child_def_baz; baz: child_def_baz, quux: child_quux')
|
|
256
|
+
|
|
257
|
+
expect(parent.needs).to eq(:foo => required, :bar => 'def_bar', :baz => 'def_baz')
|
|
258
|
+
expect(child.needs).to eq(:foo => required, :bar => 'def_bar', :baz => 'child_def_baz', :quux => 'child_quux')
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
it "should allow overriding a default with a requirement" do
|
|
262
|
+
parent = widget_class do
|
|
263
|
+
needs :foo, :bar => 'def_bar'
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
child = widget_class(:superclass => parent) do
|
|
267
|
+
needs :bar
|
|
268
|
+
def content
|
|
269
|
+
text "foo: #{foo}, bar: #{bar}"
|
|
270
|
+
end
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
expect { child.new(:foo => 'the_foo') }.to raise_error(Fortitude::Errors::MissingNeed)
|
|
274
|
+
expect(render(child.new(:foo => 'the_foo', :bar => 'the_bar'))).to eq('foo: the_foo, bar: the_bar')
|
|
275
|
+
|
|
276
|
+
expect(parent.needs).to eq(:foo => required, :bar => 'def_bar')
|
|
277
|
+
expect(child.needs).to eq(:foo => required, :bar => required)
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
it "should allow overriding a requirement with a default" do
|
|
281
|
+
parent = widget_class do
|
|
282
|
+
needs :foo, :bar
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
child = widget_class(:superclass => parent) do
|
|
286
|
+
needs :foo => 'def_foo', :bar => 'def_bar'
|
|
287
|
+
def content
|
|
288
|
+
text "foo: #{foo}, bar: #{bar}"
|
|
289
|
+
end
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
expect(render(child.new)).to eq('foo: def_foo, bar: def_bar')
|
|
293
|
+
expect(render(child.new(:bar => 'the_bar'))).to eq('foo: def_foo, bar: the_bar')
|
|
294
|
+
|
|
295
|
+
expect(parent.needs).to eq(:foo => required, :bar => required)
|
|
296
|
+
expect(child.needs).to eq(:foo => 'def_foo', :bar => 'def_bar')
|
|
297
|
+
end
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
describe "extra assigns" do
|
|
301
|
+
it "should, by default, ignore assigns it doesn't need" do
|
|
302
|
+
c = widget_class do
|
|
303
|
+
needs :foo
|
|
304
|
+
def content
|
|
305
|
+
bar_value = begin
|
|
306
|
+
bar
|
|
307
|
+
rescue => e
|
|
308
|
+
e.class.name
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
text "foo: #{foo}, bar: #{bar_value}"
|
|
312
|
+
end
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
expect(render(c.new(:foo => 'the_foo', :bar => 'the_bar'))).to eq('foo: the_foo, bar: NameError')
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
it "should ignore assigns it doesn't need, if told to" do
|
|
319
|
+
c = widget_class do
|
|
320
|
+
extra_assigns :ignore
|
|
321
|
+
needs :foo
|
|
322
|
+
def content
|
|
323
|
+
bar_value = begin
|
|
324
|
+
bar
|
|
325
|
+
rescue => e
|
|
326
|
+
e.class.name
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
text "foo: #{foo}, bar: #{bar_value}"
|
|
330
|
+
end
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
expect(render(c.new(:foo => 'the_foo', :bar => 'the_bar'))).to eq('foo: the_foo, bar: NameError')
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
it "should fail if passed assigns it doesn't need, if asked to" do
|
|
337
|
+
c = widget_class do
|
|
338
|
+
extra_assigns :error
|
|
339
|
+
needs :foo
|
|
340
|
+
def content
|
|
341
|
+
text "foo: #{foo}"
|
|
342
|
+
end
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
expect { c.new(:foo => 'the_foo', :bar => 'the_bar') }.to raise_error(Fortitude::Errors::ExtraAssigns, /bar/i)
|
|
346
|
+
expect(render(c.new(:foo => 'the_foo'))).to eq("foo: the_foo")
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
it "should use extra assigns it doesn't need, if asked to" do
|
|
350
|
+
c = widget_class do
|
|
351
|
+
extra_assigns :use
|
|
352
|
+
needs :foo
|
|
353
|
+
def content
|
|
354
|
+
bar_value = begin
|
|
355
|
+
bar
|
|
356
|
+
rescue => e
|
|
357
|
+
e.class.name
|
|
358
|
+
end
|
|
359
|
+
|
|
360
|
+
text "foo: #{foo}; bar: #{bar_value}"
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
expect(render(c.new(:foo => 'the_foo'))).to eq('foo: the_foo; bar: NameError')
|
|
365
|
+
expect(render(c.new(:foo => 'the_foo', :bar => 'the_bar'))).to eq('foo: the_foo; bar: the_bar')
|
|
366
|
+
end
|
|
367
|
+
end
|
|
368
|
+
end
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
describe "Fortitude other outputting methods", :type => :system do
|
|
2
|
+
def r(&block)
|
|
3
|
+
render(widget_class_with_content(&block))
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def should_render_to(value, &block)
|
|
7
|
+
expect(r(&block)).to eq(value)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
describe "comments" do
|
|
11
|
+
it "should render a simple comment" do
|
|
12
|
+
should_render_to("<!-- foo -->") { comment "foo" }
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
it "should escape anything potentially comment-ending in a comment" do
|
|
16
|
+
[ "fo --> oo", "fo -- oo", "fo --", "--", "-----", "---", " -- ", "-- ", " --", "- -",
|
|
17
|
+
">", " > ", ">>", "-->" ].each do |string|
|
|
18
|
+
text = render(widget_class_with_content { comment string })
|
|
19
|
+
if text =~ /^<!--(.*)-->$/
|
|
20
|
+
contents = $1
|
|
21
|
+
else
|
|
22
|
+
raise "Not a comment?!? #{text.inspect}"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# From http://www.w3.org/TR/html5/syntax.html#comments:
|
|
26
|
+
#
|
|
27
|
+
# Comments must start with the four character sequence U+003C LESS-THAN SIGN, U+0021 EXCLAMATION MARK,
|
|
28
|
+
# U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS (<!--). Following this sequence, the comment may have text,
|
|
29
|
+
# with the additional restriction that the text must not start with a single ">" (U+003E) character,
|
|
30
|
+
# nor start with a U+002D HYPHEN-MINUS character (-) followed by a ">" (U+003E) character, nor contain
|
|
31
|
+
# two consecutive U+002D HYPHEN-MINUS characters (--), nor end with a U+002D HYPHEN-MINUS character (-).
|
|
32
|
+
# Finally, the comment must be ended by the three character sequence U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS,
|
|
33
|
+
# U+003E GREATER-THAN SIGN (-->).
|
|
34
|
+
expect(contents).not_to match(/\-\-/)
|
|
35
|
+
expect(contents).not_to match(/^\s*>/)
|
|
36
|
+
expect(contents).not_to match(/^\s*\->/)
|
|
37
|
+
expect(contents).not_to match(/>$/)
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
it "should not escape standard HTML escape characters inside a comment" do
|
|
42
|
+
expect(render(widget_class_with_content { comment 'mind your "p"s & "q"s' })).to eq('<!-- mind your "p"s & "q"s -->')
|
|
43
|
+
expect(render(widget_class_with_content { comment 'is 3 < 4, or is 4 > 3?' })).to eq('<!-- is 3 < 4, or is 4 > 3? -->')
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
it "should not allow passing a block" do
|
|
47
|
+
expect { render { comment { text "hi" } } }.to raise_error(ArgumentError)
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
it "should put comments on their own lines if we're formatting output, and indent them properly" do
|
|
51
|
+
wc = widget_class do
|
|
52
|
+
format_output true
|
|
53
|
+
|
|
54
|
+
def content
|
|
55
|
+
div do
|
|
56
|
+
text "this is really cool"
|
|
57
|
+
comment "isn't it?"
|
|
58
|
+
text "man?"
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
expect(render(wc)).to eq(%{<div>
|
|
64
|
+
this is really cool
|
|
65
|
+
<!-- isn't it? -->
|
|
66
|
+
man?
|
|
67
|
+
</div>})
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe "cdata" do
|
|
72
|
+
it "should output data inside CDATA" do
|
|
73
|
+
wc = widget_class_with_content { cdata "hi there" }
|
|
74
|
+
expect(render(wc)).to eq(%{<![CDATA[hi there]]>})
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
it "should properly split up a CDATA section if necessary" do
|
|
78
|
+
wc = widget_class_with_content { cdata "this contains a ]]> cdata end in it" }
|
|
79
|
+
expect(render(wc)).to eq(%{<![CDATA[this contains a ]]]]><![CDATA[> cdata end in it]]>})
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
it "should properly split up a CDATA section into several pieces if necessary" do
|
|
83
|
+
wc = widget_class_with_content { cdata "this contains a ]]> cdata end in it and ]]> again" }
|
|
84
|
+
expect(render(wc)).to eq(%{<![CDATA[this contains a ]]]]><![CDATA[> cdata end in it and ]]]]><![CDATA[> again]]>})
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
it "should not indent CDATA contents or ending, even if we're formatting output" do
|
|
88
|
+
wc = widget_class do
|
|
89
|
+
format_output true
|
|
90
|
+
|
|
91
|
+
def content
|
|
92
|
+
div do
|
|
93
|
+
div do
|
|
94
|
+
cdata %{hi
|
|
95
|
+
there
|
|
96
|
+
man}
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
expect(render(wc)).to eq(%{<div>
|
|
103
|
+
<div>
|
|
104
|
+
<![CDATA[hi
|
|
105
|
+
there
|
|
106
|
+
man]]>
|
|
107
|
+
</div>
|
|
108
|
+
</div>})
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe "doctype instance method" do
|
|
113
|
+
it "should output a doctype with any string if asked" do
|
|
114
|
+
should_render_to("<!DOCTYPE foobar>") { doctype 'foobar' }
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
describe "Fortitude spec environment" do
|
|
2
|
+
# This may seem like a weird spec, but we REALLY don't want to be running Fortitude's built-in specs with Rails
|
|
3
|
+
# available -- because we want to make really sure Fortitude doesn't end up with any kind of Rails dependency
|
|
4
|
+
# in it. So we added this spec to make sure the specs fail if Rails somehow *is* available.
|
|
5
|
+
#
|
|
6
|
+
# Fortitude has lots and lots of Rails-specific tests, but those run in a separate process with a separate Gemfile,
|
|
7
|
+
# and thus don't need Rails available at the overall Fortitude level.
|
|
8
|
+
it "should not have Rails available" do
|
|
9
|
+
expect { ::Rails }.to raise_error(NameError, /Rails/i)
|
|
10
|
+
end
|
|
11
|
+
end
|