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