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,50 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
require_relative '../../../lib/locomotive/steam/adapters/mongodb.rb'
|
5
|
+
|
6
|
+
describe Locomotive::Steam::SnippetRepository do
|
7
|
+
|
8
|
+
shared_examples_for 'a repository' do
|
9
|
+
|
10
|
+
let(:site) { Locomotive::Steam::Site.new(_id: site_id, locales: %w(en fr nb)) }
|
11
|
+
let(:locale) { :en }
|
12
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
13
|
+
|
14
|
+
describe '#all' do
|
15
|
+
subject { repository.all }
|
16
|
+
it { expect(subject.size).to eq 4 }
|
17
|
+
end
|
18
|
+
|
19
|
+
describe '#by_slug' do
|
20
|
+
subject { repository.by_slug('a_complicated-one') }
|
21
|
+
it { expect(subject).not_to eq nil }
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
context 'MongoDB' do
|
27
|
+
|
28
|
+
it_should_behave_like 'a repository' do
|
29
|
+
|
30
|
+
let(:site_id) { BSON::ObjectId.from_string('54eb49c12475804b2b000002') }
|
31
|
+
let(:adapter) { Locomotive::Steam::MongoDBAdapter.new(database: 'steam_test', hosts: ['127.0.0.1:27017']) }
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
context 'Filesystem' do
|
38
|
+
|
39
|
+
it_should_behave_like 'a repository' do
|
40
|
+
|
41
|
+
let(:site_id) { 1 }
|
42
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(default_fixture_site_path) }
|
43
|
+
|
44
|
+
after(:all) { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear }
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
require_relative '../../../lib/locomotive/steam/adapters/mongodb.rb'
|
5
|
+
|
6
|
+
describe Locomotive::Steam::ThemeAssetRepository do
|
7
|
+
|
8
|
+
let(:site) { Locomotive::Steam::Site.new(_id: site_id, locales: %w(en fr nb)) }
|
9
|
+
let(:repository) { described_class.new(adapter, site, :en) }
|
10
|
+
|
11
|
+
context 'MongoDB' do
|
12
|
+
|
13
|
+
let(:site_id) { BSON::ObjectId.from_string('54eb49c12475804b2b000002') }
|
14
|
+
let(:adapter) { Locomotive::Steam::MongoDBAdapter.new(database: 'steam_test', hosts: ['127.0.0.1:27017']) }
|
15
|
+
|
16
|
+
describe '#url_for' do
|
17
|
+
subject { repository.url_for('stylesheets/application.css') }
|
18
|
+
it { is_expected.to eq '/sites/54eb49c12475804b2b000002/theme/stylesheets/application.css' }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#checksums' do
|
22
|
+
subject { repository.checksums }
|
23
|
+
it { expect(subject.size).to eq 16 }
|
24
|
+
it { expect(subject['stylesheets/application.css']).to eq 'aa017461d702a80ef8837e51e65deb4f' }
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
context 'Filesystem' do
|
30
|
+
|
31
|
+
let(:site_id) { 1 }
|
32
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(default_fixture_site_path) }
|
33
|
+
|
34
|
+
describe '#url_for' do
|
35
|
+
subject { repository.url_for('stylesheets/application.css') }
|
36
|
+
it { is_expected.to eq '/stylesheets/application.css' }
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#checksums' do
|
40
|
+
subject { repository.checksums }
|
41
|
+
it { expect(subject).to eq({}) }
|
42
|
+
end
|
43
|
+
|
44
|
+
after(:all) { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear }
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
require_relative '../../../lib/locomotive/steam/adapters/mongodb.rb'
|
5
|
+
|
6
|
+
describe Locomotive::Steam::TranslationRepository do
|
7
|
+
|
8
|
+
shared_examples_for 'a repository' do
|
9
|
+
|
10
|
+
let(:site) { Locomotive::Steam::Site.new(_id: site_id, locales: %w(en fr nb)) }
|
11
|
+
let(:locale) { :en }
|
12
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
13
|
+
|
14
|
+
describe '#all' do
|
15
|
+
subject { repository.all }
|
16
|
+
it { expect(subject.size).to eq 1 }
|
17
|
+
end
|
18
|
+
|
19
|
+
describe '#by_key' do
|
20
|
+
subject { repository.by_key('powered_by') }
|
21
|
+
it { expect(subject.values).to eq({ 'en' => 'Powered by', 'fr' => 'Propulsé par' }) }
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
context 'MongoDB' do
|
27
|
+
|
28
|
+
it_should_behave_like 'a repository' do
|
29
|
+
|
30
|
+
let(:site_id) { BSON::ObjectId.from_string('54eb49c12475804b2b000002') }
|
31
|
+
let(:adapter) { Locomotive::Steam::MongoDBAdapter.new(database: 'steam_test', hosts: ['127.0.0.1:27017']) }
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
context 'Filesystem' do
|
38
|
+
|
39
|
+
it_should_behave_like 'a repository' do
|
40
|
+
|
41
|
+
let(:site_id) { 1 }
|
42
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(default_fixture_site_path) }
|
43
|
+
|
44
|
+
after(:all) { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear }
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../integration_helper'
|
2
|
+
|
3
|
+
describe Locomotive::Steam::Server do
|
4
|
+
|
5
|
+
include Rack::Test::Methods
|
6
|
+
|
7
|
+
def app
|
8
|
+
run_server
|
9
|
+
end
|
10
|
+
|
11
|
+
describe 'no favicon' do
|
12
|
+
|
13
|
+
subject { get '/favicon.ico'; last_response.body }
|
14
|
+
|
15
|
+
it { is_expected.to include('') }
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
describe 'theme assets' do
|
20
|
+
|
21
|
+
subject { get '/all'; last_response.body }
|
22
|
+
|
23
|
+
it { is_expected.to include('<link href="/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />') }
|
24
|
+
it { is_expected.to include('<script src="/javascripts/application.js" type=\'text/javascript\'></script>') }
|
25
|
+
it { is_expected.to include('<link rel="alternate" type="application/atom+xml" title="A title" href="/foo/bar" />') }
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'static assets' do
|
30
|
+
|
31
|
+
it 'renders an image' do
|
32
|
+
get '/images/nav_on.png'
|
33
|
+
expect(last_response.status).to eq(200)
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
describe 'dynamic assets (SCSS + Coffeescript)' do
|
39
|
+
|
40
|
+
it 'renders a stylesheet' do
|
41
|
+
get '/stylesheets/application.css'
|
42
|
+
expect(last_response.status).to eq(200)
|
43
|
+
expect(last_response.body).to include('body{background:#f0eee3')
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'renders a SCSS asset' do
|
47
|
+
get '/stylesheets/other/style.css'
|
48
|
+
expect(last_response.status).to eq(200)
|
49
|
+
expect(last_response.body).to include('body{background:red}')
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'renders a Coffeescript asset' do
|
53
|
+
get '/javascripts/application.js'
|
54
|
+
expect(last_response.status).to eq(200)
|
55
|
+
expect(last_response.body).to include('alert("hello world")')
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
@@ -8,161 +8,161 @@ describe Locomotive::Steam::Server do
|
|
8
8
|
run_server
|
9
9
|
end
|
10
10
|
|
11
|
-
it '
|
12
|
-
get '/index'
|
13
|
-
last_response.status.
|
11
|
+
it 'displays an error message if the site does not exist' do
|
12
|
+
get '/index', {},{ 'HTTP_HOST' => 'www.nowhere.org/index' }
|
13
|
+
expect(last_response.status).to eq(404)
|
14
|
+
expect(last_response.body).to eq 'Hi, we are sorry but no site was found.'
|
14
15
|
end
|
15
16
|
|
16
|
-
it 'shows the index page'
|
17
|
+
it 'shows the index page' do
|
17
18
|
get '/index'
|
18
|
-
last_response.
|
19
|
-
|
20
|
-
|
21
|
-
it 'shows the 404 page', pending: true do
|
22
|
-
get '/void'
|
23
|
-
last_response.status.should eq(404)
|
24
|
-
last_response.body.should =~ /page not found/
|
19
|
+
expect(last_response.status).to eq(200)
|
20
|
+
expect(last_response.body).to match(/Upcoming events/)
|
25
21
|
end
|
26
22
|
|
27
|
-
it 'shows the
|
28
|
-
get '/
|
29
|
-
last_response.status.
|
30
|
-
last_response.body.should =~ /page not found/
|
23
|
+
it 'shows the about us page' do
|
24
|
+
get '/about-us'
|
25
|
+
expect(last_response.status).to eq(200)
|
31
26
|
end
|
32
27
|
|
33
|
-
it 'shows
|
28
|
+
it 'shows an inner page' do
|
34
29
|
get '/about-us/jane-doe'
|
35
|
-
last_response.body.
|
30
|
+
expect(last_response.body).to include '<link href="/stylesheets/application.css"'
|
31
|
+
expect(last_response.body).to include 'Lorem ipsum dolor sit amet'
|
36
32
|
end
|
37
33
|
|
38
|
-
it '
|
39
|
-
get '/
|
40
|
-
last_response.body.
|
34
|
+
it 'responds to the /robots.txt url' do
|
35
|
+
get '/robots.txt'
|
36
|
+
expect(last_response.body).to include "User-agent: *\nDisallow:"
|
41
37
|
end
|
42
38
|
|
43
|
-
|
44
|
-
get '/songs/song-number-1/band'
|
45
|
-
last_response.body.should =~ /Song #1/
|
46
|
-
last_response.body.should =~ /Leader: Eddie/
|
47
|
-
end
|
39
|
+
describe 'redirection' do
|
48
40
|
|
49
|
-
|
50
|
-
get '/en'
|
51
|
-
last_response.body.should =~ /Powered by/
|
52
|
-
get '/fr'
|
53
|
-
last_response.body.should =~ /Propulsé par/
|
54
|
-
get '/nb'
|
55
|
-
last_response.body.should_not =~ /Powered by/
|
56
|
-
end
|
41
|
+
let(:url) { '/store' }
|
57
42
|
|
58
|
-
|
59
|
-
get '/'
|
60
|
-
last_response.body.should =~ /scoped_translation=.French./
|
61
|
-
end
|
43
|
+
subject { get url; last_response }
|
62
44
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
end
|
45
|
+
it 'redirects to another site' do
|
46
|
+
expect(subject.status).to eq(301)
|
47
|
+
expect(subject.location).to eq('http://www.apple.com/en/itunes/')
|
48
|
+
end
|
68
49
|
|
69
|
-
|
70
|
-
get '/all'
|
71
|
-
last_response.body.should =~ /Home page/
|
72
|
-
last_response.body.should =~ /<li>Home page<\/li>/
|
73
|
-
last_response.body.should =~ /<li>John-doe<\/li>/
|
74
|
-
last_response.body.should =~ /<li>Songs<\/li>/
|
75
|
-
last_response.body.should =~ /<li>A song template<\/li>/
|
76
|
-
end
|
50
|
+
context 'localized page' do
|
77
51
|
|
78
|
-
|
52
|
+
let(:url) { '/fr/magasin' }
|
79
53
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
54
|
+
it 'redirects to another site' do
|
55
|
+
expect(subject.status).to eq(301)
|
56
|
+
expect(subject.location).to eq('http://www.apple.com/fr/itunes/')
|
57
|
+
end
|
84
58
|
|
85
|
-
it 'includes a snippet whose name is composed of dash' do
|
86
|
-
get '/'
|
87
|
-
last_response.body.should =~ /<p>A complicated one name indeed.<\/p>/
|
88
59
|
end
|
89
60
|
|
90
61
|
end
|
91
62
|
|
92
|
-
describe '
|
93
|
-
|
94
|
-
subject { get '/all'; last_response.body }
|
95
|
-
|
96
|
-
it { should_not match(/<nav id="nav">/) }
|
63
|
+
describe 'page not found' do
|
97
64
|
|
98
|
-
it
|
65
|
+
it 'shows the 404 page' do
|
66
|
+
get '/void'
|
67
|
+
expect(last_response.status).to eq(404)
|
68
|
+
expect(last_response.body).to include 'page not found'
|
69
|
+
end
|
99
70
|
|
100
|
-
it
|
71
|
+
it 'shows the 404 page with a 404 status code when its called explicitly' do
|
72
|
+
get '/404'
|
73
|
+
expect(last_response.status).to eq(404)
|
74
|
+
expect(last_response.body).to include 'page not found'
|
75
|
+
end
|
101
76
|
|
102
|
-
|
77
|
+
end
|
103
78
|
|
104
|
-
|
79
|
+
describe 'seo trailing slash' do
|
105
80
|
|
106
|
-
|
81
|
+
let(:url) { '/events/' }
|
82
|
+
subject { get url; last_response }
|
107
83
|
|
108
|
-
|
84
|
+
it 'redirects to the url without the trailing slash' do
|
85
|
+
expect(subject.status).to eq(301)
|
86
|
+
expect(subject.location).to eq('/events')
|
87
|
+
end
|
109
88
|
|
110
|
-
|
89
|
+
end
|
111
90
|
|
112
|
-
|
91
|
+
describe 'snippets' do
|
113
92
|
|
93
|
+
it 'includes a basic snippet' do
|
94
|
+
get '/'
|
95
|
+
expect(last_response.body).to include 'All photos are licensed under Creative Commons.'
|
114
96
|
end
|
115
97
|
|
116
|
-
|
98
|
+
it 'includes a snippet whose name is composed of dash' do
|
99
|
+
get '/'
|
100
|
+
expect(last_response.body).to include '<p>A complicated one name indeed.</p>'
|
101
|
+
end
|
117
102
|
|
118
|
-
|
103
|
+
end
|
119
104
|
|
120
|
-
|
105
|
+
describe 'templatized page' do
|
121
106
|
|
107
|
+
it 'shows a content type template' do
|
108
|
+
get '/songs/song-number-1'
|
109
|
+
expect(last_response.body).to include 'another version'
|
122
110
|
end
|
123
111
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
112
|
+
it 'renders a page under a templatized one' do
|
113
|
+
get '/songs/song-number-2/band'
|
114
|
+
expect(last_response.body).to include 'Song #2'
|
115
|
+
expect(last_response.body).to include 'Leader: Eddie'
|
116
|
+
end
|
128
117
|
|
129
|
-
it
|
130
|
-
|
131
|
-
|
118
|
+
it 'redirects to the 404 if it does not match a content entry' do
|
119
|
+
get '/songs/unknown'
|
120
|
+
expect(last_response).to be_redirect
|
121
|
+
follow_redirect!
|
122
|
+
expect(last_response.status).to eq(404)
|
123
|
+
end
|
132
124
|
|
133
|
-
describe 'pages with_scope', pending: true do
|
134
|
-
subject { get '/unlisted_pages'; last_response.body }
|
135
|
-
it { subject.should match(/Page to test the nav tag/)}
|
136
|
-
it { should_not match(/About Us/)}
|
137
125
|
end
|
138
126
|
|
139
|
-
describe '
|
140
|
-
|
141
|
-
subject { get '/all'; last_response.body }
|
127
|
+
describe 'translations' do
|
142
128
|
|
143
|
-
it
|
129
|
+
it 'translates strings' do
|
130
|
+
get '/'
|
131
|
+
expect(last_response.body).to include 'Powered by'
|
132
|
+
get '/fr'
|
133
|
+
expect(last_response.body).to include 'Propulsé par'
|
134
|
+
end
|
144
135
|
|
145
|
-
it
|
136
|
+
it 'provides translation in scopes' do
|
137
|
+
get '/'
|
138
|
+
expect(last_response.body).to match /scoped_translation=.French./
|
139
|
+
end
|
146
140
|
|
147
|
-
it
|
141
|
+
it 'translates a page with link_to tags inside' do
|
142
|
+
get '/fr/notre-musique'
|
143
|
+
expect(last_response.body).to include '<h3><a href="/fr/songs/song-number-8">Song #8</a></h3>'
|
144
|
+
expect(last_response.body).to include 'Propulsé par'
|
145
|
+
end
|
148
146
|
|
149
147
|
end
|
150
148
|
|
151
|
-
describe '
|
149
|
+
describe 'contents with_scope' do
|
152
150
|
|
153
|
-
subject { get '/
|
151
|
+
subject { get '/grunge-bands'; last_response.body }
|
154
152
|
|
155
|
-
it
|
156
|
-
|
153
|
+
it 'filters content entries' do
|
154
|
+
is_expected.to include 'Layne'
|
155
|
+
is_expected.not_to include 'Peter'
|
156
|
+
end
|
157
157
|
|
158
|
-
|
158
|
+
end
|
159
159
|
|
160
|
-
|
160
|
+
describe 'pages with_scope' do
|
161
161
|
|
162
|
-
|
163
|
-
it { should match(/You've already participated to that contest ! Come back later./) }
|
162
|
+
subject { get '/unlisted-pages'; last_response.body }
|
164
163
|
|
165
|
-
|
164
|
+
it { is_expected.to include 'Page to test the nav tag' }
|
165
|
+
it { is_expected.not_to include 'About Us' }
|
166
166
|
|
167
167
|
end
|
168
168
|
|