spontaneous 0.2.0.beta1 → 0.2.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (335) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/.locat +42 -0
  4. data/.travis/gemfiles/Gemfile.empty +7 -0
  5. data/.travis.yml +18 -0
  6. data/Gemfile +12 -8
  7. data/LICENSE +1 -1
  8. data/Rakefile +15 -157
  9. data/Readme.markdown +1 -1
  10. data/application/css/core.css.scss +22 -146
  11. data/application/css/definitions.css.scss +7 -3
  12. data/application/css/dialogue.css.scss +26 -1
  13. data/application/css/editing.css.scss +70 -28
  14. data/application/css/font.css.scss +1 -1
  15. data/application/css/popover.css.scss +2 -0
  16. data/application/css/top.css.scss +231 -0
  17. data/application/js/add_alias_dialogue.js +1 -1
  18. data/application/js/add_home_dialogue.js +1 -1
  19. data/application/js/ajax.js +61 -31
  20. data/application/js/box.js +4 -4
  21. data/application/js/conflicted_field_dialogue.js +1 -1
  22. data/application/js/content.js +5 -5
  23. data/application/js/dom.js +5 -0
  24. data/application/js/edit_panel.js +1 -0
  25. data/application/js/editing.js +1 -1
  26. data/application/js/extensions.js +8 -0
  27. data/application/js/field/boolean.js +31 -0
  28. data/application/js/field/file.js +32 -4
  29. data/application/js/field/image.js +24 -9
  30. data/application/js/field/markdown.js +87 -59
  31. data/application/js/field/select.js +1 -1
  32. data/application/js/field/webvideo.js +6 -1
  33. data/application/js/init.js +2 -2
  34. data/application/js/jquery-selection-position.js +130 -0
  35. data/application/js/location.js +4 -25
  36. data/application/js/meta_view/user_admin.js +2 -2
  37. data/application/js/metadata.js +2 -2
  38. data/application/js/page_browser.js +1 -1
  39. data/application/js/panel/root_menu.js +0 -1
  40. data/application/js/popover.js +27 -12
  41. data/application/js/popover_view.js +20 -4
  42. data/application/js/preview.js +31 -16
  43. data/application/js/progress.js +22 -21
  44. data/application/js/publish.js +18 -7
  45. data/application/js/sharded_upload.js +9 -6
  46. data/application/js/spontaneous.js +3 -1
  47. data/application/js/top_bar.js +264 -173
  48. data/application/js/upload.js +12 -5
  49. data/application/js/upload_manager.js +4 -3
  50. data/application/js/user.js +1 -2
  51. data/application/js/views/box_view.js +1 -1
  52. data/application/js/views/page_view.js +16 -5
  53. data/application/js/views/piece_view.js +5 -4
  54. data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
  55. data/application/views/index.erb +6 -14
  56. data/application/views/login.erb +6 -25
  57. data/application/views/schema_modification_error.html.erb +3 -7
  58. data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
  59. data/db/migrations/20130813111009_increase_path_length.rb +14 -0
  60. data/gem-public_cert.pem +20 -0
  61. data/lib/spontaneous/asset/app_compiler.rb +44 -0
  62. data/lib/spontaneous/asset/environment.rb +225 -0
  63. data/lib/spontaneous/asset.rb +2 -67
  64. data/lib/spontaneous/box.rb +0 -1
  65. data/lib/spontaneous/capistrano/deploy.rb +2 -2
  66. data/lib/spontaneous/capistrano/sync.rb +1 -1
  67. data/lib/spontaneous/cli/init.rb +36 -13
  68. data/lib/spontaneous/cli/server.rb +0 -1
  69. data/lib/spontaneous/cli/site.rb +2 -1
  70. data/lib/spontaneous/cli.rb +3 -1
  71. data/lib/spontaneous/collections/entry_set.rb +4 -12
  72. data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
  73. data/lib/spontaneous/collections/prototype_set.rb +6 -5
  74. data/lib/spontaneous/crypt.rb +2 -2
  75. data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
  76. data/lib/spontaneous/data_mapper.rb +1 -1
  77. data/lib/spontaneous/errors.rb +6 -0
  78. data/lib/spontaneous/extensions/object_space.rb +6 -0
  79. data/lib/spontaneous/facet.rb +1 -0
  80. data/lib/spontaneous/field/base.rb +86 -13
  81. data/lib/spontaneous/field/boolean.rb +65 -0
  82. data/lib/spontaneous/field/file.rb +17 -6
  83. data/lib/spontaneous/field/html.rb +13 -0
  84. data/lib/spontaneous/field/image/size.rb +76 -0
  85. data/lib/spontaneous/field/image.rb +99 -414
  86. data/lib/spontaneous/field/tags.rb +36 -0
  87. data/lib/spontaneous/field/update.rb +1 -1
  88. data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
  89. data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
  90. data/lib/spontaneous/field/webvideo/vine.rb +94 -0
  91. data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
  92. data/lib/spontaneous/field/webvideo.rb +100 -250
  93. data/lib/spontaneous/field.rb +1 -1
  94. data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
  95. data/lib/spontaneous/generators/site/assets/README.md +20 -0
  96. data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
  97. data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
  98. data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
  99. data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
  100. data/lib/spontaneous/generators/site/public/README.md +12 -0
  101. data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
  102. data/lib/spontaneous/generators/site.rb +77 -35
  103. data/lib/spontaneous/layout.rb +6 -7
  104. data/lib/spontaneous/loader.rb +21 -13
  105. data/lib/spontaneous/media/file.rb +22 -9
  106. data/lib/spontaneous/media/image/attributes.rb +33 -0
  107. data/lib/spontaneous/media/image/format/gif.rb +4 -0
  108. data/lib/spontaneous/media/image/format/jpg.rb +17 -0
  109. data/lib/spontaneous/media/image/format/png.rb +4 -0
  110. data/lib/spontaneous/media/image/format/webp.rb +26 -0
  111. data/lib/spontaneous/media/image/format.rb +79 -0
  112. data/lib/spontaneous/media/image/optimizer.rb +69 -0
  113. data/lib/spontaneous/media/image/processor.rb +17 -0
  114. data/lib/spontaneous/media/image/renderable.rb +52 -0
  115. data/lib/spontaneous/media/image/skeptick.rb +70 -0
  116. data/lib/spontaneous/media/image.rb +50 -0
  117. data/lib/spontaneous/media/temp_file.rb +4 -0
  118. data/lib/spontaneous/media.rb +1 -0
  119. data/lib/spontaneous/model/core/aliases.rb +14 -8
  120. data/lib/spontaneous/model/core/boxes.rb +5 -2
  121. data/lib/spontaneous/model/core/entries.rb +4 -0
  122. data/lib/spontaneous/model/core/entry.rb +1 -0
  123. data/lib/spontaneous/model/core/fields.rb +5 -2
  124. data/lib/spontaneous/model/core/locks.rb +16 -0
  125. data/lib/spontaneous/model/core/media.rb +1 -15
  126. data/lib/spontaneous/model/core.rb +31 -1
  127. data/lib/spontaneous/model/page/controllers.rb +2 -2
  128. data/lib/spontaneous/model/page/formats.rb +1 -4
  129. data/lib/spontaneous/model/page/layouts.rb +6 -2
  130. data/lib/spontaneous/model/page/locks.rb +8 -2
  131. data/lib/spontaneous/model/page/page_tree.rb +2 -2
  132. data/lib/spontaneous/model/page/paths.rb +74 -9
  133. data/lib/spontaneous/model/page.rb +11 -3
  134. data/lib/spontaneous/model.rb +6 -6
  135. data/lib/spontaneous/output/context/render_cache.rb +23 -0
  136. data/lib/spontaneous/output/context.rb +56 -30
  137. data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
  138. data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
  139. data/lib/spontaneous/output/template/renderer.rb +17 -5
  140. data/lib/spontaneous/output.rb +0 -1
  141. data/lib/spontaneous/paths.rb +6 -2
  142. data/lib/spontaneous/permissions/access_key.rb +18 -0
  143. data/lib/spontaneous/permissions/user.rb +1 -1
  144. data/lib/spontaneous/permissions.rb +4 -1
  145. data/lib/spontaneous/plugins/application/state.rb +19 -12
  146. data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
  147. data/lib/spontaneous/published_revision.rb +7 -0
  148. data/lib/spontaneous/publishing/immediate.rb +43 -34
  149. data/lib/spontaneous/publishing/revision.rb +9 -6
  150. data/lib/spontaneous/rack/asset_server.rb +20 -0
  151. data/lib/spontaneous/rack/back/alias.rb +46 -0
  152. data/lib/spontaneous/rack/back/application_assets.rb +28 -0
  153. data/lib/spontaneous/rack/back/base.rb +34 -0
  154. data/lib/spontaneous/rack/back/changes.rb +19 -0
  155. data/lib/spontaneous/rack/back/content.rb +54 -0
  156. data/lib/spontaneous/rack/back/events.rb +38 -0
  157. data/lib/spontaneous/rack/back/field.rb +37 -0
  158. data/lib/spontaneous/rack/back/file.rb +118 -0
  159. data/lib/spontaneous/rack/back/helpers.rb +71 -0
  160. data/lib/spontaneous/rack/back/index.rb +16 -0
  161. data/lib/spontaneous/rack/back/login.rb +47 -0
  162. data/lib/spontaneous/rack/back/map.rb +24 -0
  163. data/lib/spontaneous/rack/back/page.rb +46 -0
  164. data/lib/spontaneous/rack/back/preview.rb +43 -0
  165. data/lib/spontaneous/rack/back/schema.rb +30 -0
  166. data/lib/spontaneous/rack/back/site.rb +25 -0
  167. data/lib/spontaneous/rack/back/site_assets.rb +13 -0
  168. data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
  169. data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
  170. data/lib/spontaneous/rack/back.rb +85 -764
  171. data/lib/spontaneous/rack/cacheable_file.rb +3 -3
  172. data/lib/spontaneous/rack/front.rb +16 -9
  173. data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
  174. data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
  175. data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
  176. data/lib/spontaneous/rack/middleware/scope.rb +60 -0
  177. data/lib/spontaneous/rack/middleware.rb +6 -0
  178. data/lib/spontaneous/rack/page_controller.rb +18 -5
  179. data/lib/spontaneous/rack/public.rb +17 -11
  180. data/lib/spontaneous/rack.rb +34 -24
  181. data/lib/spontaneous/revision.rb +29 -2
  182. data/lib/spontaneous/schema/uid.rb +4 -3
  183. data/lib/spontaneous/schema/uid_map.rb +5 -24
  184. data/lib/spontaneous/schema.rb +1 -0
  185. data/lib/spontaneous/search/database.rb +8 -0
  186. data/lib/spontaneous/search/field.rb +1 -1
  187. data/lib/spontaneous/search/index.rb +3 -5
  188. data/lib/spontaneous/server.rb +1 -1
  189. data/lib/spontaneous/simultaneous.rb +1 -1
  190. data/lib/spontaneous/site/features.rb +4 -5
  191. data/lib/spontaneous/site/helpers.rb +22 -5
  192. data/lib/spontaneous/site/instance.rb +2 -2
  193. data/lib/spontaneous/site/selectors.rb +22 -3
  194. data/lib/spontaneous/storage/cloud.rb +13 -9
  195. data/lib/spontaneous/storage/local.rb +11 -6
  196. data/lib/spontaneous/style.rb +40 -23
  197. data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
  198. data/lib/spontaneous/utils/smush_it.rb +1 -1
  199. data/lib/spontaneous/version.rb +1 -1
  200. data/lib/spontaneous.rb +35 -33
  201. data/spontaneous.gemspec +53 -787
  202. data/test/experimental/test_crypt.rb +56 -56
  203. data/test/experimental/test_features.rb +16 -27
  204. data/test/fixtures/assets/public1/css/data.css.scss +3 -0
  205. data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
  206. data/test/fixtures/assets/public1/css/import.css.scss +1 -0
  207. data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
  208. data/test/fixtures/assets/public1/js/a.js +1 -1
  209. data/test/fixtures/assets/public1/js/all.js +4 -0
  210. data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
  211. data/test/fixtures/assets/public1/x.js +1 -0
  212. data/test/fixtures/assets/public2/css/all.css +4 -0
  213. data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
  214. data/test/fixtures/assets/public2/i/y.png +0 -0
  215. data/test/fixtures/assets/public2/js/b.js +1 -1
  216. data/test/fixtures/assets/public2/js/c.js +1 -1
  217. data/test/fixtures/images/size.extended.webp +0 -0
  218. data/test/fixtures/images/size.lossless.webp +0 -0
  219. data/test/fixtures/images/size.lossy.webp +0 -0
  220. data/test/fixtures/schema/before.yml +4 -4
  221. data/test/fixtures/schema/schema.yml +1 -1
  222. data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
  223. data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
  224. data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
  225. data/test/functional/test_application.rb +108 -106
  226. data/test/functional/test_back.rb +924 -930
  227. data/test/functional/test_front.rb +285 -238
  228. data/test/functional/test_user_manager.rb +75 -100
  229. data/test/integration/test_installation.rb +1 -1
  230. data/test/support/matchers.rb +12 -0
  231. data/test/support/minitest.rb +121 -0
  232. data/test/support/rack.rb +45 -0
  233. data/test/support/test_start_finish.rb +103 -0
  234. data/test/test_helper.rb +21 -68
  235. data/test/test_integration_helper.rb +1 -3
  236. data/test/unit/test_alias.rb +432 -408
  237. data/test/unit/test_asset_bundler.rb +58 -58
  238. data/test/unit/test_assets.rb +485 -155
  239. data/test/unit/test_async.rb +16 -37
  240. data/test/unit/test_authentication.rb +425 -457
  241. data/test/unit/test_boxes.rb +191 -191
  242. data/test/unit/test_changesets.rb +244 -254
  243. data/test/unit/test_config.rb +128 -142
  244. data/test/unit/test_content.rb +313 -359
  245. data/test/unit/test_content_inheritance.rb +29 -30
  246. data/test/unit/test_datamapper.rb +1205 -1080
  247. data/test/unit/test_datamapper_content.rb +49 -51
  248. data/test/unit/test_extensions.rb +23 -23
  249. data/test/unit/test_fields.rb +1488 -1180
  250. data/test/unit/test_formats.rb +158 -158
  251. data/test/unit/test_generators.rb +98 -40
  252. data/test/unit/test_helpers.rb +73 -76
  253. data/test/unit/test_image_size.rb +53 -22
  254. data/test/unit/test_images.rb +164 -165
  255. data/test/unit/test_layouts.rb +133 -122
  256. data/test/unit/test_logger.rb +14 -17
  257. data/test/unit/test_media.rb +69 -84
  258. data/test/unit/test_modifications.rb +513 -525
  259. data/test/unit/test_page.rb +462 -361
  260. data/test/unit/test_permissions.rb +379 -364
  261. data/test/unit/test_piece.rb +67 -75
  262. data/test/unit/test_plugins.rb +82 -89
  263. data/test/unit/test_prototype_set.rb +215 -216
  264. data/test/unit/test_prototypes.rb +114 -124
  265. data/test/unit/test_publishing.rb +252 -289
  266. data/test/unit/test_render.rb +167 -115
  267. data/test/unit/test_revisions.rb +436 -444
  268. data/test/unit/test_schema.rb +339 -309
  269. data/test/unit/test_search.rb +577 -574
  270. data/test/unit/test_serialisation.rb +136 -147
  271. data/test/unit/test_site.rb +252 -227
  272. data/test/unit/test_skeptick.rb +130 -0
  273. data/test/unit/test_storage.rb +46 -40
  274. data/test/unit/test_structure.rb +57 -66
  275. data/test/unit/test_styles.rb +104 -104
  276. data/test/unit/test_templates.rb +72 -57
  277. data/test/unit/test_type_hierarchy.rb +15 -16
  278. data/test/unit/test_visibility.rb +239 -257
  279. metadata +455 -326
  280. data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
  281. data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
  282. data/application/js/vendor/JS.Class-2.1.5/README +0 -30
  283. data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
  284. data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
  285. data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
  286. data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
  287. data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
  288. data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
  289. data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
  290. data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
  291. data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
  292. data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
  293. data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
  294. data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
  295. data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
  296. data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
  297. data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
  298. data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
  299. data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
  300. data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
  301. data/application/js/vendor/jquery-1.6.2.min.js +0 -18
  302. data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
  303. data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
  304. data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
  305. data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
  306. data/bin/limit-upload +0 -5
  307. data/bin/unlimit-upload +0 -3
  308. data/lib/spontaneous/asset/file.rb +0 -25
  309. data/lib/spontaneous/asset/source.rb +0 -28
  310. data/lib/spontaneous/image_size.rb +0 -123
  311. data/lib/spontaneous/output/assets/compression.rb +0 -58
  312. data/lib/spontaneous/output/assets.rb +0 -32
  313. data/lib/spontaneous/rack/around_back.rb +0 -20
  314. data/lib/spontaneous/rack/around_front.rb +0 -27
  315. data/lib/spontaneous/rack/around_preview.rb +0 -22
  316. data/lib/spontaneous/rack/assets.rb +0 -126
  317. data/lib/spontaneous/rack/authentication.rb +0 -20
  318. data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
  319. data/lib/spontaneous/rack/helpers.rb +0 -52
  320. data/lib/spontaneous/rack/http.rb +0 -18
  321. data/lib/spontaneous/rack/media.rb +0 -30
  322. data/lib/spontaneous/rack/query_authentication.rb +0 -35
  323. data/lib/spontaneous/rack/reloader.rb +0 -45
  324. data/lib/spontaneous/rack/user_helpers.rb +0 -28
  325. /data/{README → application/js/field/markdown/text_command.js} +0 -0
  326. /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
  327. /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
  328. /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
  329. /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
  330. /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
  331. /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
  332. /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
  333. /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
  334. /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
  335. /data/{lib/spontaneous/generators/site/public/js/site.js → test/fixtures/templates/aliases/aa_alias.html.cut} +0 -0
