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,347 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::ContentEntryRepository do
|
6
|
+
|
7
|
+
let(:type) { build_content_type('Articles', label_field_name: :title, localized_names: [:title], fields_by_name: { title: instance_double('Field', name: :title, type: :string) }) }
|
8
|
+
let(:entries) { [{ content_type_id: 1, _position: 0, _label: 'Update #1', title: { fr: 'Mise a jour #1' }, text: { en: 'added some free stuff', fr: 'phrase FR' }, date: '2009/05/12', category: 'General' }] }
|
9
|
+
let(:locale) { :en }
|
10
|
+
let(:site) { instance_double('Site', _id: 1, default_locale: :en, locales: %i(en fr)) }
|
11
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
12
|
+
|
13
|
+
let(:content_type_repository) { instance_double('ContentTypeRepository') }
|
14
|
+
let(:repository) { described_class.new(adapter, site, locale, content_type_repository) }
|
15
|
+
|
16
|
+
before do
|
17
|
+
allow(adapter).to receive(:collection).and_return(entries)
|
18
|
+
adapter.cache = NoCacheStore.new
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#all' do
|
22
|
+
|
23
|
+
let(:conditions) { nil }
|
24
|
+
|
25
|
+
subject { repository.with(type).all(conditions) }
|
26
|
+
|
27
|
+
it { expect(subject.size).to eq 1 }
|
28
|
+
|
29
|
+
describe 'first element' do
|
30
|
+
|
31
|
+
subject { repository.with(type).all(conditions).first }
|
32
|
+
|
33
|
+
it { expect(subject.class).to eq Locomotive::Steam::ContentEntry }
|
34
|
+
it { expect(subject._label.translations).to eq('en' => 'Update #1', 'fr' => 'Mise a jour #1') }
|
35
|
+
it { expect(subject._slug.translations).to eq('en' => 'update-number-1', 'fr' => 'mise-a-jour-number-1') }
|
36
|
+
it { expect(subject.title.translations).to eq('en' => 'Update #1', 'fr' => 'Mise a jour #1') }
|
37
|
+
it { expect(subject.content_type).to eq type }
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
describe '#build' do
|
44
|
+
|
45
|
+
let(:attributes) { { title: 'Hello world' } }
|
46
|
+
subject { repository.with(type).build(attributes) }
|
47
|
+
|
48
|
+
it { expect(subject.title[:en]).to eq 'Hello world' }
|
49
|
+
it { expect(subject.content_type).to eq type }
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
describe '#exists?' do
|
54
|
+
|
55
|
+
let(:conditions) { {} }
|
56
|
+
subject { repository.with(type).exists?(conditions) }
|
57
|
+
|
58
|
+
it { expect(subject).to eq true }
|
59
|
+
|
60
|
+
context 'more specific conditions' do
|
61
|
+
|
62
|
+
let(:conditions) { { '_slug' => 'update-number-1' } }
|
63
|
+
it { expect(subject).to eq true }
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'conditions which do match any entries' do
|
68
|
+
|
69
|
+
let(:conditions) { { '_slug' => 'foo' } }
|
70
|
+
it { expect(subject).to eq false }
|
71
|
+
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
|
76
|
+
describe '#by_slug' do
|
77
|
+
|
78
|
+
let(:slug) { nil }
|
79
|
+
subject { repository.with(type).by_slug(slug) }
|
80
|
+
|
81
|
+
it { is_expected.to eq nil }
|
82
|
+
|
83
|
+
context 'existing slug' do
|
84
|
+
let(:slug) { 'update-number-1' }
|
85
|
+
it { expect(subject.title.translations).to eq('en' => 'Update #1', 'fr' => 'Mise a jour #1') }
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
describe '#value_for' do
|
91
|
+
|
92
|
+
let(:entry) { nil }
|
93
|
+
let(:conditions) { {} }
|
94
|
+
let(:name) { :title }
|
95
|
+
subject { repository.with(type).value_for(entry, name, conditions) }
|
96
|
+
|
97
|
+
it { is_expected.to eq nil }
|
98
|
+
|
99
|
+
context 'existing entry' do
|
100
|
+
let(:entry) { instance_double('Entry', title: 'Hello world') }
|
101
|
+
it { is_expected.to eq 'Hello world' }
|
102
|
+
|
103
|
+
context 'unknown field' do
|
104
|
+
let(:name) { :authors }
|
105
|
+
it { is_expected.to eq nil }
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
context 'with a has_many field' do
|
110
|
+
let(:type) { build_content_type('Articles', label_field_name: :title, localized_names: [:title], fields_by_name: { articles: instance_double('Field', type: :has_many) }) }
|
111
|
+
let(:proxy_repository) { repository.dup }
|
112
|
+
let(:entry) { instance_double('Entry', articles: proxy_repository) }
|
113
|
+
let(:name) { :articles }
|
114
|
+
let(:conditions) { { published: true } }
|
115
|
+
|
116
|
+
it 'does not modify the local conditions of the initial proxy repository' do
|
117
|
+
expect(subject.local_conditions).to eq(content_type_id: 1, published: true)
|
118
|
+
expect(proxy_repository.local_conditions).to eq(content_type_id: 1)
|
119
|
+
end
|
120
|
+
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
describe '#next' do
|
126
|
+
|
127
|
+
let(:type) { build_content_type('Articles', order_by: { _position: 'asc' }, label_field_name: :title, localized_names: [:title], fields_by_name: { title: instance_double('Field', name: :title, type: :string) }) }
|
128
|
+
let(:entries) do
|
129
|
+
[
|
130
|
+
{ content_type_id: 1, _position: 0, _label: 'Update #1', title: { fr: 'Mise a jour #1' }, text: { en: 'added some free stuff', fr: 'phrase FR' }, date: '2009/05/12', category: 'General' },
|
131
|
+
{ content_type_id: 1, _position: 1, _label: 'Update #2', title: { fr: 'Mise a jour #2' }, text: { en: 'bla bla', fr: 'blabbla' }, date: '2009/05/12', category: 'General' },
|
132
|
+
{ content_type_id: 1, _position: 2, _label: 'Update #3', title: { fr: 'Mise a jour #2' }, text: { en: 'bla bla', fr: 'blabbla' }, date: '2009/05/12', category: 'General' }
|
133
|
+
]
|
134
|
+
end
|
135
|
+
|
136
|
+
let(:entry) { nil }
|
137
|
+
subject { repository.next(entry) }
|
138
|
+
|
139
|
+
it { is_expected.to eq nil }
|
140
|
+
|
141
|
+
context 'being last' do
|
142
|
+
|
143
|
+
let(:entry) { instance_double('Entry', content_type: type, _position: 2) }
|
144
|
+
it { is_expected.to eq nil }
|
145
|
+
|
146
|
+
end
|
147
|
+
|
148
|
+
context 'being middle' do
|
149
|
+
|
150
|
+
let(:entry) { instance_double('Entry', content_type: type, _position: 1) }
|
151
|
+
it { expect(subject._position).to eq 2 }
|
152
|
+
|
153
|
+
end
|
154
|
+
|
155
|
+
end
|
156
|
+
|
157
|
+
describe '#previous' do
|
158
|
+
|
159
|
+
let(:type) { build_content_type('Articles', order_by: { _position: 'asc' }, label_field_name: :title, localized_names: [:title], fields_by_name: { title: instance_double('Field', name: :title, type: :string) }) }
|
160
|
+
let(:entries) do
|
161
|
+
[
|
162
|
+
{ content_type_id: 1, _position: 0, _label: 'Update #1', title: { fr: 'Mise a jour #1' }, text: { en: 'added some free stuff', fr: 'phrase FR' }, date: '2009/05/12', category: 'General' },
|
163
|
+
{ content_type_id: 1, _position: 1, _label: 'Update #2', title: { fr: 'Mise a jour #2' }, text: { en: 'bla bla', fr: 'blabbla' }, date: '2009/05/12', category: 'General' },
|
164
|
+
{ content_type_id: 1, _position: 2, _label: 'Update #3', title: { fr: 'Mise a jour #2' }, text: { en: 'bla bla', fr: 'blabbla' }, date: '2009/05/12', category: 'General' }
|
165
|
+
]
|
166
|
+
end
|
167
|
+
|
168
|
+
let(:entry) { nil }
|
169
|
+
subject { repository.previous(entry) }
|
170
|
+
|
171
|
+
it { is_expected.to eq nil }
|
172
|
+
|
173
|
+
context 'being first' do
|
174
|
+
|
175
|
+
let(:entry) { instance_double('Entry', content_type: type, _position: 0) }
|
176
|
+
it { is_expected.to eq nil }
|
177
|
+
|
178
|
+
end
|
179
|
+
|
180
|
+
context 'being middle' do
|
181
|
+
|
182
|
+
let(:entry) { instance_double('Entry', content_type: type, _position: 1) }
|
183
|
+
it { expect(subject._position).to eq 0 }
|
184
|
+
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
188
|
+
|
189
|
+
describe '#group_by_select_option' do
|
190
|
+
|
191
|
+
let(:type) { nil }
|
192
|
+
let(:name) { nil }
|
193
|
+
|
194
|
+
subject { repository.with(type).group_by_select_option(name) }
|
195
|
+
|
196
|
+
it { is_expected.to eq({}) }
|
197
|
+
|
198
|
+
context 'select field' do
|
199
|
+
|
200
|
+
let(:fields) do
|
201
|
+
{
|
202
|
+
title: instance_double('TitleField', name: :title, type: :string),
|
203
|
+
category: instance_double('SelectField', name: :category, type: :select, select_options: { en: ['cooking', 'bread'], fr: ['cuisine', 'pain'] })
|
204
|
+
}
|
205
|
+
end
|
206
|
+
let(:type) { build_content_type('Articles', order_by: '_position asc', label_field_name: :title, localized_names: [:title, :category], fields_by_name: fields) }
|
207
|
+
let(:name) { :category }
|
208
|
+
|
209
|
+
let(:options) {
|
210
|
+
[
|
211
|
+
instance_double('SelectOption1', name: 'cooking'),
|
212
|
+
instance_double('SelectOption2', name: 'wine'),
|
213
|
+
instance_double('SelectOption3', name: 'bread')
|
214
|
+
]
|
215
|
+
}
|
216
|
+
|
217
|
+
let(:entries) do
|
218
|
+
[
|
219
|
+
{ content_type_id: 1, _position: 0, _label: 'Recipe #1', category_id: 'cooking' },
|
220
|
+
{ content_type_id: 1, _position: 1, _label: 'Recipe #2', category_id: 'bread' },
|
221
|
+
{ content_type_id: 1, _position: 2, _label: 'Recipe #3', category_id: 'bread' },
|
222
|
+
{ content_type_id: 1, _position: 3, _label: 'Recipe #4', category_id: 'unknown' }
|
223
|
+
]
|
224
|
+
end
|
225
|
+
|
226
|
+
before {
|
227
|
+
allow(content_type_repository).to receive(:select_options).and_return(options)
|
228
|
+
%w(cooking wine bread).each_with_index do |name, i|
|
229
|
+
allow(fields[:category].select_options).to receive(:find).with(name).and_return(options.at(i))
|
230
|
+
end
|
231
|
+
allow(fields[:category].select_options).to receive(:find).with('unknown').and_return(nil)
|
232
|
+
}
|
233
|
+
|
234
|
+
it { expect(subject.size).to eq 4 }
|
235
|
+
it { expect(subject.map { |h| h[:name] }).to eq ['cooking', 'wine', 'bread', nil] }
|
236
|
+
it { expect(subject.map { |h| h[:entries].size }).to eq [1, 0, 2, 1] }
|
237
|
+
|
238
|
+
end
|
239
|
+
|
240
|
+
end
|
241
|
+
|
242
|
+
describe 'belongs_to' do
|
243
|
+
|
244
|
+
let(:field) { instance_double('Field', name: :author, type: :belongs_to, association_options: { target_id: 2 }) }
|
245
|
+
let(:type) { build_content_type('Articles', label_field_name: :title, associations: [field]) }
|
246
|
+
let(:entries) { [{ content_type_id: 1, title: 'Hello world', author_id: 'john-doe' }] }
|
247
|
+
let(:other_type) { build_content_type('Authors', _id: 2, label_field_name: :name, fields_by_name: { name: instance_double('Field', name: :name, type: :string) }) }
|
248
|
+
let(:other_entries) { [{ content_type_id: 2, _id: 'john-doe', name: 'John Doe' }] }
|
249
|
+
|
250
|
+
let(:type_repository) { instance_double('ContentTypeRepository') }
|
251
|
+
|
252
|
+
before do
|
253
|
+
allow(type).to receive(:fields).and_return(type_repository)
|
254
|
+
allow(content_type_repository).to receive(:find).with(2).and_return(other_type)
|
255
|
+
end
|
256
|
+
|
257
|
+
subject { repository.with(type).by_slug('hello-world') }
|
258
|
+
|
259
|
+
it { expect(subject.author.class).to eq Locomotive::Steam::Models::BelongsToAssociation }
|
260
|
+
|
261
|
+
it 'calls the new repository to fetch the target entity' do
|
262
|
+
author = subject.author
|
263
|
+
allow(adapter).to receive(:collection).and_return(other_entries)
|
264
|
+
expect(author.name).to eq 'John Doe'
|
265
|
+
end
|
266
|
+
|
267
|
+
end
|
268
|
+
|
269
|
+
describe 'has_many' do
|
270
|
+
|
271
|
+
let(:field) { instance_double('Field', name: :articles, type: :has_many, association_options: { target_id: 2, inverse_of: :author, order_by: 'position_in_author' }) }
|
272
|
+
let(:type) { build_content_type('Authors', label_field_name: :name, associations: [field]) }
|
273
|
+
let(:entries) { [{ content_type_id: 1, _id: 'john-doe', name: 'John Doe' }] }
|
274
|
+
let(:other_type) { build_content_type('Articles', _id: 2, label_field_name: :title, fields_by_name: { name: instance_double('Field', name: :title, type: :string) }) }
|
275
|
+
let(:other_entries) {
|
276
|
+
[
|
277
|
+
{ content_type_id: 2, _id: 'hello-world', title: 'Hello world', author_id: 'john-doe', position_in_author: 2 },
|
278
|
+
{ content_type_id: 2, _id: 'lorem-ipsum', title: 'Lorem ipsum', author_id: 'john-doe', position_in_author: 1 },
|
279
|
+
{ content_type_id: 2, _id: 'lost', title: 'Lost', author_id: 'jane-doe' },
|
280
|
+
]
|
281
|
+
}
|
282
|
+
|
283
|
+
let(:type_repository) { instance_double('ContentTypeRepository') }
|
284
|
+
|
285
|
+
before do
|
286
|
+
allow(type).to receive(:fields).and_return(type_repository)
|
287
|
+
allow(content_type_repository).to receive(:find).with(2).and_return(other_type)
|
288
|
+
end
|
289
|
+
|
290
|
+
subject { repository.with(type).by_slug('john-doe') }
|
291
|
+
|
292
|
+
it { expect(subject.articles.class).to eq Locomotive::Steam::Models::HasManyAssociation }
|
293
|
+
|
294
|
+
it 'calls the new repository to fetch the target entities' do
|
295
|
+
articles = subject.articles
|
296
|
+
allow(adapter).to receive(:collection).and_return(other_entries)
|
297
|
+
expect(articles.all.map(&:title)).to eq ['Lorem ipsum', 'Hello world']
|
298
|
+
end
|
299
|
+
|
300
|
+
end
|
301
|
+
|
302
|
+
describe 'many_to_many' do
|
303
|
+
|
304
|
+
let(:field) { instance_double('Field', name: :articles, type: :many_to_many, association_options: { target_id: 2, inverse_of: :authors }) }
|
305
|
+
let(:type) { build_content_type('Authors', label_field_name: :name, associations: [field]) }
|
306
|
+
let(:entries) { [{ content_type_id: 1, _id: 1, name: 'John Doe', article_ids: ['hello-world', 'lorem-ipsum'] }] }
|
307
|
+
let(:other_type) { build_content_type('Articles', _id: 2, label_field_name: :title, fields_by_name: { name: instance_double('Field', name: :title, type: :string) }) }
|
308
|
+
let(:other_entries) {
|
309
|
+
[
|
310
|
+
{ content_type_id: 2, _id: 'hello-world', title: 'Hello world', author_id: 'john-doe', position_in_author: 2 },
|
311
|
+
{ content_type_id: 2, _id: 'lorem-ipsum', title: 'Lorem ipsum', author_id: 'john-doe', position_in_author: 1 },
|
312
|
+
{ content_type_id: 2, _id: 'lost', title: 'Lost', author_id: 'jane-doe' },
|
313
|
+
]
|
314
|
+
}
|
315
|
+
|
316
|
+
let(:type_repository) { instance_double('ContentTypeRepository') }
|
317
|
+
|
318
|
+
before do
|
319
|
+
allow(type).to receive(:fields).and_return(type_repository)
|
320
|
+
allow(content_type_repository).to receive(:find).with(2).and_return(other_type)
|
321
|
+
end
|
322
|
+
|
323
|
+
subject { repository.with(type).by_slug('john-doe') }
|
324
|
+
|
325
|
+
it { expect(subject.articles.class).to eq Locomotive::Steam::Models::ManyToManyAssociation }
|
326
|
+
|
327
|
+
it 'calls the new repository to fetch the target entities' do
|
328
|
+
articles = subject.articles
|
329
|
+
allow(adapter).to receive(:collection).and_return(other_entries)
|
330
|
+
expect(articles.all.map(&:title)).to eq ['Hello world', 'Lorem ipsum']
|
331
|
+
end
|
332
|
+
|
333
|
+
end
|
334
|
+
|
335
|
+
def build_content_type(name, attributes = {})
|
336
|
+
instance_double(name,
|
337
|
+
{
|
338
|
+
_id: 1,
|
339
|
+
slug: name.to_s.downcase,
|
340
|
+
order_by: nil,
|
341
|
+
localized_names: [],
|
342
|
+
associations: [],
|
343
|
+
fields_by_name: {}
|
344
|
+
}.merge(attributes))
|
345
|
+
end
|
346
|
+
|
347
|
+
end
|
@@ -0,0 +1,126 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require_relative '../../../lib/locomotive/steam/adapters/filesystem.rb'
|
4
|
+
|
5
|
+
describe Locomotive::Steam::ContentTypeRepository do
|
6
|
+
|
7
|
+
let(:fields) { [{ name: :title, hint: 'Title of the article', type: 'string' }, { name: :author, type: 'string', label: 'Fullname of the author' }] }
|
8
|
+
let(:types) { [{ slug: 'articles', name: 'Articles', entries_custom_fields: fields }] }
|
9
|
+
let(:locale) { :en }
|
10
|
+
let(:site) { instance_double('Site', _id: 1, default_locale: :en, locales: %i(en fr)) }
|
11
|
+
let(:adapter) { Locomotive::Steam::FilesystemAdapter.new(nil) }
|
12
|
+
let(:repository) { described_class.new(adapter, site, locale) }
|
13
|
+
|
14
|
+
before do
|
15
|
+
allow(adapter).to receive(:collection).and_return(types)
|
16
|
+
adapter.cache = NoCacheStore.new
|
17
|
+
end
|
18
|
+
|
19
|
+
describe '#all' do
|
20
|
+
|
21
|
+
subject { repository.all }
|
22
|
+
|
23
|
+
it { expect(subject.size).to eq 1 }
|
24
|
+
|
25
|
+
describe 'first element' do
|
26
|
+
|
27
|
+
subject { repository.all.first }
|
28
|
+
|
29
|
+
it { expect(subject.class).to eq Locomotive::Steam::ContentType }
|
30
|
+
it { expect(subject.fields.all.size).to eq 2 }
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
describe '#by_slug' do
|
37
|
+
|
38
|
+
let(:slug) { nil }
|
39
|
+
subject { repository.by_slug(slug) }
|
40
|
+
|
41
|
+
it { is_expected.to eq nil }
|
42
|
+
|
43
|
+
context 'existing content type' do
|
44
|
+
|
45
|
+
let(:slug) { 'articles' }
|
46
|
+
it { expect(subject.name).to eq 'Articles' }
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
context 'slug is already a content type' do
|
51
|
+
|
52
|
+
let(:slug) { instance_double('ContentType') }
|
53
|
+
it { is_expected.to eq slug }
|
54
|
+
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#fields_for' do
|
60
|
+
|
61
|
+
let(:type) { nil }
|
62
|
+
subject { repository.fields_for(type) }
|
63
|
+
|
64
|
+
it { is_expected.to eq nil }
|
65
|
+
|
66
|
+
context 'with fields' do
|
67
|
+
|
68
|
+
let(:type) { instance_double('ContentType', fields: [true]) }
|
69
|
+
it { is_expected.to eq([true]) }
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
describe '#look_for_unique_fields' do
|
76
|
+
|
77
|
+
let(:type) { nil }
|
78
|
+
subject { repository.look_for_unique_fields(type) }
|
79
|
+
|
80
|
+
it { is_expected.to eq nil }
|
81
|
+
|
82
|
+
context 'with fields' do
|
83
|
+
|
84
|
+
let(:field) { instance_double('Field', name: :title) }
|
85
|
+
let(:target) { instance_double('ContentTypeFieldRepository', unique: { title: field }) }
|
86
|
+
let(:type) { instance_double('ContentType', fields: target) }
|
87
|
+
|
88
|
+
it { expect(subject).to eq(title: field) }
|
89
|
+
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
93
|
+
|
94
|
+
describe '#select_options' do
|
95
|
+
|
96
|
+
let(:type) { repository.by_slug('articles') }
|
97
|
+
let(:name) { nil }
|
98
|
+
|
99
|
+
subject { repository.select_options(type, name) }
|
100
|
+
|
101
|
+
it { is_expected.to eq nil }
|
102
|
+
|
103
|
+
context 'a select field' do
|
104
|
+
|
105
|
+
let(:fields) do
|
106
|
+
[
|
107
|
+
{ name: 'title', hint: 'Title of the article', type: 'string' },
|
108
|
+
{ name: 'category', type: :select, select_options: [{ name: { en: 'cooking', fr: 'cuisine' }, position: 0 }, { name: { en: 'bread', fr: 'pain' }, position: 1 }] }
|
109
|
+
]
|
110
|
+
end
|
111
|
+
let(:name) { :category }
|
112
|
+
|
113
|
+
it { expect(subject.map { |o| o.name[:en] }).to eq %w(cooking bread) }
|
114
|
+
|
115
|
+
context 'not a select field' do
|
116
|
+
|
117
|
+
let(:name) { :title }
|
118
|
+
it { is_expected.to eq nil }
|
119
|
+
|
120
|
+
end
|
121
|
+
|
122
|
+
end
|
123
|
+
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|