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
@@ -1,6 +1,6 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../integration_helper'
|
2
2
|
|
3
|
-
describe 'ContactForm'
|
3
|
+
describe 'ContactForm' do
|
4
4
|
|
5
5
|
include Rack::Test::Methods
|
6
6
|
|
@@ -10,40 +10,49 @@ describe 'ContactForm', pending: true do
|
|
10
10
|
|
11
11
|
it 'renders the form' do
|
12
12
|
get '/contact'
|
13
|
-
last_response.body.
|
13
|
+
expect(last_response.body).to include '/entry_submissions/messages.json'
|
14
14
|
end
|
15
15
|
|
16
|
-
describe '
|
16
|
+
describe 'submit a new entry (old version)' do
|
17
17
|
|
18
|
+
let(:url) { '/entry_submissions/messages' }
|
18
19
|
let(:params) { {
|
19
20
|
'entry' => { 'name' => 'John', 'email' => 'j@doe.net', 'message' => 'Bla bla' },
|
20
21
|
'success_callback' => '/events',
|
21
22
|
'error_callback' => '/contact' } }
|
22
|
-
let(:response) { post_contact_form(params, false) }
|
23
|
+
let(:response) { post_contact_form(url, params, false) }
|
23
24
|
let(:status) { response.status }
|
24
25
|
|
25
26
|
describe 'with json request' do
|
26
27
|
|
27
|
-
let(:response) { post_contact_form(params, true) }
|
28
|
-
let(:entry) { JSON.parse(response.body)
|
28
|
+
let(:response) { post_contact_form(url, params, true) }
|
29
|
+
let(:entry) { JSON.parse(response.body) }
|
30
|
+
|
31
|
+
context 'unknown content type' do
|
32
|
+
|
33
|
+
let(:url) { '/entry_submissions/foo' }
|
34
|
+
|
35
|
+
it { expect { response }.to raise_error('Unknown content type "foo"') }
|
36
|
+
|
37
|
+
end
|
29
38
|
|
30
39
|
context 'when not valid' do
|
31
40
|
|
32
41
|
let(:params) { {} }
|
33
42
|
|
34
43
|
it 'returns an error status' do
|
35
|
-
response.status.
|
44
|
+
expect(response.status).to eq 422
|
36
45
|
end
|
37
46
|
|
38
47
|
describe 'errors' do
|
39
48
|
|
40
49
|
subject { entry['errors'] }
|
41
50
|
|
42
|
-
it
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
51
|
+
it 'lists all the errors' do
|
52
|
+
expect(subject['name']).to eq ["can't not be blank"]
|
53
|
+
expect(subject['email']).to eq ["can't not be blank"]
|
54
|
+
expect(subject['email']).to eq ["can't not be blank"]
|
55
|
+
end
|
47
56
|
|
48
57
|
end
|
49
58
|
|
@@ -52,7 +61,7 @@ describe 'ContactForm', pending: true do
|
|
52
61
|
context 'when valid' do
|
53
62
|
|
54
63
|
it 'returns a success status' do
|
55
|
-
response.status.
|
64
|
+
expect(response.status).to eq 200
|
56
65
|
end
|
57
66
|
|
58
67
|
end
|
@@ -66,25 +75,35 @@ describe 'ContactForm', pending: true do
|
|
66
75
|
let(:params) { { 'error_callback' => '/contact' } }
|
67
76
|
|
68
77
|
it 'returns a success status' do
|
69
|
-
response.status.
|
78
|
+
expect(response.status).to eq 200
|
70
79
|
end
|
71
80
|
|
72
81
|
it 'displays errors' do
|
73
|
-
response.body.to_s.
|
82
|
+
expect(response.body.to_s).to include "can't not be blank"
|
83
|
+
end
|
84
|
+
|
85
|
+
context 'redirects outside the site' do
|
86
|
+
|
87
|
+
let(:params) { { 'error_callback' => 'http://www.locomotivecms.com' } }
|
88
|
+
|
89
|
+
it 'returns a success status' do
|
90
|
+
expect(response.status).to eq 301
|
91
|
+
end
|
92
|
+
|
74
93
|
end
|
75
94
|
|
76
95
|
end
|
77
96
|
|
78
97
|
context 'when valid' do
|
79
98
|
|
80
|
-
let(:response) { post_contact_form(params, false, true) }
|
99
|
+
let(:response) { post_contact_form(url, params, false, true) }
|
81
100
|
|
82
101
|
it 'returns a success status' do
|
83
|
-
response.status.
|
102
|
+
expect(response.status).to eq 200
|
84
103
|
end
|
85
104
|
|
86
105
|
it 'displays a success message' do
|
87
|
-
response.body.
|
106
|
+
expect(response.body.to_s).to include 'Thank you John'
|
88
107
|
end
|
89
108
|
|
90
109
|
end
|
@@ -93,14 +112,66 @@ describe 'ContactForm', pending: true do
|
|
93
112
|
|
94
113
|
end
|
95
114
|
|
96
|
-
|
97
|
-
|
98
|
-
url
|
99
|
-
params
|
100
|
-
|
101
|
-
|
102
|
-
|
115
|
+
describe 'submit a new entry (new version)' do
|
116
|
+
|
117
|
+
let(:url) { '/events' }
|
118
|
+
let(:params) { {
|
119
|
+
'content_type_slug' => 'messages',
|
120
|
+
'entry' => { 'name' => 'John', 'email' => 'j@doe.net', 'message' => 'Bla bla' } } }
|
121
|
+
let(:response) { post_contact_form(url, params) }
|
122
|
+
let(:status) { response.status }
|
123
|
+
|
124
|
+
context 'when not valid' do
|
125
|
+
|
126
|
+
let(:params) { { 'content_type_slug' => 'messages' } }
|
127
|
+
|
128
|
+
it 'returns a success status' do
|
129
|
+
expect(response.status).to eq 200
|
130
|
+
end
|
131
|
+
|
132
|
+
it 'displays errors' do
|
133
|
+
expect(response.body.to_s).to include "can't not be blank"
|
134
|
+
end
|
135
|
+
|
103
136
|
end
|
137
|
+
|
138
|
+
context 'when valid' do
|
139
|
+
|
140
|
+
let(:response) { post_contact_form(url, params, false, true) }
|
141
|
+
|
142
|
+
it 'returns a success status' do
|
143
|
+
expect(response.status).to eq 200
|
144
|
+
end
|
145
|
+
|
146
|
+
it 'displays a success message' do
|
147
|
+
expect(response.body.to_s).to include 'Thank you John'
|
148
|
+
end
|
149
|
+
|
150
|
+
end
|
151
|
+
|
152
|
+
context 'in a different locale' do
|
153
|
+
|
154
|
+
let(:url) { '/fr/evenements' }
|
155
|
+
let(:response) { post_contact_form(url, params, false, true) }
|
156
|
+
|
157
|
+
it 'returns a success status' do
|
158
|
+
expect(response.status).to eq 200
|
159
|
+
end
|
160
|
+
|
161
|
+
end
|
162
|
+
|
163
|
+
end
|
164
|
+
|
165
|
+
def post_contact_form(url, params, json = false, follow_redirect = false)
|
166
|
+
if json
|
167
|
+
url += '.json'
|
168
|
+
params = params.symbolize_keys
|
169
|
+
end
|
170
|
+
|
171
|
+
post url, params
|
172
|
+
|
173
|
+
follow_redirect! if follow_redirect
|
174
|
+
|
104
175
|
last_response
|
105
176
|
end
|
106
177
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../integration_helper'
|
2
2
|
|
3
|
-
describe Locomotive::Steam::Server
|
3
|
+
describe Locomotive::Steam::Server do
|
4
4
|
|
5
5
|
include Rack::Test::Methods
|
6
6
|
|
@@ -8,80 +8,58 @@ describe Locomotive::Steam::Server, pending: true do
|
|
8
8
|
run_server
|
9
9
|
end
|
10
10
|
|
11
|
-
it
|
12
|
-
get '/songs/song-number-
|
13
|
-
last_response.body.
|
11
|
+
it 'converts {{ page.templatized? }} => true on templatized page' do
|
12
|
+
get '/songs/song-number-2'
|
13
|
+
expect(last_response.body).to include "templatized='true'"
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
16
|
+
it 'converts {{ page.templatized? }} => false on regular page' do
|
17
17
|
get '/index'
|
18
|
-
last_response.body.
|
18
|
+
expect(last_response.body).to include "templatized='false'"
|
19
19
|
end
|
20
20
|
|
21
|
-
it
|
21
|
+
it 'converts {{ page.listed? }} => true on listed page' do
|
22
22
|
get '/music'
|
23
|
-
last_response.body.
|
23
|
+
expect(last_response.body).to include "listed='true'"
|
24
24
|
end
|
25
25
|
|
26
26
|
it "provides an access to page's content_type collection" do
|
27
|
-
get '/songs/song-number-
|
28
|
-
last_response.body.
|
27
|
+
get '/songs/song-number-2'
|
28
|
+
expect(last_response.body).to include "content_type_size='8'"
|
29
29
|
end
|
30
30
|
|
31
|
-
it
|
32
|
-
get '/songs/song-number-
|
33
|
-
last_response.body.
|
31
|
+
it 'provides count alias on collections' do
|
32
|
+
get '/songs/song-number-2'
|
33
|
+
expect(last_response.body).to include "content_type_count='8'"
|
34
34
|
end
|
35
35
|
|
36
36
|
describe '.link_to' do
|
37
37
|
|
38
|
-
it
|
38
|
+
it 'writes a link to a page' do
|
39
39
|
get '/events'
|
40
|
-
last_response.body.
|
40
|
+
expect(last_response.body).to include 'Discover: <a href="/music">Music</a>'
|
41
41
|
end
|
42
42
|
|
43
43
|
it "writes a localized a link" do
|
44
44
|
get '/events'
|
45
|
-
last_response.body.
|
45
|
+
expect(last_response.body).to include 'Plus à notre sujet: <a href="/fr/a-notre-sujet">Qui sommes nous ?</a>'
|
46
46
|
end
|
47
47
|
|
48
48
|
it "writes a link to a page with a custom label" do
|
49
49
|
get '/events'
|
50
|
-
last_response.body.
|
50
|
+
expect(last_response.body).to include 'More about us: <a href="/about-us">Who are we ?</a>'
|
51
51
|
end
|
52
52
|
|
53
53
|
it "writes a link to a templatized page" do
|
54
54
|
get '/events'
|
55
|
-
last_response.body.
|
55
|
+
expect(last_response.body).to include '<a href="/songs/song-number-1">Song #1</a>'
|
56
56
|
end
|
57
57
|
|
58
58
|
it "writes a link to a templatized page with a different handle" do
|
59
59
|
get '/events'
|
60
|
-
last_response.body.
|
60
|
+
expect(last_response.body).to include '<a href="/songs/song-number-8">Song #8</a>'
|
61
61
|
end
|
62
62
|
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'scope & assigns' do
|
66
|
-
|
67
|
-
it "evaluates collection when called all inside of scope" do
|
68
|
-
get '/music'
|
69
|
-
last_response.body.should =~ /<p class=.scoped_song.>Song #3/
|
70
|
-
last_response.body.should =~ /<p class=.scoped_song_link.>\s+<a href=.\/songs\/song-number-3.>Song #3/m
|
71
|
-
end
|
72
|
-
|
73
|
-
it "size of evaluated unscoped collection equal to unevaluated one" do
|
74
|
-
get '/music'
|
75
|
-
last_response.body.should =~ /class=.collection_equality.>8=8/
|
76
|
-
end
|
77
|
-
|
78
|
-
end
|
79
|
-
|
80
|
-
describe 'html helpers' do
|
81
|
-
it 'bypass url for css resource' do
|
82
|
-
get '/'
|
83
|
-
last_response.body.should =~ /<link href=("|')http:\/\/fonts\.googleapis\.com\/css\?family=Open\+Sans:400,700("|')/
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
65
|
end
|
@@ -0,0 +1,49 @@
|
|
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 'nav' do
|
12
|
+
|
13
|
+
subject { get '/all'; last_response.body }
|
14
|
+
|
15
|
+
it 'generates the right nav' do
|
16
|
+
is_expected.not_to include('<nav id="nav">')
|
17
|
+
is_expected.to include('<li id="about-us-link" class="link first"><a href="/about-us">About Us</a></li>')
|
18
|
+
is_expected.to include('<li id="music-link" class="link"><a href="/music">Music</a></li>')
|
19
|
+
is_expected.to include('<li id="store-link" class="link"><a href="/store">Store</a></li>')
|
20
|
+
is_expected.to include('<li id="contact-link" class="link last"><a href="/contact">Contact Us</a></li>')
|
21
|
+
is_expected.not_to include('<li id="events-link" class="link"><a href="/events">Events</a></li>')
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'lists all the pages' do
|
25
|
+
is_expected.to include('Home page')
|
26
|
+
is_expected.not_to include('<li>Page not found</li>')
|
27
|
+
is_expected.to include('<li>Home page</li>')
|
28
|
+
is_expected.to include('<li>John doe</li>')
|
29
|
+
is_expected.to include('<li>A song template</li>')
|
30
|
+
end
|
31
|
+
|
32
|
+
describe 'with wrapper' do
|
33
|
+
|
34
|
+
subject { get '/tags/nav'; last_response.body }
|
35
|
+
|
36
|
+
it { is_expected.to include('<nav id="nav">') }
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'very deep' do
|
41
|
+
|
42
|
+
subject { get '/tags/nav-in-deep'; last_response.body }
|
43
|
+
|
44
|
+
it { is_expected.to include('<li id="john-doe-link" class="link first last">') }
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,33 @@
|
|
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 'session' do
|
12
|
+
|
13
|
+
subject { get '/contest'; last_response.body }
|
14
|
+
|
15
|
+
it 'displays code for the first time' do
|
16
|
+
is_expected.to include 'Your code is: HELLO WORLD'
|
17
|
+
is_expected.not_to include "You've already participated to that contest ! Come back later."
|
18
|
+
end
|
19
|
+
|
20
|
+
describe 'assign tag' do
|
21
|
+
|
22
|
+
subject { 2.times { get '/contest' }; last_response.body }
|
23
|
+
|
24
|
+
it 'does not display code if second time' do
|
25
|
+
is_expected.not_to include 'Your code is: HELLO WORLD'
|
26
|
+
is_expected.to include "You've already participated to that contest ! Come back later."
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,34 @@
|
|
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 'sitemap.xml' do
|
12
|
+
|
13
|
+
let(:now) { Time.use_zone('America/Chicago') { Time.zone.local(2015, 'mar', 25, 10, 0) } }
|
14
|
+
|
15
|
+
subject { Timecop.freeze(now) { get '/sitemap.xml' }; last_response.body }
|
16
|
+
|
17
|
+
before { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear }
|
18
|
+
|
19
|
+
it 'checks if it looks valid' do
|
20
|
+
expect(Nokogiri::XML(subject).errors.empty?).to eq true
|
21
|
+
expect(subject.scan(/<url>/).size).to eq 45
|
22
|
+
expect(subject).to match("<loc>http://example.org/songs/song-number-2/band</loc>")
|
23
|
+
expect(subject).to match((<<-EOF
|
24
|
+
<url>
|
25
|
+
<loc>http://example.org/fr/a-notre-sujet</loc>
|
26
|
+
<lastmod>2015-03-25</lastmod>
|
27
|
+
<priority>0.9</priority>
|
28
|
+
</url>
|
29
|
+
EOF
|
30
|
+
).strip)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../integration_helper'
|
2
2
|
|
3
|
-
describe 'Complex with_scope conditions'
|
3
|
+
describe 'Complex with_scope conditions' do
|
4
4
|
|
5
5
|
include Rack::Test::Methods
|
6
6
|
|
@@ -10,7 +10,33 @@ describe 'Complex with_scope conditions', pending: true do
|
|
10
10
|
|
11
11
|
it 'returns the right number of events' do
|
12
12
|
get '/filtered'
|
13
|
-
last_response.body.
|
13
|
+
expect(last_response.body).to include 'events=1'
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'returns the right number of bands' do
|
17
|
+
get '/filtered'
|
18
|
+
expect(last_response.body).to include 'bands=2'
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'returns the first band in the right order' do
|
22
|
+
get '/filtered'
|
23
|
+
expect(last_response.body).to include "first event=Browne's Market"
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'returns the right number of events' do
|
27
|
+
get '/filtered'
|
28
|
+
expect(last_response.body).to include 'events=1'
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'evaluates collection when called all inside of scope' do
|
32
|
+
get '/music'
|
33
|
+
expect(last_response.body).to include "<p class='scoped_song'>Song #3"
|
34
|
+
expect(last_response.body).to match /<p class='scoped_song_link'>\s+<a href='\/songs\/song-number-3'>Song #3<\/a>/m
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'size of evaluated unscoped collection equal to unevaluated one' do
|
38
|
+
get '/music'
|
39
|
+
expect(last_response.body).to include "class='collection_equality'>8=8"
|
14
40
|
end
|
15
41
|
|
16
42
|
end
|