@@ -4,61 +4,93 @@ require File.expand_path('../../test_helper', __FILE__)
4
4
 
5
5
  ENV['RACK_ENV'] = 'test'
6
6
 
7
+ describe "Front" do
8
+ include RackTestMethods
7
9
 
8
- class FrontTest < MiniTest::Spec
9
- include ::Rack::Test::Methods
10
-
11
- def self.site_root
12
- @site_root
13
- end
14
-
15
- def self.startup
16
- @site_root = Dir.mktmpdir
17
- FileUtils.cp_r(File.expand_path("../../fixtures/public/templates", __FILE__), @site_root)
10
+ start do
11
+ site_root = Dir.mktmpdir
12
+ FileUtils.cp_r(File.expand_path("../../fixtures/public/templates", __FILE__), site_root)
18
13
  Spontaneous::Output.write_compiled_scripts = true
19
- end
20
14
 
21
- def self.shutdown
22
- teardown_site(true)
23
- Spontaneous::Output.write_compiled_scripts = false
24
- end
25
15
 
26
- def setup
27
- @site = setup_site(self.class.site_root)
16
+ site = setup_site(site_root)
17
+ let(:site) { site }
18
+ S::Site.background_mode = :immediate
19
+ S::State.delete
20
+
28
21
  Site.background_mode = :immediate
