locomotivecms_steam 0.1.2.pre.beta → 1.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +8 -1
- data/Gemfile +17 -8
- data/Gemfile.lock +160 -113
- data/LICENSE +1 -1
- data/README.md +36 -15
- data/Rakefile +27 -1
- data/bin/steam.rb +97 -0
- data/config/locales/en.yml +2 -1
- data/config/locales/fr.yml +2 -1
- data/lib/locomotive/steam.rb +28 -19
- data/lib/locomotive/steam/adapters/concerns/key.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem.rb +124 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizer.rb +54 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_entry.rb +86 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/content_type.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/page.rb +160 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/simple.rb +15 -0
- data/lib/locomotive/steam/adapters/filesystem/sanitizers/snippet.rb +33 -0
- data/lib/locomotive/steam/adapters/filesystem/simple_cache_store.rb +38 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loader.rb +47 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_entry.rb +87 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/content_type.rb +96 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb +145 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/site.rb +25 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/snippet.rb +66 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/theme_asset.rb +21 -0
- data/lib/locomotive/steam/adapters/filesystem/yaml_loaders/translation.rb +72 -0
- data/lib/locomotive/steam/adapters/memory.rb +55 -0
- data/lib/locomotive/steam/adapters/memory/condition.rb +103 -0
- data/lib/locomotive/steam/adapters/memory/dataset.rb +77 -0
- data/lib/locomotive/steam/adapters/memory/order.rb +60 -0
- data/lib/locomotive/steam/adapters/memory/query.rb +116 -0
- data/lib/locomotive/steam/adapters/mongodb.rb +83 -0
- data/lib/locomotive/steam/adapters/mongodb/dataset.rb +20 -0
- data/lib/locomotive/steam/adapters/mongodb/origin.rb +3 -0
- data/lib/locomotive/steam/adapters/mongodb/query.rb +82 -0
- data/lib/locomotive/steam/configuration.rb +106 -2
- data/lib/locomotive/steam/core_ext.rb +2 -1
- data/lib/locomotive/steam/core_ext/hash.rb +31 -19
- data/lib/locomotive/steam/core_ext/kernel.rb +14 -0
- data/lib/locomotive/steam/core_ext/string.rb +35 -6
- data/lib/locomotive/steam/decorators/i18n_decorator.rb +99 -0
- data/lib/locomotive/steam/decorators/template_decorator.rb +37 -0
- data/lib/locomotive/steam/entities/content_entry.rb +151 -0
- data/lib/locomotive/steam/entities/content_type.rb +44 -6
- data/lib/locomotive/steam/entities/content_type_field.rb +71 -0
- data/lib/locomotive/steam/entities/editable_element.rb +21 -0
- data/lib/locomotive/steam/entities/page.rb +48 -127
- data/lib/locomotive/steam/entities/site.rb +36 -27
- data/lib/locomotive/steam/entities/snippet.rb +20 -0
- data/lib/locomotive/steam/entities/theme_asset.rb +9 -0
- data/lib/locomotive/steam/entities/translation.rb +15 -0
- data/lib/locomotive/steam/initializers.rb +0 -4
- data/lib/locomotive/steam/initializers/dragonfly.rb +51 -11
- data/lib/locomotive/steam/initializers/i18n.rb +6 -3
- data/lib/locomotive/steam/initializers/sprockets.rb +4 -1
- data/lib/locomotive/steam/liquid.rb +4 -7
- data/lib/locomotive/steam/liquid/drops/base.rb +0 -1
- data/lib/locomotive/steam/liquid/drops/content_entry.rb +37 -16
- data/lib/locomotive/steam/liquid/drops/content_entry_collection.rb +77 -0
- data/lib/locomotive/steam/liquid/drops/content_types.rb +5 -102
- data/lib/locomotive/steam/liquid/drops/current_user.rb +23 -0
- data/lib/locomotive/steam/liquid/drops/i18n_base.rb +39 -0
- data/lib/locomotive/steam/liquid/drops/page.rb +77 -11
- data/lib/locomotive/steam/liquid/drops/session_proxy.rb +1 -1
- data/lib/locomotive/steam/liquid/drops/site.rb +14 -8
- data/lib/locomotive/steam/liquid/drops/upload_file.rb +23 -0
- data/lib/locomotive/steam/liquid/errors.rb +3 -9
- data/lib/locomotive/steam/liquid/filters/base.rb +62 -0
- data/lib/locomotive/steam/liquid/filters/date.rb +85 -61
- data/lib/locomotive/steam/liquid/filters/html.rb +30 -115
- data/lib/locomotive/steam/liquid/filters/misc.rb +6 -5
- data/lib/locomotive/steam/liquid/filters/pagination.rb +55 -0
- data/lib/locomotive/steam/liquid/filters/resize.rb +2 -3
- data/lib/locomotive/steam/liquid/filters/text.rb +15 -15
- data/lib/locomotive/steam/liquid/filters/translate.rb +5 -14
- data/lib/locomotive/steam/liquid/patches.rb +29 -23
- data/lib/locomotive/steam/liquid/tags/concerns/i18n_page.rb +36 -0
- data/lib/locomotive/steam/liquid/tags/concerns/path.rb +114 -0
- data/lib/locomotive/steam/liquid/tags/consume.rb +39 -43
- data/lib/locomotive/steam/liquid/tags/csrf.rb +21 -12
- data/lib/locomotive/steam/liquid/tags/editable.rb +1 -3
- data/lib/locomotive/steam/liquid/tags/editable/base.rb +54 -15
- data/lib/locomotive/steam/liquid/tags/editable/control.rb +17 -4
- data/lib/locomotive/steam/liquid/tags/editable/file.rb +34 -2
- data/lib/locomotive/steam/liquid/tags/editable/text.rb +54 -2
- data/lib/locomotive/steam/liquid/tags/extends.rb +45 -8
- data/lib/locomotive/steam/liquid/tags/fetch_page.rb +38 -0
- data/lib/locomotive/steam/liquid/tags/google_analytics.rb +25 -12
- data/lib/locomotive/steam/liquid/tags/hybrid.rb +24 -12
- data/lib/locomotive/steam/liquid/tags/inherited_block.rb +39 -0
- data/lib/locomotive/steam/liquid/tags/inline_editor.rb +14 -4
- data/lib/locomotive/steam/liquid/tags/link_to.rb +16 -27
- data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +45 -56
- data/lib/locomotive/steam/liquid/tags/model_form.rb +72 -0
- data/lib/locomotive/steam/liquid/tags/nav.rb +65 -57
- data/lib/locomotive/steam/liquid/tags/paginate.rb +79 -47
- data/lib/locomotive/steam/liquid/tags/path_to.rb +8 -20
- data/lib/locomotive/steam/liquid/tags/seo.rb +8 -8
- data/lib/locomotive/steam/liquid/tags/session_assign.rb +6 -8
- data/lib/locomotive/steam/liquid/tags/snippet.rb +26 -42
- data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -26
- data/lib/locomotive/steam/middlewares.rb +7 -13
- data/lib/locomotive/steam/middlewares/default_env.rb +25 -0
- data/lib/locomotive/steam/middlewares/dynamic_assets.rb +34 -17
- data/lib/locomotive/steam/middlewares/entry_submission.rb +117 -79
- data/lib/locomotive/steam/middlewares/favicon.rb +5 -2
- data/lib/locomotive/steam/middlewares/helpers.rb +44 -0
- data/lib/locomotive/steam/middlewares/locale.rb +25 -17
- data/lib/locomotive/steam/middlewares/locale_redirection.rb +62 -0
- data/lib/locomotive/steam/middlewares/logging.rb +7 -3
- data/lib/locomotive/steam/middlewares/page.rb +17 -48
- data/lib/locomotive/steam/middlewares/path.rb +5 -8
- data/lib/locomotive/steam/middlewares/renderer.rb +65 -106
- data/lib/locomotive/steam/middlewares/robots.rb +20 -0
- data/lib/locomotive/steam/middlewares/site.rb +42 -0
- data/lib/locomotive/steam/middlewares/sitemap.rb +94 -0
- data/lib/locomotive/steam/middlewares/stack_proxy.rb +46 -0
- data/lib/locomotive/steam/middlewares/templatized_page.rb +40 -14
- data/lib/locomotive/steam/middlewares/threadsafe.rb +65 -0
- data/lib/locomotive/steam/middlewares/timezone.rb +10 -6
- data/lib/locomotive/steam/models.rb +12 -0
- data/lib/locomotive/steam/models/associations/belongs_to.rb +18 -0
- data/lib/locomotive/steam/models/associations/embedded.rb +43 -0
- data/lib/locomotive/steam/models/associations/has_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/many_to_many.rb +22 -0
- data/lib/locomotive/steam/models/associations/referenced.rb +48 -0
- data/lib/locomotive/steam/models/concerns/validation.rb +58 -0
- data/lib/locomotive/steam/models/entity.rb +40 -0
- data/lib/locomotive/steam/models/i18n_field.rb +42 -0
- data/lib/locomotive/steam/models/mapper.rb +119 -0
- data/lib/locomotive/steam/models/pager.rb +53 -0
- data/lib/locomotive/steam/models/repository.rb +101 -0
- data/lib/locomotive/steam/models/scope.rb +31 -0
- data/lib/locomotive/steam/repositories.rb +51 -0
- data/lib/locomotive/steam/repositories/content_entry_repository.rb +183 -0
- data/lib/locomotive/steam/repositories/content_type_field_repository.rb +50 -0
- data/lib/locomotive/steam/repositories/content_type_field_select_option_repository.rb +23 -0
- data/lib/locomotive/steam/repositories/content_type_repository.rb +38 -0
- data/lib/locomotive/steam/repositories/editable_element_repository.rb +20 -0
- data/lib/locomotive/steam/repositories/page_repository.rb +86 -0
- data/lib/locomotive/steam/repositories/site_repository.rb +29 -0
- data/lib/locomotive/steam/repositories/snippet_repository.rb +19 -0
- data/lib/locomotive/steam/repositories/theme_asset_repository.rb +24 -0
- data/lib/locomotive/steam/repositories/translation_repository.rb +17 -0
- data/lib/locomotive/steam/server.rb +61 -40
- data/lib/locomotive/steam/services.rb +120 -1
- data/lib/locomotive/steam/services/asset_host_service.rb +51 -0
- data/lib/locomotive/steam/services/concerns/decorator.rb +35 -0
- data/lib/locomotive/steam/services/csrf_protection_service.rb +13 -0
- data/lib/locomotive/steam/services/editable_element_service.rb +19 -0
- data/lib/locomotive/steam/services/entry_submission_service.rb +91 -0
- data/lib/locomotive/steam/services/external_api_service.rb +55 -0
- data/lib/locomotive/steam/services/image_resizer_service.rb +49 -0
- data/lib/locomotive/steam/services/liquid_parser_service.rb +23 -0
- data/lib/locomotive/steam/services/markdown_service.rb +17 -0
- data/lib/locomotive/steam/services/no_cache_service.rb +17 -0
- data/lib/locomotive/steam/services/page_finder_service.rb +44 -0
- data/lib/locomotive/steam/services/parent_finder_service.rb +23 -0
- data/lib/locomotive/steam/services/site_finder_service.rb +13 -0
- data/lib/locomotive/steam/services/snippet_finder_service.rb +17 -0
- data/lib/locomotive/steam/services/textile_service.rb +17 -0
- data/lib/locomotive/steam/services/theme_asset_url_service.rb +43 -0
- data/lib/locomotive/steam/services/translator_service.rb +34 -0
- data/lib/locomotive/steam/services/url_builder_service.rb +40 -0
- data/lib/locomotive/steam/version.rb +1 -1
- data/locomotivecms_steam.gemspec +34 -28
- data/script/ci/before_build.sh +4 -0
- data/spec/fixtures/default/app/content_types/bands.yml +3 -1
- data/spec/fixtures/default/app/content_types/events.yml +2 -2
- data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/archives.liquid.haml +6 -0
- data/spec/fixtures/default/app/views/pages/basic.liquid.haml +1 -0
- data/spec/fixtures/default/app/views/pages/contest.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/events.fr.liquid +4 -0
- data/spec/fixtures/default/app/views/pages/events.liquid.haml +23 -1
- data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +16 -5
- data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/pages/index.liquid.haml +12 -11
- data/spec/fixtures/default/app/views/pages/music.liquid.haml +1 -1
- data/spec/fixtures/default/app/views/pages/songs.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/songs/song-number-1.liquid.haml +5 -0
- data/spec/fixtures/default/app/views/pages/store.liquid +2 -1
- data/spec/fixtures/default/app/views/pages/tags.liquid +6 -0
- data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +2 -1
- data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +1 -1
- data/spec/fixtures/default/config/deploy.yml +2 -2
- data/spec/fixtures/default/config/site.yml +7 -1
- data/spec/fixtures/default/data/bands.yml +3 -0
- data/spec/fixtures/mongodb/locomotive_accounts.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_accounts.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_entries.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_content_types.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_content_types.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_pages.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_pages.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_sites.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_sites.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_snippets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_snippets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_theme_assets.metadata.json +1 -0
- data/spec/fixtures/mongodb/locomotive_translations.bson +0 -0
- data/spec/fixtures/mongodb/locomotive_translations.metadata.json +1 -0
- data/spec/fixtures/mongodb/sessions.bson +0 -0
- data/spec/fixtures/mongodb/sessions.metadata.json +1 -0
- data/spec/fixtures/mongodb/system.indexes.bson +0 -0
- data/spec/integration/integration_helper.rb +2 -2
- data/spec/integration/liquid/tags/paginate_spec.rb +79 -0
- data/spec/integration/repositories/content_entry_repository_spec.rb +94 -0
- data/spec/integration/repositories/content_type_repository_spec.rb +69 -0
- data/spec/integration/repositories/page_repository_spec.rb +105 -0
- data/spec/integration/repositories/site_repository_spec.rb +45 -0
- data/spec/integration/repositories/snippet_repository_spec.rb +50 -0
- data/spec/integration/repositories/theme_asset_repository_spec.rb +48 -0
- data/spec/integration/repositories/translation_repository_spec.rb +50 -0
- data/spec/integration/server/assets_spec.rb +60 -0
- data/spec/integration/server/basic_spec.rb +100 -100
- data/spec/integration/server/contact_form_spec.rb +96 -25
- data/spec/integration/server/liquid_spec.rb +19 -41
- data/spec/integration/server/nav_spec.rb +49 -0
- data/spec/integration/server/session_spec.rb +33 -0
- data/spec/integration/server/sitemap_spec.rb +34 -0
- data/spec/integration/server/with_scope_spec.rb +28 -2
- data/spec/integration/services/external_api_service_spec.rb +20 -0
- data/spec/locales/locales_spec.rb +7 -7
- data/spec/spec_helper.rb +27 -13
- data/spec/support.rb +5 -1
- data/spec/support/cache_store.rb +3 -0
- data/spec/support/helpers.rb +20 -23
- data/spec/support/liquid.rb +29 -0
- data/spec/support/pry.rb +4 -0
- data/spec/support/time.rb +3 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_entry_spec.rb +50 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/content_type_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/page_spec.rb +25 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/site_spec.rb +19 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/snippet_spec.rb +26 -0
- data/spec/unit/adapters/filesystem/yaml_loaders/translation_spec.rb +25 -0
- data/spec/unit/adapters/filesystem_adapter_spec.rb +53 -0
- data/spec/unit/adapters/memory/condition_spec.rb +125 -0
- data/spec/unit/adapters/memory/dataset_spec.rb +73 -0
- data/spec/unit/adapters/memory/order_spec.rb +67 -0
- data/spec/unit/adapters/memory/query_spec.rb +85 -0
- data/spec/unit/adapters/memory_adapter_spec.rb +36 -0
- data/spec/unit/adapters/mongodb/query_spec.rb +68 -0
- data/spec/unit/adapters/mongodb_adapter_spec.rb +17 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/core_ext/string_spec.rb +44 -0
- data/spec/unit/decorators/i18n_decorator_spec.rb +80 -0
- data/spec/unit/entities/content_entry_spec.rb +159 -0
- data/spec/unit/entities/content_type_field_spec.rb +67 -0
- data/spec/unit/entities/content_type_spec.rb +59 -0
- data/spec/unit/entities/page_spec.rb +40 -34
- data/spec/unit/entities/site_spec.rb +56 -5
- data/spec/unit/initializers/dragonfly_spec.rb +31 -0
- data/spec/unit/liquid/drops/content_entry_collection_spec.rb +81 -0
- data/spec/unit/liquid/drops/content_entry_spec.rb +99 -0
- data/spec/unit/liquid/drops/content_types_spec.rb +25 -0
- data/spec/unit/liquid/drops/current_user_spec.rb +45 -0
- data/spec/unit/liquid/drops/page_spec.rb +134 -0
- data/spec/unit/liquid/drops/session_proxy_spec.rb +13 -0
- data/spec/unit/liquid/drops/site_spec.rb +49 -0
- data/spec/unit/liquid/filters/date_spec.rb +160 -0
- data/spec/unit/liquid/filters/html_spec.rb +263 -0
- data/spec/unit/liquid/filters/misc_spec.rb +108 -0
- data/spec/unit/liquid/filters/pagination_spec.rb +42 -0
- data/spec/unit/liquid/filters/resize_spec.rb +36 -0
- data/spec/unit/liquid/filters/text_spec.rb +56 -0
- data/spec/unit/liquid/filters/translate_spec.rb +33 -0
- data/spec/unit/liquid/patches_spec.rb +50 -0
- data/spec/unit/liquid/tags/consume_spec.rb +87 -0
- data/spec/unit/liquid/tags/csrf_spec.rb +47 -0
- data/spec/unit/liquid/tags/editable/control_spec.rb +109 -0
- data/spec/unit/liquid/tags/editable/file_spec.rb +116 -0
- data/spec/unit/liquid/tags/editable/text_spec.rb +139 -0
- data/spec/unit/liquid/tags/extends_spec.rb +38 -0
- data/spec/unit/liquid/tags/fetch_page_spec.rb +39 -0
- data/spec/unit/liquid/tags/google_analytics_spec.rb +16 -0
- data/spec/unit/liquid/tags/inherited_block_spec.rb +33 -0
- data/spec/unit/liquid/tags/link_to_spec.rb +112 -0
- data/spec/unit/liquid/tags/locale_switcher_spec.rb +58 -0
- data/spec/unit/liquid/tags/model_form_spec.rb +35 -0
- data/spec/unit/liquid/tags/nav_spec.rb +184 -111
- data/spec/unit/liquid/tags/paginate_spec.rb +131 -0
- data/spec/unit/liquid/tags/path_to_spec.rb +100 -0
- data/spec/unit/liquid/tags/seo_spec.rb +85 -0
- data/spec/unit/liquid/tags/session_assign_spec.rb +51 -0
- data/spec/unit/liquid/tags/snippet_spec.rb +42 -0
- data/spec/unit/liquid/tags/with_scope_spec.rb +66 -0
- data/spec/unit/middlewares/dynamic_assets_spec.rb +25 -0
- data/spec/unit/middlewares/locale_redirection_spec.rb +105 -0
- data/spec/unit/middlewares/renderer_spec.rb +29 -0
- data/spec/unit/middlewares/stack_proxy_spec.rb +67 -0
- data/spec/unit/models/mapper_spec.rb +75 -0
- data/spec/unit/models/pager_spec.rb +82 -0
- data/spec/unit/models/repository_spec.rb +46 -0
- data/spec/unit/models/scope_spec.rb +27 -0
- data/spec/unit/repositories/content_entry_repository_spec.rb +347 -0
- data/spec/unit/repositories/content_type_repository_spec.rb +126 -0
- data/spec/unit/repositories/page_repository_spec.rb +365 -0
- data/spec/unit/repositories/site_repository_spec.rb +41 -0
- data/spec/unit/repositories/snippet_repository_spec.rb +37 -0
- data/spec/unit/repositories/theme_asset_repository_spec.rb +35 -0
- data/spec/unit/repositories/translation_repository_spec.rb +34 -0
- data/spec/unit/services/asset_host_service_spec.rb +79 -0
- data/spec/unit/services/entry_submission_service_spec.rb +143 -0
- data/spec/unit/services/external_api_service_spec.rb +80 -0
- data/spec/unit/services/image_resizer_service_spec.rb +75 -0
- data/spec/unit/services/markdown_service_spec.rb +36 -0
- data/spec/unit/services/parent_finder_service_spec.rb +41 -0
- data/spec/unit/services/textile_service_spec.rb +34 -0
- data/spec/unit/services/translator_service_spec.rb +65 -0
- data/spec/unit/services/url_builder_service_spec.rb +48 -0
- data/spec/unit/services_spec.rb +25 -0
- metadata +462 -119
- data/example/server.rb +0 -31
- data/lib/locomotive/steam/decorators.rb +0 -1
- data/lib/locomotive/steam/decorators/page_decorator.rb +0 -50
- data/lib/locomotive/steam/exceptions.rb +0 -62
- data/lib/locomotive/steam/liquid/scopeable.rb +0 -149
- data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +0 -15
- data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +0 -20
- data/lib/locomotive/steam/liquid/tags/path_helper.rb +0 -98
- data/lib/locomotive/steam/loaders/yml/pages_loader.rb +0 -193
- data/lib/locomotive/steam/loaders/yml/site_loader.rb +0 -49
- data/lib/locomotive/steam/loaders/yml/utils/localized_tree.rb +0 -33
- data/lib/locomotive/steam/loaders/yml/utils/yaml_front_matters_template.rb +0 -66
- data/lib/locomotive/steam/loaders/yml_loader.rb +0 -33
- data/lib/locomotive/steam/mapper.rb +0 -86
- data/lib/locomotive/steam/middlewares/base.rb +0 -65
- data/lib/locomotive/steam/middlewares/stack.rb +0 -66
- data/lib/locomotive/steam/middlewares/static_assets.rb +0 -25
- data/lib/locomotive/steam/monkey_patches.rb +0 -3
- data/lib/locomotive/steam/monkey_patches/haml.rb +0 -17
- data/lib/locomotive/steam/repositories/content_types_repository.rb +0 -14
- data/lib/locomotive/steam/repositories/pages_repository.rb +0 -23
- data/lib/locomotive/steam/repositories/sites_repository.rb +0 -16
- data/lib/locomotive/steam/services/dragonfly.rb +0 -49
- data/lib/locomotive/steam/services/external_api.rb +0 -47
- data/lib/locomotive/steam/services/markdown.rb +0 -20
- data/lib/locomotive/steam/standalone_server.rb +0 -30
- data/spec/unit/decorators/page_decorator_spec.rb +0 -55
- data/spec/unit/loaders/pages_loader_spec.rb +0 -42
- data/spec/unit/loaders/site_loader_spec.rb +0 -21
- data/spec/unit/loaders/utils/localized_tree_spec.rb +0 -33
- data/spec/unit/loaders/utils/yaml_front_matters_template_spec.rb +0 -39
- data/spec/unit/middlewares/base_spec.rb +0 -20
- data/spec/unit/middlewares/page_spec.rb +0 -51
- data/spec/unit/repositories/pages_spec.rb +0 -11
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::InheritedBlock do
|
4
|
+
|
5
|
+
let(:parent_source) { 'My product: {% block product %}Random{% endblock %}' }
|
6
|
+
let(:parent) { instance_double('Index', liquid_source: parent_source, template: nil, :template= => nil) }
|
7
|
+
let(:source) { '{% extends parent %}{% block product %}Skis{% endblock %}' }
|
8
|
+
let(:page) { instance_double('Page') }
|
9
|
+
|
10
|
+
let(:listener) { Liquid::SimpleEventsListener.new }
|
11
|
+
let(:finder) { instance_double('Finder', find: parent) }
|
12
|
+
let(:options) { { page: page, events_listener: listener, parent_finder: finder, parser: Locomotive::Steam::LiquidParserService.new } }
|
13
|
+
|
14
|
+
let!(:template) { parse_template(source, options) }
|
15
|
+
|
16
|
+
describe 'without a super block' do
|
17
|
+
|
18
|
+
it { expect(listener.events.size).to eq 3 }
|
19
|
+
it { expect(listener.events.first.last[:found_super]).to eq false }
|
20
|
+
it { expect(template.render).to eq 'My product: Skis' }
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
describe 'with a super block' do
|
25
|
+
|
26
|
+
let(:source) { '{% extends parent %}{% block product %}Skis (previous: {{ block.super }}){% endblock %}' }
|
27
|
+
|
28
|
+
it { expect(listener.events.first.last[:found_super]).to eq true }
|
29
|
+
it { expect(template.render).to eq 'My product: Skis (previous: Random)' }
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,112 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::PathTo do
|
4
|
+
|
5
|
+
let(:assigns) { {} }
|
6
|
+
let(:services) { Locomotive::Steam::Services.build_instance }
|
7
|
+
let(:site) { instance_double('Site', default_locale: 'en') }
|
8
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, { services: services, site: site, locale: 'en' }) }
|
9
|
+
|
10
|
+
subject { render_template(source, context) }
|
11
|
+
|
12
|
+
before { allow(services).to receive(:current_site).and_return(site) }
|
13
|
+
|
14
|
+
describe 'parsing' do
|
15
|
+
|
16
|
+
let(:source) { '{% link_to %}' }
|
17
|
+
it { expect { subject }.to raise_error("Syntax Error in 'link_to' - Valid syntax: link_to page_handle, locale es (locale is optional)") }
|
18
|
+
|
19
|
+
context 'unknown tag' do
|
20
|
+
|
21
|
+
let(:source) { '{% link_to index %}{% endbar %}{% endlink_to %}' }
|
22
|
+
it { expect { subject }.to raise_error("Liquid syntax error: Unknown tag 'endbar'") }
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'unknown page' do
|
29
|
+
|
30
|
+
let(:source) { '{% link_to index %}' }
|
31
|
+
|
32
|
+
before do
|
33
|
+
expect(services.repositories.page).to receive(:by_handle).with('index').and_return(nil)
|
34
|
+
end
|
35
|
+
|
36
|
+
it { is_expected.to eq '' }
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
describe '#render' do
|
41
|
+
|
42
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
43
|
+
let(:page) { liquid_instance_double('Index', handle: 'index', localized_attributes: { title: true, fullpath: true }, title: { en: 'Home', fr: 'Accueil' }, fullpath: fullpath, templatized?: false) }
|
44
|
+
let(:fullpath) { { en: 'index', fr: 'index' } }
|
45
|
+
|
46
|
+
before do
|
47
|
+
allow(services.repositories.page).to receive(:by_handle).with('index').and_return(page)
|
48
|
+
allow(page).to receive(:to_liquid).and_return(drop)
|
49
|
+
end
|
50
|
+
|
51
|
+
describe 'used as a tag' do
|
52
|
+
|
53
|
+
let(:source) { 'My link: {% link_to index %}!' }
|
54
|
+
it { is_expected.to eq 'My link: <a href="/">Home</a>!' }
|
55
|
+
|
56
|
+
context 'and a different locale' do
|
57
|
+
|
58
|
+
let(:source) { "{% link_to index, locale: 'fr' %}" }
|
59
|
+
it { is_expected.to eq '<a href="/fr">Accueil</a>' }
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'inside another block' do
|
64
|
+
|
65
|
+
let(:source) { '{% block header %}My links: {% link_to index %} & {% link_to index %}here too{% endlink_to %}{% endblock %}' }
|
66
|
+
it { is_expected.to eq 'My links: <a href="/">Home</a> & <a href="/">here too</a>' }
|
67
|
+
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'used as a block' do
|
73
|
+
|
74
|
+
let(:source) { 'My link: {% link_to index %}click here{% endlink_to %}!' }
|
75
|
+
it { is_expected.to eq 'My link: <a href="/">click here</a>!' }
|
76
|
+
|
77
|
+
context 'and a different locale' do
|
78
|
+
|
79
|
+
let(:source) { "{% link_to index, locale: 'fr' %}{{ target.title }}!{% endlink_to %}" }
|
80
|
+
it { is_expected.to eq '<a href="/fr">Accueil!</a>' }
|
81
|
+
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
describe 'link to a content entry (drop)' do
|
87
|
+
|
88
|
+
let(:assigns) { { 'article' => entry_drop } }
|
89
|
+
let(:entry_drop) { Locomotive::Steam::Liquid::Drops::ContentEntry.new(entry) }
|
90
|
+
let(:entry) { liquid_instance_double('Article', localized_attributes: { _label: true, _slug: true }, _label: { en: 'Hello world', fr: 'Bonjour monde' }, _slug: { en: 'hello-world', fr: 'bonjour-monde' }) }
|
91
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
92
|
+
let(:page) { liquid_instance_double('ArticleTemplate', title: 'Template of an article', handle: 'article', fullpath: { en: 'my-articles/content_type_template', fr: 'mes-articles/content_type_template' }, localized_attributes: { fullpath: true }, content_entry: entry_drop.send(:_source), templatized?: true) }
|
93
|
+
let(:source) { '{% link_to article %}' }
|
94
|
+
|
95
|
+
before do
|
96
|
+
expect(services.repositories.page).to receive(:template_for).with(entry, nil).and_return(page)
|
97
|
+
end
|
98
|
+
|
99
|
+
it { is_expected.to eq '<a href="/my-articles/hello-world">Hello world</a>' }
|
100
|
+
|
101
|
+
context 'with a different locale' do
|
102
|
+
|
103
|
+
let(:source) { "{% link_to article, locale: 'fr' %}" }
|
104
|
+
it { is_expected.to eq '<a href="/fr/mes-articles/bonjour-monde">Bonjour monde</a>' }
|
105
|
+
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
109
|
+
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Liquid::Tags::LocaleSwitcher do
|
4
|
+
|
5
|
+
let(:locale) { 'en' }
|
6
|
+
let(:assigns) { { 'page' => drop } }
|
7
|
+
let(:services) { Locomotive::Steam::Services.build_instance }
|
8
|
+
let(:site) { instance_double('Site', locales: %w(en fr), default_locale: 'en') }
|
9
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
10
|
+
let(:page) { liquid_instance_double('Index', localized_attributes: { title: true, fullpath: true }, title: { en: 'Home', fr: 'Accueil' }, fullpath: { en: 'index', fr: 'index' }, templatized?: false) }
|
11
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, { services: services, site: site, locale: locale }) }
|
12
|
+
|
13
|
+
subject { render_template(source, context) }
|
14
|
+
|
15
|
+
before { allow(services).to receive(:current_site).and_return(site) }
|
16
|
+
|
17
|
+
describe 'default rendering' do
|
18
|
+
|
19
|
+
let(:source) { '{% locale_switcher %}' }
|
20
|
+
it { is_expected.to eq '<div id="locale-switcher"><a href="/" class="en current">en</a> | <a href="/fr" class="fr">fr</a></div>' }
|
21
|
+
|
22
|
+
context 'different current locale' do
|
23
|
+
|
24
|
+
let(:locale) { 'fr' }
|
25
|
+
it { is_expected.to eq '<div id="locale-switcher"><a href="/" class="en">en</a> | <a href="/fr" class="fr current">fr</a></div>' }
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
describe 'using the locale to display the links' do
|
32
|
+
|
33
|
+
let(:source) { '{% locale_switcher label: "locale", sep: " - " %}' }
|
34
|
+
it { is_expected.to eq '<div id="locale-switcher"><a href="/" class="en current">English</a> - <a href="/fr" class="fr">French</a></div>' }
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
describe 'using the title of the page to display the links' do
|
39
|
+
|
40
|
+
let(:source) { '{% locale_switcher label: "title" %}' }
|
41
|
+
it { is_expected.to eq '<div id="locale-switcher"><a href="/" class="en current">Home</a> | <a href="/fr" class="fr">Accueil</a></div>' }
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'the page is templatized' do
|
46
|
+
|
47
|
+
let(:assigns) { { 'article' => entry_drop, 'page' => drop } }
|
48
|
+
let(:entry_drop) { Locomotive::Steam::Liquid::Drops::ContentEntry.new(entry) }
|
49
|
+
let(:entry) { liquid_instance_double('Article', _label: { en: 'Hello world', fr: 'Bonjour monde' }, _slug: { en: 'hello-world', fr: 'bonjour-monde' }, localized_attributes: { _label: true, _slug: true }) }
|
50
|
+
let(:drop) { Locomotive::Steam::Liquid::Drops::Page.new(page) }
|
51
|
+
let(:page) { liquid_instance_double('ArticleTemplate', title: 'Article template', fullpath: { en: 'my-articles/content_type_template', fr: 'mes-articles/content_type_template' }, content_entry: entry_drop.send(:_source), templatized?: true, localized_attributes: { fullpath: true }) }
|
52
|
+
|
53
|
+
let(:source) { '{% locale_switcher label: "title" %}' }
|
54
|
+
it { is_expected.to eq '<div id="locale-switcher"><a href="/my-articles/hello-world" class="en current">Hello world</a> | <a href="/fr/mes-articles/bonjour-monde" class="fr">Bonjour monde</a></div>' }
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'rack/csrf'
|
3
|
+
|
4
|
+
describe Locomotive::Steam::Liquid::Tags::ModelForm do
|
5
|
+
|
6
|
+
before do
|
7
|
+
allow(Rack::Csrf).to receive(:field).and_return('token')
|
8
|
+
allow(Rack::Csrf).to receive(:token).and_return(42)
|
9
|
+
end
|
10
|
+
|
11
|
+
let(:request) { instance_double('Request', env: {}) }
|
12
|
+
let(:source) { "{% model_form 'newsletter_addresses' %}Newsletter Form{% endmodel_form %}" }
|
13
|
+
let(:services) { Locomotive::Steam::Services.build_instance(request) }
|
14
|
+
let(:context) { ::Liquid::Context.new({}, {}, { services: services }) }
|
15
|
+
|
16
|
+
subject { render_template(source, context) }
|
17
|
+
|
18
|
+
it { is_expected.to eq %(<form method="POST" enctype="multipart/form-data"><input type="hidden" name="content_type_slug" value="newsletter_addresses" /><input type="hidden" name="token" value="42" />Newsletter Form</form>) }
|
19
|
+
|
20
|
+
describe 'with a different dom id and css class' do
|
21
|
+
|
22
|
+
let(:source) { "{% model_form 'newsletter_addresses', id: 'my-form', class: 'col-md-12' %}Newsletter Form{% endmodel_form %}" }
|
23
|
+
it { is_expected.to eq %(<form method="POST" enctype="multipart/form-data" id="my-form" class="col-md-12"><input type="hidden" name="content_type_slug" value="newsletter_addresses" /><input type="hidden" name="token" value="42" />Newsletter Form</form>) }
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'using callbacks' do
|
28
|
+
|
29
|
+
let(:source) { "{% model_form 'newsletter_addresses', success: '/success', error: '/error' %}Newsletter Form{% endmodel_form %}" }
|
30
|
+
it { is_expected.to include %(<input type="hidden" name="success_callback" value="/success" />) }
|
31
|
+
it { is_expected.to include %(<input type="hidden" name="error_callback" value="/error" />) }
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -1,159 +1,232 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Locomotive::Steam::Liquid::Tags::Nav do
|
4
|
-
|
5
|
-
|
6
|
-
let(:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
before do
|
12
|
-
home_children = [
|
13
|
-
new_page(title: { en: 'Child #1' }, fullpath: { en: 'child_1' }, slug: { en: 'child_1' }, published: true, listed: true),
|
14
|
-
new_page(title: { en: 'Child #2' }, fullpath: { en: 'child_2' }, slug: { en: 'child_2' }, published: true, listed: true)
|
3
|
+
describe 'Locomotive::Steam::Liquid::Tags::Nav' do
|
4
|
+
|
5
|
+
let(:index) { instance_double('IndexPage', fullpath: 'index', published: true) }
|
6
|
+
let(:depth_1) do
|
7
|
+
[
|
8
|
+
instance_double('Child1', title: 'Child #1', slug: 'child-1', fullpath: 'child-1', published?: true, listed?: true, templatized?: false, localized_attributes: [], to_liquid: { 'title' => 'Child #1' }),
|
9
|
+
instance_double('Child2', title: 'Child #2', slug: 'child-2', fullpath: 'child-2', published?: true, listed?: true, templatized?: false, localized_attributes: [], to_liquid: { 'title' => 'Child #2' })
|
15
10
|
]
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
11
|
+
end
|
12
|
+
let(:depth_2) do
|
13
|
+
[
|
14
|
+
instance_double('Child2_1', title: 'Child #2.1', slug: 'child-2-1', fullpath: 'child-2/child-2-1', published?: true, listed?: true, templatized?: false, localized_attributes: []),
|
15
|
+
instance_double('Child2_2', title: 'Child #2.2', slug: 'child-2-2', fullpath: 'child-2/child-2-2', published?: true, listed?: true, templatized?: false, localized_attributes: []),
|
16
|
+
instance_double('UnpublishedChild2_3', title: 'Child #2.3', slug: 'child-2-3', fullpath: 'child-2/child-2-3', published?: false, listed?: true, templatized?: false, localized_attributes: []),
|
17
|
+
instance_double('TemplatizedChild2_4', title: 'Child #2.4', slug: 'child-2-4', fullpath: 'child-2/child-2-4', published?: true, listed?: true, templatized?: true, localized_attributes: []),
|
18
|
+
instance_double('UnlistedChild2_4', title: 'Child #2.5', slug: 'child-2-5', fullpath: 'child-2/child-2-5', published?: true, listed?: false, templatized?: false, localized_attributes: [])
|
24
19
|
]
|
25
|
-
home.children.last.stub(children: other_children)
|
26
|
-
|
27
|
-
pages = [home]
|
28
|
-
Locomotive::Models['pages'].stub(root: pages)
|
29
|
-
Locomotive::Models['pages'].stub(all: pages)
|
30
|
-
Locomotive::Models['pages'].stub(:[]).with('index').and_return home
|
31
20
|
end
|
32
21
|
|
33
|
-
|
22
|
+
let(:source) { '{% nav site %}' }
|
23
|
+
let(:site) { instance_double('Site', name: 'My portfolio', default_locale: 'en') }
|
24
|
+
let(:page) { index }
|
25
|
+
let(:services) { Locomotive::Steam::Services.build_instance(nil) }
|
26
|
+
let(:repository) { services.repositories.page }
|
27
|
+
let(:assigns) { {} }
|
28
|
+
let(:registers) { { services: services, site: site, page: page } }
|
29
|
+
let(:context) { ::Liquid::Context.new(assigns, {}, registers) }
|
30
|
+
let(:options) { { services: services } }
|
34
31
|
|
35
|
-
|
36
|
-
render_nav.should == '<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child_1">Child #1</a></li><li id="child-2-link" class="link last"><a href="/child_2">Child #2</a></li></ul></nav>'
|
37
|
-
end
|
32
|
+
let(:output) { render_template(source, context, options) }
|
38
33
|
|
39
|
-
|
40
|
-
render_nav('page').should == '<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child_1">Child #1</a></li><li id="child-2-link" class="link last"><a href="/child_2">Child #2</a></li></ul></nav>'
|
41
|
-
end
|
34
|
+
before { services.repositories.current_site = site }
|
42
35
|
|
43
|
-
|
44
|
-
(page = home.children.last.children.first).stub(parent: home.children.last)
|
45
|
-
output = render_nav 'parent', { page: page }
|
46
|
-
output.should == '<nav id="nav"><ul><li id="sub-child-1-link" class="link on first"><a href="/child_2/sub_child_1">Child #2.1</a></li><li id="sub-child-2-link" class="link last"><a href="/child_2/sub_child_2">Child #2.2</a></li></ul></nav>'
|
47
|
-
end
|
36
|
+
describe 'rendering' do
|
48
37
|
|
49
|
-
|
50
|
-
output = render_nav('site', {}, 'depth: 2')
|
38
|
+
subject { output }
|
51
39
|
|
52
|
-
|
53
|
-
output.should match(/<ul>/)
|
54
|
-
output.should match(/<li id="child-1-link" class="link first">/)
|
55
|
-
output.should match(/<\/a><ul id="nav-child-2">/)
|
56
|
-
output.should match(/<li id="sub-child-1-link" class="link first">/)
|
57
|
-
output.should match(/<li id="sub-child-2-link" class="link last">/)
|
58
|
-
output.should match(/<\/a><\/li><\/ul><\/li><\/ul><\/nav>/)
|
59
|
-
end
|
40
|
+
describe 'from a site' do
|
60
41
|
|
61
|
-
|
62
|
-
|
42
|
+
before do
|
43
|
+
allow(repository).to receive(:root).and_return(index)
|
44
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
45
|
+
end
|
46
|
+
|
47
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a></li></ul></nav>} }
|
63
48
|
|
64
|
-
output.should_not match(/sub-child-template-3/)
|
65
49
|
end
|
66
50
|
|
67
|
-
|
68
|
-
output = render_nav('site', {}, 'depth: 2')
|
51
|
+
describe 'from a page' do
|
69
52
|
|
70
|
-
|
71
|
-
end
|
53
|
+
let(:source) { '{% nav page %}' }
|
72
54
|
|
73
|
-
|
74
|
-
|
55
|
+
before do
|
56
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
57
|
+
end
|
58
|
+
|
59
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a></li></ul></nav>} }
|
75
60
|
|
76
|
-
output.should_not match(/sub-child-unlisted-3/)
|
77
61
|
end
|
78
62
|
|
79
|
-
|
80
|
-
output = render_nav('site', {}, 'depth: 2, exclude: "child_2/sub_child_2"')
|
63
|
+
describe 'from the parent page' do
|
81
64
|
|
82
|
-
|
83
|
-
output.should match(/<li id="sub-child-1-link" class="link first last">/)
|
84
|
-
output.should_not match(/sub-child-2/)
|
65
|
+
let(:source) { '{% nav parent %}' }
|
85
66
|
|
86
|
-
|
67
|
+
describe 'no parent page, use the current page instead' do
|
87
68
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
69
|
+
before do
|
70
|
+
allow(repository).to receive(:parent_of).with(index).and_return(nil)
|
71
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
72
|
+
end
|
92
73
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
render_nav('site', {}, 'icon: before')
|
97
|
-
.should match(/<li id="child-1-link" class="link first"><a href="\/child_1"><span><\/span> Child #1<\/a>/)
|
98
|
-
end
|
74
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a></li></ul></nav>} }
|
75
|
+
|
76
|
+
end
|
99
77
|
|
100
|
-
it 'adds an icon after the link' do
|
101
|
-
render_nav('site', {}, 'icon: after')
|
102
|
-
.should match(/<li id="child-1-link" class="link first"><a href="\/child_1">Child #1 <span><\/span><\/a><\/li>/)
|
103
78
|
end
|
104
79
|
|
105
|
-
|
106
|
-
|
107
|
-
|
80
|
+
describe 'from a page' do
|
81
|
+
|
82
|
+
let(:source) { '{% nav index %}' }
|
83
|
+
|
84
|
+
describe 'no parent page, use the current page instead' do
|
85
|
+
|
86
|
+
before do
|
87
|
+
allow(repository).to receive(:by_fullpath).with('index').and_return(index)
|
88
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
89
|
+
end
|
90
|
+
|
91
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a></li></ul></nav>} }
|
92
|
+
|
93
|
+
end
|
94
|
+
|
108
95
|
end
|
109
96
|
|
110
|
-
|
111
|
-
|
112
|
-
|
97
|
+
describe 'no wrapper' do
|
98
|
+
|
99
|
+
let(:source) { '{% nav site, no_wrapper: true %}' }
|
100
|
+
|
101
|
+
before do
|
102
|
+
allow(repository).to receive(:root).and_return(index)
|
103
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
104
|
+
end
|
105
|
+
|
106
|
+
it { is_expected.to eq %{<li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a></li>} }
|
107
|
+
|
113
108
|
end
|
114
109
|
|
115
|
-
|
116
|
-
|
117
|
-
|
110
|
+
describe 'with icons' do
|
111
|
+
|
112
|
+
before do
|
113
|
+
allow(repository).to receive(:root).and_return(index)
|
114
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
115
|
+
end
|
116
|
+
|
117
|
+
describe 'before' do
|
118
|
+
|
119
|
+
let(:source) { '{% nav site, icon: before, no_wrapper: true %}' }
|
120
|
+
it { is_expected.to include %{<li id="child-1-link" class="link first"><a href="/child-1"><span></span> Child #1</a></li>} }
|
121
|
+
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'after' do
|
125
|
+
|
126
|
+
let(:source) { '{% nav site, icon: after, no_wrapper: true %}' }
|
127
|
+
it { is_expected.to include %{<li id="child-1-link" class="link first"><a href="/child-1">Child #1 <span></span></a></li>} }
|
128
|
+
|
129
|
+
end
|
130
|
+
|
118
131
|
end
|
119
132
|
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
133
|
+
describe 'including the second levels of pages (depth = 2)' do
|
134
|
+
|
135
|
+
let(:source) { '{% nav site, depth: 2 %}' }
|
136
|
+
|
137
|
+
before do
|
138
|
+
allow(repository).to receive(:root).and_return(index)
|
139
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
140
|
+
allow(repository).to receive(:children_of).with(depth_1.first).and_return([])
|
141
|
+
allow(repository).to receive(:children_of).with(depth_1.last).and_return(depth_2)
|
142
|
+
end
|
143
|
+
|
144
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a><ul id="nav-child-2"><li id="child-2-1-link" class="link first"><a href="/child-2/child-2-1">Child #2.1</a></li>\n<li id="child-2-2-link" class="link last"><a href="/child-2/child-2-2">Child #2.2</a></li></ul></li></ul></nav>} }
|
145
|
+
|
146
|
+
describe 'with bootstrap' do
|
147
|
+
|
148
|
+
let(:source) { '{% nav site, bootstrap: true, depth: 2 %}' }
|
149
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Child #2 <b class="caret"></b></a><ul id="nav-child-2" class="dropdown-menu"><li id="child-2-1-link" class="link first"><a href="/child-2/child-2-1">Child #2.1</a></li>\n<li id="child-2-2-link" class="link last"><a href="/child-2/child-2-2">Child #2.2</a></li></ul></li></ul></nav>} }
|
150
|
+
|
151
|
+
end
|
152
|
+
|
153
|
+
describe 'excluding pages' do
|
154
|
+
|
155
|
+
let(:source) { '{% nav site, depth: 2, exclude: "child-2/child-2-2" %}' }
|
156
|
+
it { is_expected.to eq %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/child-2">Child #2</a><ul id="nav-child-2"><li id="child-2-1-link" class="link first last"><a href="/child-2/child-2-1">Child #2.1</a></li></ul></li></ul></nav>} }
|
157
|
+
|
158
|
+
end
|
159
|
+
|
124
160
|
end
|
125
161
|
|
126
|
-
|
127
|
-
|
162
|
+
describe 'using a snippet to render the title' do
|
163
|
+
|
164
|
+
let(:source) { %({% nav site, snippet: "{{page.title}}!" %}) }
|
165
|
+
|
166
|
+
before do
|
167
|
+
allow(repository).to receive(:root).and_return(index)
|
168
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
169
|
+
allow(repository).to receive(:root).and_return(index)
|
170
|
+
end
|
171
|
+
|
172
|
+
it { is_expected.to include %{<a href="/child-1">Child #1!</a>} }
|
173
|
+
|
174
|
+
describe 'from a registered snippet' do
|
175
|
+
|
176
|
+
let(:source) { %({% nav site, snippet: nav_title %}) }
|
177
|
+
let(:snippet) { instance_double('Snippet', source: '{{ page.title }}!') }
|
178
|
+
|
179
|
+
before do
|
180
|
+
allow(services.snippet_finder).to receive(:find).with('nav_title').and_return(snippet)
|
181
|
+
end
|
182
|
+
|
183
|
+
it { is_expected.to include %{<a href="/child-1">Child #1!</a>} }
|
184
|
+
|
185
|
+
end
|
186
|
+
|
128
187
|
end
|
129
188
|
|
130
|
-
|
131
|
-
|
132
|
-
|
189
|
+
describe 'changing the dom id and the class' do
|
190
|
+
|
191
|
+
let(:source) { %({% nav site, id: "main-nav", class: "nav" %}) }
|
192
|
+
|
193
|
+
before do
|
194
|
+
allow(repository).to receive(:root).and_return(index)
|
195
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
196
|
+
end
|
197
|
+
|
198
|
+
it { is_expected.to include %{<nav id="main-nav" class="nav">} }
|
199
|
+
|
133
200
|
end
|
134
201
|
|
135
|
-
|
136
|
-
|
137
|
-
|
202
|
+
describe 'assigning a class other than "on" for a selected item' do
|
203
|
+
|
204
|
+
let(:source) { %({% nav parent, active_class: "active" %}) }
|
205
|
+
let(:page) { depth_1.first }
|
206
|
+
|
207
|
+
before do
|
208
|
+
allow(repository).to receive(:parent_of).with(page).and_return(index)
|
209
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
138
210
|
end
|
211
|
+
|
212
|
+
it { is_expected.to include %{<li id="child-1-link" class="link active first">} }
|
213
|
+
|
139
214
|
end
|
140
215
|
|
141
|
-
|
216
|
+
describe 'localizing the links' do
|
142
217
|
|
143
|
-
|
144
|
-
Locomotive::Steam::Decorators::PageDecorator.new(
|
145
|
-
Locomotive::Decorators::I18nDecorator.new(
|
146
|
-
entity_class.new(attributes), :en
|
147
|
-
)
|
148
|
-
)
|
149
|
-
end
|
218
|
+
let(:source) { %({% nav parent, active_class: "active" %}) }
|
150
219
|
|
151
|
-
|
152
|
-
|
153
|
-
|
220
|
+
before do
|
221
|
+
services.url_builder.current_locale = 'fr'
|
222
|
+
allow(repository).to receive(:parent_of).with(page).and_return(index)
|
223
|
+
allow(repository).to receive(:children_of).with(index).and_return(depth_1)
|
224
|
+
end
|
225
|
+
|
226
|
+
it { is_expected.to include %{<nav id="nav"><ul><li id="child-1-link" class="link first"><a href="/fr/child-1">Child #1</a></li>\n<li id="child-2-link" class="link last"><a href="/fr/child-2">Child #2</a></li></ul></nav>} }
|
227
|
+
|
228
|
+
end
|
154
229
|
|
155
|
-
output = Liquid::Template.parse("{% nav #{source} #{template_option} %}").render(liquid_context)
|
156
|
-
output.gsub(/\n\s{0,}/, '')
|
157
230
|
end
|
158
231
|
|
159
232
|
end
|