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,125 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/condition.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::Adapters::Memory::Condition do
|
6
|
+
|
7
|
+
let(:title) { instance_double('Title', translations: { en: 'Awesome Site' }, :[] => 'Awesome Site') }
|
8
|
+
let(:entry) { instance_double('Site', { title: title, content: 'foo' }) }
|
9
|
+
let(:locale) { :en }
|
10
|
+
let(:field) { :title }
|
11
|
+
let(:operator) { :eq }
|
12
|
+
let(:name) { "#{field}.#{operator}"}
|
13
|
+
let(:value) { 'Awesome Site' }
|
14
|
+
|
15
|
+
subject { Locomotive::Steam::Adapters::Memory::Condition.new(name, value, locale) }
|
16
|
+
|
17
|
+
describe '#entry_value' do
|
18
|
+
context 'i18n' do
|
19
|
+
let(:name) { 'title.eq' }
|
20
|
+
let(:value) { 'Awesome Site' }
|
21
|
+
|
22
|
+
context 'single entry' do
|
23
|
+
specify('match') do
|
24
|
+
expect(subject.matches?(entry)).to eq true
|
25
|
+
end
|
26
|
+
|
27
|
+
specify('return value') do
|
28
|
+
expect(subject.send(:entry_value, entry)).to eq(value)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
context 'regular way' do
|
33
|
+
let(:name) { 'content.eq' }
|
34
|
+
let(:value) { 'foo' }
|
35
|
+
|
36
|
+
context 'single entry' do
|
37
|
+
specify('should be match') do
|
38
|
+
expect(subject.matches?(entry)).to eq true
|
39
|
+
end
|
40
|
+
|
41
|
+
specify('return value') do
|
42
|
+
expect(subject.send(:entry_value, entry)).to eq(value)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe '#decode_operator_and_field!' do
|
49
|
+
before { subject.send(:decode_operator_and_field!) }
|
50
|
+
|
51
|
+
context 'with normal value' do
|
52
|
+
specify('name should be left part of dot') { expect(subject.field).to eq(field) }
|
53
|
+
specify('operator should be right part of dot') { expect(subject.operator).to eq(operator) }
|
54
|
+
specify('right_operand should be value') { expect(subject.value).to eq(value) }
|
55
|
+
end
|
56
|
+
|
57
|
+
context 'with regex value' do
|
58
|
+
let(:value) { /^[a-z]$/ }
|
59
|
+
specify('operator should be matchtes') { expect(subject.operator).to eq(:matches) }
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe '#decode_operator_and_field!' do
|
64
|
+
context 'with unsupported operator' do
|
65
|
+
let(:name) { 'domains.unsupported' }
|
66
|
+
specify('should be throw Exception') do
|
67
|
+
expect do
|
68
|
+
subject.send(:decode_operator_and_field!)
|
69
|
+
end.to raise_error Locomotive::Steam::Adapters::Memory::Condition::UnsupportedOperator
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe '#adapt_operator!' do
|
75
|
+
let(:name) { 'domains.==' }
|
76
|
+
before do
|
77
|
+
subject.send(:decode_operator_and_field!)
|
78
|
+
subject.send(:adapt_operator!, value)
|
79
|
+
end
|
80
|
+
context 'with single value' do
|
81
|
+
let(:value) { 'sample.example.com' }
|
82
|
+
specify('operator should be :==') { expect(subject.operator).to eq(:==) }
|
83
|
+
end
|
84
|
+
context 'with array of values' do
|
85
|
+
let(:value) { ['sample.example.com'] }
|
86
|
+
specify('operator should be :in') { expect(subject.operator).to eq(:in) }
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe '#array_contains?' do
|
91
|
+
let(:source) { [1, 2, 3, 4] }
|
92
|
+
let(:target) { [1, 2, 3] }
|
93
|
+
context 'with target contains in source' do
|
94
|
+
specify('should be true') do
|
95
|
+
expect(subject.send(:array_contains?, source, target)).to eq true
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe '#value_in_right_operand?' do
|
101
|
+
context 'value contains in right operand' do
|
102
|
+
let(:value) { [1, 2, 3, 4] }
|
103
|
+
let(:right_operand) { [1, 2, 3] }
|
104
|
+
|
105
|
+
before do
|
106
|
+
allow(subject).to receive(:operator).and_return(operator)
|
107
|
+
allow(subject).to receive(:right_operand).and_return(right_operand)
|
108
|
+
end
|
109
|
+
|
110
|
+
context 'with operator :in' do
|
111
|
+
let(:operator) { :in }
|
112
|
+
specify('should return true') do
|
113
|
+
expect(subject.send(:value_is_in_entry_value?, value)).to eq true
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
context 'with other operator' do
|
118
|
+
let(:operator) { :nin }
|
119
|
+
specify('should not return true') do
|
120
|
+
expect(subject.send(:value_is_in_entry_value?, value)).to eq false
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/dataset.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::Adapters::Memory::Dataset do
|
6
|
+
|
7
|
+
let(:john) do
|
8
|
+
{
|
9
|
+
firstname: 'John',
|
10
|
+
lastname: 'Doe',
|
11
|
+
email: 'john@example.com',
|
12
|
+
age: 24
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
let(:jane) do
|
17
|
+
{
|
18
|
+
firstname: 'Jane',
|
19
|
+
lastname: 'Doe',
|
20
|
+
email: 'jane@example.com',
|
21
|
+
age: 20
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
let(:alex) do
|
26
|
+
{
|
27
|
+
firstname: 'Alex',
|
28
|
+
lastname: 'Turam',
|
29
|
+
email: 'alex@example.com',
|
30
|
+
age: 26
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
subject { Locomotive::Steam::Adapters::Memory::Dataset.new(:foo) } #(loader) }
|
35
|
+
|
36
|
+
before do
|
37
|
+
[john.to_hash, jane.to_hash, alex.to_hash].each do |record|
|
38
|
+
subject.insert record
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe '#all' do
|
43
|
+
it { expect(subject.all).to eq [john.to_hash, jane.to_hash, alex.to_hash] }
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#find' do
|
47
|
+
specify do
|
48
|
+
expect(subject.find(john[:_id])).to eq(john.to_hash)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe '#update' do
|
53
|
+
before do
|
54
|
+
subject.update(jane.to_hash.merge(lastname: 'birkin'))
|
55
|
+
end
|
56
|
+
|
57
|
+
specify do
|
58
|
+
expect(subject.find(jane[:_id]).fetch(:lastname)).to eq('birkin')
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe '#exists?' do
|
63
|
+
let(:dataset) { Locomotive::Steam::Adapters::Memory::Dataset.new(:dummy) }
|
64
|
+
before do
|
65
|
+
dataset.instance_variable_set('@records', { 1 => 'Record 1', 2 => 'Record 2' })
|
66
|
+
end
|
67
|
+
|
68
|
+
it { expect(dataset.exists?(2)).to eq true }
|
69
|
+
it { expect(dataset.exists?(3)).to eq false }
|
70
|
+
it { expect(dataset.exists?(nil)).to eq false }
|
71
|
+
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/order.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::Adapters::Memory::Order do
|
6
|
+
|
7
|
+
let(:order) { Locomotive::Steam::Adapters::Memory::Order.new(*input) }
|
8
|
+
|
9
|
+
describe '#list' do
|
10
|
+
|
11
|
+
subject { order.list }
|
12
|
+
|
13
|
+
let(:input) { nil }
|
14
|
+
it { is_expected.to eq [] }
|
15
|
+
|
16
|
+
context 'via a string' do
|
17
|
+
|
18
|
+
let(:input) { 'name DESC' }
|
19
|
+
it { is_expected.to eq [[:name, :desc]] }
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'via a hash with symbol directions' do
|
24
|
+
|
25
|
+
let(:input) { [{ name: :asc, date: :desc }] }
|
26
|
+
it { is_expected.to eq [[:name, :asc], [:date, :desc]] }
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
context 'via a string' do
|
31
|
+
|
32
|
+
let(:input) { 'name ASC, date DESC' }
|
33
|
+
it { is_expected.to eq [[:name, :asc], [:date, :desc]] }
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#apply_to' do
|
40
|
+
|
41
|
+
subject { order.apply_to(entry, :en) }
|
42
|
+
|
43
|
+
let(:input) { 'title asc, date desc' }
|
44
|
+
let(:entry) { instance_double('Entry', title: 'foo', date: Time.zone.now) }
|
45
|
+
it { expect(subject.map(&:class)).to eq([Locomotive::Steam::Adapters::Memory::Order::Asc, Locomotive::Steam::Adapters::Memory::Order::Desc]) }
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
describe 'sort' do
|
50
|
+
|
51
|
+
let(:array) {
|
52
|
+
[
|
53
|
+
instance_double('Entry1', id: 1, title: 'b', position: 1),
|
54
|
+
instance_double('Entry2', id: 2, title: 'b', position: 2),
|
55
|
+
instance_double('Entry3', id: 3, title: 'a', position: 3),
|
56
|
+
instance_double('Entry3', id: 4, title: 'c', position: 1)
|
57
|
+
]
|
58
|
+
}
|
59
|
+
let(:input) { 'title asc, position desc' }
|
60
|
+
|
61
|
+
subject { array.sort_by { |entry| order.apply_to(entry, :en) } }
|
62
|
+
|
63
|
+
it { expect(subject.map(&:id)).to eq([3, 2, 1, 4]) }
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/dataset.rb'
|
4
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/condition.rb'
|
5
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/order.rb'
|
6
|
+
require_relative '../../../../lib/locomotive/steam/adapters/memory/query.rb'
|
7
|
+
|
8
|
+
describe Locomotive::Steam::Adapters::Memory::Query do
|
9
|
+
|
10
|
+
let(:entry_1) { OpenStruct.new(name: 'foo', id: 1, attributes: { name: 'foo', id: 1 }) }
|
11
|
+
let(:entry_2) { OpenStruct.new(name: 'bar', id: 2, attributes: { name: 'bar', id: 2 }) }
|
12
|
+
let(:entry_3) { OpenStruct.new(name: 'zone', id: 3, attributes: { name: 'zone', id: 3 }) }
|
13
|
+
let(:records) { { 1 => entry_1, 2 => entry_2, 3 => entry_3 } }
|
14
|
+
let(:dataset) { Locomotive::Steam::Adapters::Memory::Dataset.new(:test) }
|
15
|
+
let(:locale) { :en }
|
16
|
+
|
17
|
+
let(:query) { Locomotive::Steam::Adapters::Memory::Query }
|
18
|
+
|
19
|
+
before { allow(dataset).to receive(:records).and_return(records) }
|
20
|
+
|
21
|
+
describe '#only' do
|
22
|
+
specify do
|
23
|
+
expect(
|
24
|
+
query.new(dataset, locale) do
|
25
|
+
only(:name)
|
26
|
+
end.all.map(&:name)
|
27
|
+
).to eq(['foo', 'bar', 'zone'])
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#limited' do
|
32
|
+
specify do
|
33
|
+
expect(
|
34
|
+
query.new(dataset, locale) do
|
35
|
+
limit(1)
|
36
|
+
end.all
|
37
|
+
).to eq([entry_1])
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#offset' do
|
42
|
+
specify do
|
43
|
+
expect(
|
44
|
+
query.new(dataset, locale) do
|
45
|
+
offset(1)
|
46
|
+
end.all.map(&:name)
|
47
|
+
).to eq(['bar', 'zone'])
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe '#order_by' do
|
52
|
+
|
53
|
+
context 'asc' do
|
54
|
+
specify do
|
55
|
+
expect(
|
56
|
+
query.new(dataset, locale) do
|
57
|
+
order_by('name asc')
|
58
|
+
end.all.map(&:name)
|
59
|
+
).to eq(['bar', 'foo', 'zone'])
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'desc' do
|
64
|
+
specify do
|
65
|
+
expect(
|
66
|
+
query.new(dataset, locale) do
|
67
|
+
order_by('name desc')
|
68
|
+
end.all.map(&:name)
|
69
|
+
).to eq(['zone', 'foo', 'bar'])
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe '#where' do
|
75
|
+
specify do
|
76
|
+
expect(
|
77
|
+
query.new(dataset, locale) do
|
78
|
+
where('name.eq' => 'foo').
|
79
|
+
where('id.lt' => 2)
|
80
|
+
end.all.map(&:name)
|
81
|
+
).to eq(['foo'])
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/memory.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::MemoryAdapter do
|
6
|
+
|
7
|
+
let(:collection) { [OpenStruct.new(name: 'Hello world')] }
|
8
|
+
let(:mapper) { instance_double('Mapper', name: :test) }
|
9
|
+
let(:scope) { instance_double('Scope', locale: nil) }
|
10
|
+
let(:adapter) { Locomotive::Steam::MemoryAdapter.new(collection) }
|
11
|
+
|
12
|
+
before { allow(mapper).to receive(:to_entity) { |arg| arg } }
|
13
|
+
|
14
|
+
describe '#all' do
|
15
|
+
|
16
|
+
subject { adapter.all(mapper, scope) }
|
17
|
+
it { expect(subject.size).to eq 1 }
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#query' do
|
22
|
+
|
23
|
+
let(:block) { -> (_) { where(name: 'Hello world') } }
|
24
|
+
subject { adapter.query(mapper, scope, &block) }
|
25
|
+
it { expect(subject.size).to eq 1 }
|
26
|
+
|
27
|
+
context 'another syntax' do
|
28
|
+
|
29
|
+
let(:block) { -> (_) { where(k(:name, :in) => ['Hello world']) } }
|
30
|
+
it { expect(subject.size).to eq 1 }
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require 'origin'
|
4
|
+
|
5
|
+
require_relative '../../../../lib/locomotive/steam/adapters/mongodb/origin.rb'
|
6
|
+
require_relative '../../../../lib/locomotive/steam/adapters/mongodb/query.rb'
|
7
|
+
|
8
|
+
describe Locomotive::Steam::Adapters::MongoDB::Query do
|
9
|
+
|
10
|
+
let(:site) { instance_double('Site', _id: 42) }
|
11
|
+
let(:scope) { instance_double('Scope', locale: :en, site: site) }
|
12
|
+
let(:localized_attributes) { [:title] }
|
13
|
+
let(:block) { nil }
|
14
|
+
|
15
|
+
let(:query) { Locomotive::Steam::Adapters::MongoDB::Query.new(scope, localized_attributes, &block) }
|
16
|
+
|
17
|
+
describe '#where' do
|
18
|
+
|
19
|
+
let(:criterion) { { fullpath: 'index' } }
|
20
|
+
|
21
|
+
context 'simple call' do
|
22
|
+
|
23
|
+
before { query.where(criterion) }
|
24
|
+
|
25
|
+
it { expect(query.criteria).to eq({ site_id: 42, fullpath: 'index' }) }
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
context 'chained' do
|
30
|
+
|
31
|
+
let(:another_criterion) { { published: true } }
|
32
|
+
|
33
|
+
before { query.where(criterion).where(another_criterion) }
|
34
|
+
|
35
|
+
it { expect(query.criteria).to eq({ site_id: 42, fullpath: 'index', published: true }) }
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#order_by' do
|
42
|
+
|
43
|
+
it { expect(query.order_by(title: :asc, published: :desc).sort).to eq [{title: :asc, published: :desc}] }
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'chaining where and order_by' do
|
48
|
+
|
49
|
+
before { query.where(published: true).order_by(title: :asc) }
|
50
|
+
|
51
|
+
it { expect(query.criteria).to eq({ site_id: 42, published: true }) }
|
52
|
+
it { expect(query.sort).to eq([{ title: :asc }]) }
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
describe '#to_origin' do
|
57
|
+
|
58
|
+
before { query.where(:title.in => %w(index)).only(:title, :published).order_by(title: :asc) }
|
59
|
+
|
60
|
+
subject { query.to_origin }
|
61
|
+
|
62
|
+
it { expect(subject.selector).to eq({ 'site_id' => 42, 'title.en' => { '$in' => %w(index) } }) }
|
63
|
+
it { expect(subject.options[:sort]).to eq({ 'title.en' => 1 }) }
|
64
|
+
it { expect(subject.options[:fields]).to eq({ 'title.en' => 1, 'published' => 1}) }
|
65
|
+
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|