29
22
  ::Content.delete
30
- end
31
23
 
32
- def teardown
33
- teardown_site(false)
34
- end
35
-
36
- def app
37
- Spontaneous::Rack::Front.application
38
- end
24
+ class ::SitePage < ::Page
25
+ layout :default
26
+ layout :dynamic
27
+ box :pages
39
28
 
40
- def root
41
- @root
42
- end
29
+ attr_accessor :status
30
+ end
43
31
 
44
- def about
45
- @about
32
+ class ::StaticPage < ::Page
33
+ layout :default
34
+ end
35
+ class ::SubPage < SitePage; end
36
+
37
+
38
+ root = ::SitePage.create
39
+ about = ::SitePage.create(:slug => "about", :uid => "about")
40
+ subpage = ::SubPage.create(:slug => "now", :uid => "now")
41
+ news = ::SitePage.create(:slug => "news", :uid => "news")
42
+ dynamic = ::SitePage.create(:slug => "dynamic", :uid => "dynamic")
43
+ static = ::StaticPage.create(:slug => "static", :uid => "static")
44
+ dynamic.layout = :dynamic
45
+ root.pages << about
46
+ root.pages << news
47
+ root.pages << dynamic
48
+ root.pages << static
49
+ about.pages << subpage
50
+ root.save
51
+
52
+ let(:root_id) { root.id }
53
+ let(:about_id) { about.id }
54
+ let(:subpage_id) { subpage.id }
55
+ let(:news_id) { news.id }
56
+ let(:dynamic_id) { dynamic.id }
57
+ let(:static_id) { static.id }
58
+
59
+ Content.delete_revision(1) rescue nil
60
+
61
+ Spontaneous.logger.silent! {
62
+ S::Site.publish_all
63
+ }
46
64
  end
47
65
 
48
- def news
49
- @news
66
+ finish do
67
+ Object.send(:remove_const, :SitePage) rescue nil
68
+ Object.send(:remove_const, :SubPage) rescue nil
69
+ Content.delete
70
+ S::State.delete
71
+ Content.delete_revision(1)
72
+ teardown_site(true)
73
+ Spontaneous::Output.write_compiled_scripts = false
50
74
  end
51
75
 
52
- def subpage
53
- @sub
54
- end
76
+ let(:root) { Content[root_id] }
77
+ let(:about) { Content[about_id] }
78
+ let(:subpage) { Content[subpage_id] }
79
+ let(:news) { Content[news_id] }
80
+ let(:dynamic) { Content[dynamic_id] }
81
+ let(:static) { Content[static_id] }
55
82
 
56
- def dynamic
57
- @dynamic
83
+ def app
84
+ Spontaneous::Rack::Front.application
58
85
  end
59
86
 
60
- def revision_root
61
- @revision_root
87
+ after do
88
+ SitePage.instance_variable_set(:@layout_procs, nil)
89
+ SitePage.instance_variable_set(:@request_blocks, {})
90
+ [root, about, subpage, news, static].each do |page|
91
+ page.layout = :default
92
+ end
93
+ dynamic.layout = :dynamic
62
94
  end
63
95
 
64
96
  def session
@@ -69,186 +101,139 @@ class FrontTest < MiniTest::Spec
69
101
  format_list.map { |f| Page.format_for(f) }
70
102
  end
71
103
 
72
- context "Public pages" do
73
- setup do
74
-
75
-
76
- S::Site.background_mode = :immediate
77
- S::State.delete
78
-
79
- class ::SitePage < ::Page
80
- layout :default
81
- layout :dynamic
82
- box :pages
83
-
84
- attr_accessor :status
85
- end
86
-
87
- class ::SubPage < SitePage; end
88
-
89
-
90
- # see http://benprew.posterous.com/testing-sessions-with-sinatra
91
- # app.send(:set, :sessions, false)
92
- # S::Rack::Front::Server.send(:set, :sessions, false)
93
-
94
- # @revision_root = "#{Dir.mktmpdir}/spontaneous-tests/#{Time.now.to_i}"
95
- # `mkdir -p #{@revision_root}`
96
- # Spontaneous.revision_root = @revision_root
97
-
98
- # @site.stubs(:template_root).returns(File.expand_path("../../fixtures/public/templates", __FILE__))
99
- # self.template_root = File.expand_path("../../fixtures/public/templates", __FILE__)
100
-
101
- ::Content.scope do
102
- @root = ::SitePage.create
103
- @about = ::SitePage.create(:slug => "about", :uid => "about")
104
- @sub = ::SubPage.create(:slug => "now", :uid => "now")
105
- @news = ::SitePage.create(:slug => "news", :uid => "news")
106
- @dynamic = ::SitePage.create(:slug => "dynamic", :uid => "dynamic")
107
- @dynamic.layout = :dynamic
108
- @root.pages << @about
109
- @root.pages << @news
110
- @root.pages << @dynamic
111
- @about.pages << @sub
112
- @root.save
113
- end
114
-
115
- Content.delete_revision(1) rescue nil
116
-
117
- Spontaneous.logger.silent! {
118
- S::Site.publish_all
119
- }
120
- end
104
+ describe "Public pages" do
121
105
 
122
- teardown do
123
- Object.send(:remove_const, :SitePage) rescue nil
124
- Object.send(:remove_const, :SubPage) rescue nil
125
- Content.delete
126
- S::State.delete
127
- Content.delete_revision(1)
106
+ after do
107
+ about.class.outputs :html
128
108
  end
129
109
 
130
- should "return a 404 if asked for a non-existant page" do
110
+ it "return a 404 if asked for a non-existant page" do
131
111
  get '/not-bloody-likely'
132
112
  assert last_response.status == 404
133
113
  end
134
114
 
135
- should "provide root when asked" do
115
+ it "provide root when asked" do
136
116
  get '/'
137
117
  assert last_response.ok?
138
- last_response.body.should == "/.html\n"
118
+ last_response.body.must_equal "/.html\n"
139
119
  end
140
120
 
141
- should "be available through their path" do
121
+ it "be available through their path" do
142
122
  get '/about'
143
123
  assert last_response.ok?
144
- last_response.body.should == "/about.html\n"
145
- last_response.content_type.should == "text/html;charset=utf-8"
124
+ last_response.body.must_equal "/about.html\n"
125
+ last_response.content_type.must_equal "text/html;charset=utf-8"
146
126
  end
147
127
 
148
- should "be available through their path with explicit format" do
128
+ it "be available through their path with explicit format" do
149
129
  get '/about.html'
150
130
  assert last_response.ok?
151
- last_response.body.should == "/about.html\n"
152
- last_response.content_type.should == "text/html;charset=utf-8"
131
+ last_response.body.must_equal "/about.html\n"
132
+ last_response.content_type.must_equal "text/html;charset=utf-8"
153
133
  end
154
134
 
155
- should "honor the format of the request" do
156
- @about.class.outputs :html, :pdf
135
+ it "honor the format of the request" do
136
+ about.class.outputs :html, :pdf
157
137
  get '/about.pdf'
158
138
  assert last_response.ok?
159
- last_response.body.should == "/about.pdf\n"
160
- last_response.content_type.should == "application/pdf;charset=utf-8"
139
+ last_response.body.must_equal "/about.pdf\n"
140
+ last_response.content_type.must_equal "application/pdf;charset=utf-8"
161
141
  end
162
142
 
163
- should "provide the default format of the page if none is explicitly given" do
164
- @about.class.outputs :rss, :html
143
+ it "provide the default format of the page if none is explicitly given" do
144
+ about.class.outputs :rss, :html
165
145
  get '/about'
166
146
  assert last_response.ok?
167
- last_response.content_type.should == ::Rack::Mime.mime_type('.rss') + ";charset=utf-8"
168
- last_response.body.should == "/about.rss\n"
147
+ last_response.content_type.must_equal ::Rack::Mime.mime_type('.rss') + ";charset=utf-8"
148
+ last_response.body.must_equal "/about.rss\n"
169
149
  end
170
150
 
171
- should "return a custom content type if one is defined" do
172
- @about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}]
151
+ it "return a custom content type if one is defined" do
152
+ about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}]
173
153
  get '/about'
174
154
  assert last_response.ok?
175
- last_response.content_type.should == "application/xhtml+xml;charset=utf-8"
176
- last_response.body.should == "/about.html\n"
155
+ last_response.content_type.must_equal "application/xhtml+xml;charset=utf-8"
156
+ last_response.body.must_equal "/about.html\n"
177
157
  end
178
158
 
179
159
 
180
- should "raise a 404 if asked for a format not provided by the page" do
160
+ it "raise a 404 if asked for a format not provided by the page" do
181
161
  get '/about.time'
182
162
  assert last_response.status == 404
183
163
  end
184
164
 
185
- should "raise a 404 when accessing a private format" do
186
- @about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}], [:rss, {:private => true}]
165
+ it "raise a 404 when accessing a private format" do
166
+ about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}], [:rss, {:private => true}]
187
167
  get '/about.rss'
188
168
  assert last_response.status == 404
189
169
  end
190
170
 
191
- context "Dynamic pages" do
192
- setup do
171
+ describe "Dynamic pages" do
172
+ before do
193
173
  Content::Page.stubs(:path).with("/about").returns(about)
174
+ Content::Page.stubs(:path).with("/static").returns(static)
194
175
  Content::Page.stubs(:path).with("/news").returns(news)
195
176
  end
196
177
 
197
- should "default to static behaviour" do
198
- SitePage.dynamic?.should be_false
178
+ after do
179
+ about.layout = :default
180
+ SitePage.instance_variable_set(:@request_blocks, {})
181
+ end
182
+
183
+ it "default to static behaviour" do
184
+ refute SitePage.dynamic?
199
185
  page = SitePage.new
200
- page.dynamic?.should be_false
186
+ refute page.dynamic?
201
187
  end
202
- should "correctly show a dynamic behaviour" do
188
+ it "correctly show a dynamic behaviour" do
203
189
  SitePage.request do
204
- show "/news"
190
+ show "/static"
205
191
  end
206
- SitePage.dynamic?.should be_true
192
+ assert SitePage.dynamic?
207
193
  page = SitePage.new
208
- page.dynamic?.should be_true
194
+ assert page.dynamic?
209
195
  end
210
196
 
211
- should "render an alternate page if passed a page" do
212
- # about.stubs(:request_show).returns(news)
197
+ it "render an alternate page if passed a page" do
213
198
  SitePage.request do
214
- show Site['/news']
199
+ show Site['/static']
215
200
  end
216
201
  get '/about'
217
202
  assert last_response.ok?
218
- last_response.body.should == "/news.html\n"
203
+ last_response.body.must_equal "/static.html\n"
219
204
  end
220
205
 
221
- should "render an alternate page if passed a path" do
206
+ it "render an alternate page if passed a path" do
222
207
  # about.stubs(:request_show).returns("/news")
223
208
  SitePage.request do
224
- show "/news"
209
+ show "/static"
225
210
  end
226
211
  get '/about'
227
212
  assert last_response.ok?
228
- last_response.body.should == "/news.html\n"
213
+ last_response.body.must_equal "/static.html\n"
229
214
  end
230
215
 
231
- should "render an alternate page if passed a uid with a #" do
216
+ it "render an alternate page if passed a uid with a #" do
232
217
  # about.stubs(:request_show).returns("#news")
233
218
  SitePage.request do
234
- show "#news"
219
+ show "static"
235
220
  end
236
221
  get '/about'
237
222
  assert last_response.ok?
238
- last_response.body.should == "/news.html\n"
223
+ last_response.body.must_equal "/static.html\n"
239
224
  end
240
225
 
241
- should "render an alternate page if passed a uid" do
226
+ it "render an alternate page if passed a uid" do
242
227
  # about.stubs(:request_show).returns("news")
243
228
  SitePage.request do
244
- show "news"
229
+ show "static"
245
230
  end
246
231
  get '/about'
247
232
  assert last_response.ok?
248
- last_response.body.should == "/news.html\n"
233
+ last_response.body.must_equal "/static.html\n"
249
234
  end
250
235
 
251
- should "return not found of #request_show returns an invalid uid or path" do
236
+ it "return not found of #request_show returns an invalid uid or path" do
252
237
  # about.stubs(:request_show).returns("caterpillars")
253
238
  SitePage.request do
254
239
  show "caterpillars"
@@ -257,44 +242,44 @@ class FrontTest < MiniTest::Spec
257
242
  assert last_response.status == 404
258
243
  end
259
244
 
260
- should "return the right status code" do
245
+ it "return the right status code" do
261
246
  SitePage.request do
262
- show "#news", 404
247
+ show "static", 404
263
248
  end
264
249
  get '/about'
265
250
  assert last_response.status == 404
266
- last_response.body.should == "/news.html\n"
251
+ last_response.body.must_equal "/static.html\n"
267
252
  end
268
253
 
269
- should "allow handing POST requests" do
254
+ it "allow handing POST requests" do
270
255
  SitePage.request :post do
271
- show "#news"
256
+ show "static"
272
257
  end
273
258
  post '/about'
274
259
  assert last_response.status == 200, "Expected status 200 but recieved #{last_response.status}"
275
- last_response.body.should == "/news.html\n"
260
+ last_response.body.must_equal "/static.html\n"
276
261
  end
277
262
 
278
- should "allow returning of any status code without altering content" do
263
+ it "allow returning of any status code without altering content" do
279
264
  SitePage.request do
280
265
  404
281
266
  end
282
267
  get '/about'
283
268
  assert last_response.status == 404
284
- last_response.body.should == "/about.html\n"
269
+ last_response.body.must_equal "/about.html\n"
285
270
  end
286
271
 
287
- should "allow altering of headers" do
272
+ it "allow altering of headers" do
288
273
  SitePage.request do
289
274
  headers["X-Works"] = "Yes"
290
275
  end
291
276
  get '/about'
292
277
  assert last_response.status == 200
293
- last_response.body.should == "/about.html\n"
294
- last_response.headers["X-Works"].should == "Yes"
278
+ last_response.body.must_equal "/about.html\n"
279
+ last_response.headers["X-Works"].must_equal "Yes"
295
280
  end
296
281
 
297
- should "allow passing of template params & a page to the render call" do
282
+ it "allow passing of template params & a page to the render call" do
298
283
  SitePage.layout do
299
284
  "{{ teeth }}"
300
285
  end
@@ -303,10 +288,11 @@ class FrontTest < MiniTest::Spec
303
288
  end
304
289
  get '/about'
305
290
  assert last_response.status == 200
306
- last_response.body.should == "white"
291
+ last_response.body.must_equal "white"
292
+ SitePage.instance_variable_set(:@layout_procs, nil)
307
293
  end
308
294
 
309
- should "give access to the request params within the controller" do
295
+ it "give access to the request params within the controller" do
310
296
  SitePage.layout { "{{ params[:horse] }}*{{ equine }}" }
311
297
  SitePage.request :post do
312
298
  value = params[:horse]
@@ -314,7 +300,24 @@ class FrontTest < MiniTest::Spec
314
300
  end
315
301
  post '/about', :horse => "dancing"
316
302
  assert last_response.status == 200
317
- last_response.body.should == "dancing*dancing"
303
+ last_response.body.must_equal "dancing*dancing"
304
+ SitePage.instance_variable_set(:@layout_procs, nil)
305
+ end
306
+
307
+ it "allows for dynamically setting the output" do
308
+ SitePage.add_output :mobile
309
+ SitePage.layout do
310
+ "${ path }.${ __format }"
311
+ end
312
+ SitePage.request :get do
313
+ if request.user_agent =~ /iPhone/
314
+ output :mobile
315
+ end
316
+ end
317
+ get "/about", {}, { "HTTP_USER_AGENT" => "Desktop" }
318
+ last_response.body.must_equal "/about.html"
319
+ get "/about", {}, { "HTTP_USER_AGENT" => "iPhone" }
320
+ last_response.body.must_equal "/about.mobile"
318
321
  end
319
322
 
320
323
  # should "handle anything that responds to #render(format)" do
@@ -322,127 +325,128 @@ class FrontTest < MiniTest::Spec
322
325
  # show.stubs(:render).returns("mocked")
323
326
  # about.stubs(:request_show).returns(show)
324
327
  # get '/about'
325
- # last_response.body.should == "mocked"
328
+ # last_response.body.must_equal "mocked"
326
329
  # end
327
330
  end
328
331
 
329
- context "Redirects" do
330
- setup do
332
+ describe "Redirects" do
333
+ before do
331
334
  Page.stubs(:path).with("/about").returns(about)
332
335
  Page.stubs(:path).with("/news").returns(news)
333
336
  end
334
337
 
335
- should "respond appropriatly to redirects to path" do
338
+ it "respond appropriatly to redirects to path" do
336
339
  SitePage.request do
337
340
  redirect "/news"
338
341
  end
339
342
  get '/about'
340
343
  assert last_response.status == 302
341
- last_response.headers["Location"].should == "http://example.org/news"
344
+ last_response.headers["Location"].must_equal "http://example.org/news"
342
345
  end
343
346
 
344
- should "respond appropriately to redirects to a Page instance" do
347
+ it "respond appropriately to redirects to a Page instance" do
345
348
  SitePage.request do
346
349
  redirect Page.path("/news")
347
350
  end
348
351
  get '/about'
349
352
  assert last_response.status == 302
350
- last_response.headers["Location"].should == "http://example.org/news"
353
+ last_response.headers["Location"].must_equal "http://example.org/news"
351
354
  end
352
355
 
353
- should "respond appropriately to redirects to a UID" do
356
+ it "respond appropriately to redirects to a UID" do
354
357
  SitePage.request do
355
- redirect "#news"
358
+ redirect "news"
356
359
  end
357
360
  get '/about'
358
361
  assert last_response.status == 302
359
- last_response.headers["Location"].should == "http://example.org/news"
362
+ last_response.headers["Location"].must_equal "http://example.org/news"
360
363
  end
361
364
 
362
- should "recognise a :temporary redirect" do
365
+ it "recognise a :temporary redirect" do
363
366
  SitePage.request do
364
367
  redirect "/news", :temporary
365
368
  end
366
369
  get '/about'
367
370
  assert last_response.status == 302
368
- last_response.headers["Location"].should == "http://example.org/news"
371
+ last_response.headers["Location"].must_equal "http://example.org/news"
369
372
  end
370
373
 
371
- should "recognise a :permanent redirect" do
374
+ it "recognise a :permanent redirect" do
372
375
  SitePage.request do
373
376
  redirect "/news", :permanent
374
377
  end
375
378
  get '/about'
376
379
  assert last_response.status == 301
377
- last_response.headers["Location"].should == "http://example.org/news"
380
+ last_response.headers["Location"].must_equal "http://example.org/news"
378
381
  end
379
382
 
380
- should "correctly apply numeric status codes" do
383
+ it "correctly apply numeric status codes" do
381
384
  SitePage.request do
382
385
  redirect "/news", 307
383
386
  end
384
387
  get '/about'
385
- last_response.headers["Location"].should == "http://example.org/news"
388
+ last_response.headers["Location"].must_equal "http://example.org/news"
386
389
  assert last_response.status == 307
387
390
  end
388
391
 
389
392
  end
390
393
 
391
- context "Templates xxx" do
392
- setup do
394
+ describe "Templates" do
395
+ before do
393
396
  Spontaneous::Output.cache_templates = true
394
397
  @cache_file = "#{Spontaneous.revision_dir(1)}/dynamic/dynamic.html.rb"
395
398
  FileUtils.rm(@cache_file) if File.exist?(@cache_file)
396
399
  Spontaneous::Output.write_compiled_scripts = true
397
400
  end
398
401
 
399
- teardown do
402
+ after do
400
403
  Spontaneous::Output.cache_templates = true
401
404
  end
402
405
 
403
- should "have access to the params, request & session object" do
406
+ it "have access to the params, request & session object" do
404
407
  get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
405
408
  assert last_response.ok?
406
- last_response.body.should == "42/peter/example.org\n"
409
+ last_response.body.must_equal "42/peter/example.org\n"
407
410
  end
408
411
 
409
- context "caching" do
410
- should "use pre-rendered versions of the templates xxx" do
412
+ describe "caching" do
413
+ it "use pre-rendered versions of the templates" do
411
414
  dummy_content = 'cached-version/#{session[\'user_id\']}'
412
- dummy_template = File.join(@site.revision_root, "current/dynamic/dynamic.html.cut")
415
+ dummy_template = File.join(site.revision_root, "current/dynamic/dynamic.html.cut")
413
416
  File.open(dummy_template, 'w') { |f| f.write(dummy_content) }
414
417
  get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
415
- last_response.body.should == "cached-version/42"
418
+ last_response.body.must_equal "cached-version/42"
416
419
  end
417
420
 
418
- should "cache templates as ruby files" do
421
+ it "cache templates as ruby files" do
419
422
  dummy_content = 'cached-version/#{session[\'user_id\']}'
420
- dummy_template = File.join(@site.revision_root, "current/dynamic/index.html.cut")
423
+ dummy_template = File.join(site.revision_root, "current/dynamic/index.html.cut")
421
424
  Spontaneous::Output.renderer.write_compiled_scripts = true
422
425
  File.open(dummy_template, 'w') { |f| f.write(dummy_content) }
423
426
  FileUtils.rm(@cache_file) if File.exists?(@cache_file)
424
- File.exists?(@cache_file).should be_false
427
+ refute File.exists?(@cache_file)
425
428
  get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
426
429
 
427
- File.exists?(@cache_file).should be_true
430
+ assert File.exists?(@cache_file)
428
431
  File.open(@cache_file, 'w') { |f| f.write('@__buf << %Q`@cache_filed-version/#{params[\'wendy\']}`;')}
429
432
  # Force compiled file to have a later timestamp
430
433
  File.utime(Time.now, Time.now + 1, @cache_file)
431
434
  get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
432
- last_response.body.should == "@cache_filed-version/peter"
435
+ last_response.body.must_equal "@cache_filed-version/peter"
433
436
  end
434
437
 
435
- should "not cache templates if caching turned off" do
438
+ it "not cache templates if caching turned off" do
436
439
  Spontaneous::Output.cache_templates = false
437
- File.exists?(@cache_file).should be_false
440
+ refute File.exists?(@cache_file)
438
441
  get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
439
- File.exists?(@cache_file).should be_false
442
+ refute File.exists?(@cache_file)
440
443
  end
441
444
  end
442
445
  end
443
446
 
444
- context "Model controllers" do
445
- setup do
447
+ describe "Model controllers" do
448
+ before do
449
+ SitePage.instance_variable_set(:@request_blocks, {})
446
450
  class ::TestController < Spontaneous::Rack::PageController
447
451
  get '/' do
448
452
  "Magic"
@@ -457,7 +461,7 @@ class FrontTest < MiniTest::Spec
457
461
  page
458
462
  end
459
463
  get '/format' do
460
- format.to_s
464
+ output.to_s
461
465
  end
462
466
  end
463
467
 
@@ -473,6 +477,20 @@ class FrontTest < MiniTest::Spec
473
477
  end
474
478
  end
475
479
 
480
+ SitePage.controller :search do
481
+ get '/render/:query' do
482
+ render({ results: %w(a b c)})
483
+ end
484
+
485
+ get '/renderpapeparams/:query' do
486
+ render page, { results: %w(a b c)}
487
+ end
488
+
489
+ get '/renderoutput/:query' do
490
+ render page, :xml, { results: %w(a b c)}
491
+ end
492
+ end
493
+
476
494
  SitePage.controller :test, ::TestController
477
495
 
478
496
  SitePage.controller :test2, ::TestController do
@@ -486,110 +504,138 @@ class FrontTest < MiniTest::Spec
486
504
  Content.stubs(:path).with("/about/now").returns(subpage)
487
505
  end
488
506
 
489
- teardown do
507
+ after do
508
+ SitePage.instance_variable_set(:@request_blocks, {})
490
509
  SitePage.send(:remove_const, :StatusController) rescue nil
491
510
  SitePage.send(:remove_const, :TestController) rescue nil
492
511
  SitePage.send(:remove_const, :Test2Controller) rescue nil
493
512
  Object.send(:remove_const, :TestController) rescue nil
513
+ about.class.outputs :html
494
514
  end
495
515
 
496
- should "not be used unless necessary" do
516
+ it "not be used unless necessary" do
497
517
  get "/about"
498
518
  assert last_response.ok?
499
- last_response.body.should == about.render
519
+ last_response.body.must_equal about.render
500
520
  end
501
521
 
502
- should "work on the homepage" do
522
+ it "work on the homepage" do
503
523
  get "/@comments"
504
524
  assert last_response.ok?
505
- last_response.body.should == "Success"
525
+ last_response.body.must_equal "Success"
506
526
  end
507
527
 
508
528
 
509
- should "be recognised" do
529
+ it "be recognised" do
510
530
  get "/about/@comments"
511
531
  assert last_response.ok?
512
- last_response.body.should == "Success"
532
+ last_response.body.must_equal "Success"
513
533
  end
514
534
 
515
- should "render the page correctly if action returns page object" do
535
+ it "render the page correctly if action returns page object" do
516
536
  get "/about/@comments/page"
517
537
  assert last_response.ok?
518
- last_response.body.should == about.render
538
+ last_response.body.must_equal about.render
519
539
  end
520
540
 
521
- should "return 404 if trying unknown namespace" do
541
+ it "return 404 if trying unknown namespace" do
522
542
  get "/about/@missing/action"
523
543
  assert last_response.status == 404
524
544
  end
525
545
 
526
- should "respond to multiple namespaces" do
546
+ it "respond to multiple namespaces" do
527
547
  get "/about/@status/good"
528
548
  assert last_response.ok?
529
- last_response.body.should == about.render
530
- about.status.should == "good"
549
+ last_response.body.must_equal about.render
550
+ about.status.must_equal "good"
531
551
  end
532
552
 
533
- should "accept POST requests" do
553
+ it "accept POST requests" do
534
554
  post "/about/@status/good"
535
555
  assert last_response.ok?
536
- last_response.body.should == about.render
537
- about.status.should == "good"
556
+ last_response.body.must_equal about.render
557
+ about.status.must_equal "good"
538
558
  end
539
559
 
540
- should "return 404 unless post request has an action" do
560
+ it "return 404 unless post request has an action" do
541
561
  Page.expects(:path).with("/about").never
542
562
  post "/about"
543
563
  assert last_response.status == 404
544
564
  end
545
565
 
546
- should "return 404 for post requests to unknown actions" do
566
+ it "return 404 for post requests to unknown actions" do
547
567
  post "/about/@status/missing/action"
548
568
  assert last_response.status == 404
549
569
  end
550
570
 
551
571
  # probably the wrong place to test this -- should be in units -- but what the heck
552
- should "be able to generate urls for actions" do
553
- about.action_url(:status, "/good").should == "/about/@status/good"
572
+ it "be able to generate urls for actions" do
573
+ about.action_url(:status, "/good").must_equal "/about/@status/good"
554
574
  end
555
575
 
556
- should "pass the format onto the page if the action returns it to the render call" do
576
+ it "be able to generate urls for actions with no path" do
577
+ about.action_url(:status).must_equal "/about/@status"
578
+ end
579
+
580
+ it "pass the output onto the page if the action returns it to the render call" do
557
581
  about.class.outputs :html, :xml
558
582
  about.class.layout do
559
583
  "${path}.${__format}"
560
584
  end
561
585
  get "/about/@comments/page.xml"
562
586
  assert last_response.ok?
563
- last_response.body.should == "/about.xml"
587
+ last_response.body.must_equal "/about.xml"
564
588
  end
565
589
 
566
- should "use the format within the action if required" do
590
+ it "use the format within the action if required" do
567
591
  about.class.outputs :html, :xml
568
592
  get "/about/@comments/format.xml"
569
593
  assert last_response.ok?
570
- last_response.body.should == "xml"
594
+ last_response.body.must_equal "xml"
571
595
  end
572
596
 
573
- should "be inherited by subclasses" do
597
+ it "be inherited by subclasses" do
574
598
  get "/about/now/@comments"
575
599
  assert last_response.ok?
576
- last_response.body.should == "Success"
600
+ last_response.body.must_equal "Success"
577
601
  end
578
602
 
579
- should "allow definition of controller using class" do
603
+ it "allow definition of controller using class" do
580
604
  get "/about/@test"
581
605
  assert last_response.ok?
582
- last_response.body.should == "Magic"
606
+ last_response.body.must_equal "Magic"
583
607
  end
584
608
 
585
- should "allow definition of controller using class and extend it using block" do
609
+ it "allow definition of controller using class and extend it using block" do
586
610
  get "/about/@test2/block"
587
611
  assert last_response.ok?
588
- last_response.body.should == "Block"
612
+ last_response.body.must_equal "Block"
589
613
  end
590
614
 
591
- context "overriding base controller class" do
592
- setup do
615
+ it "allows passing parameters to the page render" do
616
+ about.class.outputs :html, :xml
617
+ about.class.layout do
618
+ "{{results.join(',')}}"
619
+ end
620
+
621
+ get "/about/@search/render/query.xml"
622
+ assert last_response.ok?, "Expected 200 OK but got #{last_response.status}"
623
+ last_response.body.must_equal "a,b,c"
624
+ end
625
+
626
+ it "allows passing an output to the page render" do
627
+ about.class.outputs :html, :xml
628
+ about.class.layout do
629
+ "{{results.join(',')}}"
630
+ end
631
+
632
+ get "/about/@search/renderoutput/query"
633
+ assert last_response.ok?, "Expected 200 OK but got #{last_response.status}"
634
+ last_response.body.must_equal "a,b,c"
635
+ end
636
+
637
+ describe "overriding base controller class" do
638
+ before do
593
639
  class ::PageController < S::Rack::PageController
594
640
  get '/nothing' do
595
641
  'Something'
@@ -601,36 +647,36 @@ class FrontTest < MiniTest::Spec
601
647
  "Success"
602
648
  end
603
649
  end
604
-
605
650
  end
606
651
 
607
- teardown do
652
+ after do
608
653
  Object.send(:remove_const, :PageController)
609
654
  end
610
655
 
611
- should "affect all controller actions" do
656
+ it "affect all controller actions" do
612
657
  get "/about/@drummer/nothing"
613
658
  assert last_response.ok?
614
- last_response.body.should == "Something"
659
+ last_response.body.must_equal "Something"
615
660
  end
616
661
  end
617
662
  end
618
- context "Static files" do
619
- setup do
663
+
664
+ describe "Static files" do
665
+ before do
620
666
  @revision_dir = Spontaneous.instance.revision_dir(1)
621
667
  @public_dir = @revision_dir / "public"
622
668
  end
623
669
 
624
- should "should be sourced from the published revision directory" do
670
+ it "should be sourced from the published revision directory" do
625
671
  test_string = "#{Time.now}\n"
626
672
  test_file = "#{Time.now.to_i}.txt"
627
673
  File.open(@public_dir / test_file, 'w') { |f| f.write(test_string) }
628
674
  get "/#{test_file}"
629
675
  assert last_response.ok?
630
- last_response.body.should == test_string
676
+ last_response.body.must_equal test_string
631
677
  end
632
678
 
633
- should "pass far-future expires headers for media" do
679
+ it "pass far-future expires headers for media" do
634
680
  test_string = "#{Time.now}\n"
635
681
  test_file_url = "#{Time.now.to_i}.txt"
636
682
  test_file = Spontaneous.media_dir / test_file_url
@@ -638,11 +684,12 @@ class FrontTest < MiniTest::Spec
638
684
  File.open(test_file, 'w') { |f| f.write(test_string) }
639
685
  get "/media/#{test_file_url}"
640
686
  assert last_response.ok?
641
- last_response.body.should == test_string
687
+ last_response.body.must_equal test_string
642
688
  expiry = DateTime.parse last_response.headers["Expires"]
643
- expiry.year.should == (Date.today.year) + 10
689
+ expiry.year.must_equal (Date.today.year) + 10
644
690
  end
645
- should "pass far-future expires headers for compiled assets" do
691
+
692
+ it "pass far-future expires headers for compiled assets" do
646
693
  test_string = "#{Time.now}\n"
647
694
  test_file_url = "/rev/#{Time.now.to_i}.txt"
648
695
  test_file = @revision_dir / test_file_url
@@ -650,9 +697,9 @@ class FrontTest < MiniTest::Spec
650
697
  File.open(test_file, 'w') { |f| f.write(test_string) }
651
698
  get test_file_url
652
699
  assert last_response.ok?
653
- last_response.body.should == test_string
700
+ last_response.body.must_equal test_string
654
701
  expiry = DateTime.parse last_response.headers["Expires"]
655
- expiry.year.should == (Date.today.year) + 10
702
+ expiry.year.must_equal (Date.today.year) + 10
656
703
  end
657
704
  end
658
705
  end