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
@@ -3,541 +3,533 @@
3
3
  require File.expand_path('../../test_helper', __FILE__)
4
4
 
5
5
 
6
- class RevisionsTest < MiniTest::Spec
6
+ describe "Revisions" do
7
7
 
8
8
  Revision = Spontaneous::Publishing::Revision
9
9
 
10
- def setup
11
- @now = Time.now
12
- @site = setup_site
13
- end
14
-
15
- def teardown
16
- teardown_site
17
- end
18
-
19
- context "Content revisions" do
20
- setup do
21
- stub_time(@now)
10
+ start do
11
+ site = setup_site
12
+ let(:site) { site }
22
13
 
23
- Content.delete
14
+ Content.delete
24
15
 
25
- class Page < ::Page
26
- field :title, :string, :default => "New Page"
27
- box :things
28
- end
29
- class Piece < ::Piece
30
- box :things
31
- end
16
+ class Page
17
+ field :title, :string, :default => "New Page"
18
+ box :things
19
+ end
20
+ class Piece
21
+ box :things
22
+ end
32
23
 
33
- @root = Page.create(:uid => "root")
34
- count = 0
35
- 2.times do |i|
36
- c = Page.new(:uid => i)
37
- @root.things << c
24
+ root = Page.create(:uid => "root")
25
+ count = 0
26
+ 2.times do |i|
27
+ c = Page.new(:uid => i)
28
+ root.things << c
29
+ count += 1
30
+ 2.times do |j|
31
+ d = Piece.new(:uid => "#{i}.#{j}")
32
+ c.things << d
38
33
  count += 1
39
- 2.times do |j|
40
- d = Piece.new(:uid => "#{i}.#{j}")
41
- c.things << d
34
+ 2.times do |k|
35
+ d.things << Page.new(:uid => "#{i}.#{j}.#{k}")
36
+ d.save
42
37
  count += 1
43
- 2.times do |k|
44
- d.things << Page.new(:uid => "#{i}.#{j}.#{k}")
45
- d.save
46
- count += 1
47
- end
48
38
  end
49
- c.save
50
39
  end
51
- @root.save
40
+ c.save
52
41
  end
42
+ root.save
53
43
 
54
- teardown do
55
- RevisionsTest.send(:remove_const, :Page) rescue nil
56
- RevisionsTest.send(:remove_const, :Piece) rescue nil
57
- Content.delete
58
- end
44
+ Revision.history_dataset(Content).delete
45
+ Revision.archive_dataset(Content).delete
46
+ Revision.delete_all(Content)
59
47
 
60
- context "data sources" do
48
+ let(:root) { root }
49
+ end
61
50
 
62
- should "have the right names" do
63
- Content.revision_table(23).should == :'__r00023_content'
64
- Content.revision_table(nil).should == :'content'
65
- end
51
+ finish do
52
+ Object.send(:remove_const, :Page) rescue nil
53
+ Object.send(:remove_const, :Piece) rescue nil
54
+ Content.delete
55
+ teardown_site
56
+ end
66
57
 
67
- should "be recognisable" do
68
- Content.revision_table?('content').should be_false
69
- Content.revision_table?('__r00023_content').should be_true
70
- Content.revision_table?('__r00023_not').should be_false
71
- Content.revision_table?('subscribers').should be_false
72
- end
58
+ before do
59
+ @now = Time.now
60
+ stub_time(@now)
61
+ end
73
62
 
74
- should "be switchable within blocks" do
75
- Content.with_revision(23) do
76
- Content.revision.should ==23
77
- Content.mapper.current_revision.should == 23
78
- end
79
- Content.mapper.current_revision.should be_nil
80
- end
63
+ after do
64
+ Revision.delete_all(Content)
65
+ end
81
66
 
82
- should "know which revision is active" do
83
- Content.with_revision(23) do
84
- Content.revision.should == 23
85
- end
86
- end
67
+ describe "data sources" do
87
68
 
88
- should "understand with_editable" do
89
- Content.with_revision(23) do
90
- Content.mapper.current_revision.should == 23
91
- Content.with_editable do
92
- Content.mapper.current_revision.should be_nil
93
- end
94
- end
95
- end
69
+ it "have the right names" do
70
+ Content.revision_table(23).must_equal :'__r00023_content'
71
+ Content.revision_table(nil).must_equal :'content'
72
+ end
96
73
 
97
- should "understand with_published" do
98
- S::Site.stubs(:published_revision).returns(99)
99
- Content.with_published do
100
- Content.mapper.current_revision.should == 99
101
- end
102
- end
74
+ it "be recognisable" do
75
+ refute Content.revision_table?('content')
76
+ assert Content.revision_table?('__r00023_content')
77
+ refute Content.revision_table?('__r00023_not')
78
+ refute Content.revision_table?('subscribers')
79
+ end
103
80
 
104
- should "be stackable" do
105
- Content.with_revision(23) do
106
- Content.mapper.current_revision.should == 23
107
- Content.with_revision(24) do
108
- Content.mapper.current_revision.should == 24
109
- end
110
- end
81
+ it "be switchable within blocks" do
82
+ Content.with_revision(23) do
83
+ Content.revision.must_equal 23
84
+ Content.mapper.current_revision.must_equal 23
111
85
  end
86
+ Content.mapper.current_revision.must_be_nil
87
+ end
112
88
 
113
- should "reset datasource after an exception" do
114
- begin
115
- Content.with_revision(23) do
116
- Content.mapper.current_revision.should == 23
117
- raise Exception.new
118
- end
119
- rescue Exception
120
- end
121
- Content.mapper.current_revision.should be_nil
89
+ it "know which revision is active" do
90
+ Content.with_revision(23) do
91
+ Content.revision.must_equal 23
122
92
  end
93
+ end
123
94
 
124
- should "read revision from the environment if present" do
125
- ENV["SPOT_REVISION"] = '1001'
126
- Content.with_published do
127
- Content.mapper.current_revision.should == 1001
95
+ it "understand with_editable" do
96
+ Content.with_revision(23) do
97
+ Content.mapper.current_revision.must_equal 23
98
+ Content.with_editable do
99
+ Content.mapper.current_revision.must_be_nil
128
100
  end
129
- ENV.delete("SPOT_REVISION")
130
101
  end
102
+ end
131
103
 
132
- context "subclasses" do
133
- setup do
134
- class ::Subclass < Page; end
135
- end
104
+ it "understand with_published" do
105
+ S::Site.stubs(:published_revision).returns(99)
106
+ Content.with_published do
107
+ Content.mapper.current_revision.must_equal 99
108
+ end
109
+ end
136
110
 
137
- teardown do
138
- Object.send(:remove_const, :Subclass)
111
+ it "be stackable" do
112
+ Content.with_revision(23) do
113
+ Content.mapper.current_revision.must_equal 23
114
+ Content.with_revision(24) do
115
+ Content.mapper.current_revision.must_equal 24
139
116
  end
117
+ end
118
+ end
140
119
 
141
- should "set all subclasses to use the same dataset" do
142
- Content.with_revision(23) do
143
- Subclass.revision.should == 23
144
- Subclass.mapper.current_revision.should == 23
145
- # piece wasn't loaded until this point
146
- Piece.mapper.current_revision.should == 23
147
- end
120
+ it "reset datasource after an exception" do
121
+ begin
122
+ Content.with_revision(23) do
123
+ Content.mapper.current_revision.must_equal 23
124
+ raise "Fail"
148
125
  end
126
+ rescue Exception
149
127
  end
128
+ Content.mapper.current_revision.must_be_nil
150
129
  end
151
130
 
152
- context "content revisions" do
153
- setup do
154
- @revision = 1
155
- Revision.history_dataset(Content).delete
156
- Revision.archive_dataset(Content).delete
131
+ it "read revision from the environment if present" do
132
+ ENV["SPOT_REVISION"] = '1001'
133
+ Content.with_published do
134
+ Content.mapper.current_revision.must_equal 1001
157
135
  end
136
+ ENV.delete("SPOT_REVISION")
137
+ end
158
138
 
159
- teardown do
160
- Revision.delete_all(Content)
139
+ describe "subclasses" do
140
+ before do
141
+ class ::Subclass < Page; end
161
142
  end
162
143
 
163
- should "be testable for existance" do
164
- Content.revision_exists?(@revision).should be_false
165
- Revision.create(Content, @revision)
166
- Revision.exists?(Content, @revision).should be_true
144
+ after do
145
+ Object.send(:remove_const, :Subclass)
167
146
  end
168
147
 
169
- should "not be deletable if their revision is nil" do
170
- Revision.delete(Content, nil)
171
- Content.db.table_exists?(:content).should be_true
148
+ it "set all subclasses to use the same dataset" do
149
+ Content.with_revision(23) do
150
+ Subclass.revision.must_equal 23
151
+ Subclass.mapper.current_revision.must_equal 23
152
+ # piece wasn't loaded until this point
153
+ Piece.mapper.current_revision.must_equal 23
154
+ end
172
155
  end
156
+ end
157
+ end
173
158
 
174
- should "be deletable en masse" do
175
- revisions = (1..10).to_a
176
- tables = revisions.map { |i| Content.revision_table(i).to_sym }
159
+ describe "content revisions" do
160
+ before do
161
+ @revision = 1
162
+ end
177
163
 
178
- revisions.each do |r|
179
- Content.history_dataset.insert(:revision => r, :uid => "revision-#{r}")
180
- Content.archive_dataset.insert(:revision => r, :uid => "archive-#{r}")
181
- end
164
+ after do
165
+ # Revision.delete_all(Content)
166
+ end
182
167
 
183
- Content.history_dataset.count.should == 10
184
- Content.archive_dataset.count.should == 10
168
+ it "be testable for existance" do
169
+ refute Content.revision_exists?(@revision)
170
+ Revision.create(Content, @revision)
171
+ assert Revision.exists?(Content, @revision)
172
+ end
185
173
 
186
- tables.each do |t|
187
- DB.create_table(t){Integer :id} rescue nil
188
- end
174
+ it "not be deletable if their revision is nil" do
175
+ Revision.delete(Content, nil)
176
+ assert Content.db.table_exists?(:content)
177
+ end
189
178
 
190
- tables.each do |t|
191
- DB.tables.include?(t).should be_true
192
- end
179
+ it "be deletable en masse" do
180
+ revisions = (1..10).to_a
181
+ tables = revisions.map { |i| Content.revision_table(i).to_sym }
193
182
 
194
- Revision.delete_all(Content)
183
+ revisions.each do |r|
184
+ Content.history_dataset.insert(:revision => r, :uid => "revision-#{r}")
185
+ Content.archive_dataset.insert(:revision => r, :uid => "archive-#{r}")
186
+ end
195
187
 
196
- tables.each do |t|
197
- DB.tables.include?(t).should be_false
198
- end
188
+ Content.history_dataset.count.must_equal 10
189
+ Content.archive_dataset.count.must_equal 10
199
190
 
200
- Content.history_dataset.count.should == 0
201
- Content.archive_dataset.count.should == 0
191
+ tables.each do |t|
192
+ DB.create_table(t){Integer :id} rescue nil
202
193
  end
203
194
 
204
- should "be creatable from current content" do
205
- DB.tables.include?(Content.revision_table(@revision).to_sym).should be_false
206
- Revision.create(Content, @revision)
207
- DB.tables.include?(Content.revision_table(@revision).to_sym).should be_true
208
- count = Content.count
209
- Content.with_revision(@revision) do
210
- Content.count.should == count
211
- Content.all.each do |published|
212
- published.revision.should == @revision
213
- Content.with_editable do
214
- e = Content[published.id]
215
- assert_content_equal(e, published, :revision)
216
- e.revision.should be_nil
217
- end
218
- end
219
- end
220
- Content.history_dataset(@revision).count.should == count
221
- Content.history_dataset.select(:revision).group(:revision).all.should == [{:revision => 1}]
222
- Content.archive_dataset(@revision).count.should == count
223
- Content.archive_dataset.select(:revision).group(:revision).all.should == [{:revision => 1}]
195
+ tables.each do |t|
196
+ assert DB.tables.include?(t)
224
197
  end
225
198
 
226
- should "have the correct indexes" do
227
- Revision.create(Content, @revision)
228
- content_indexes = DB.indexes(:content)
229
- published_indexes = DB.indexes(Content.revision_table(@revision))
230
- # made slightly complex by the fact that the index names depend on the table names
231
- # (which are different)
232
- assert_same_elements published_indexes.values, content_indexes.values
199
+ Revision.delete_all(Content)
200
+
201
+ tables.each do |t|
202
+ refute DB.tables.include?(t)
233
203
  end
234
204
 
235
- should "only be kept until a new revision is available" do
236
- (0..2).each do |r|
237
- Revision.create(Content, @revision+r)
238
- Content.history_dataset(@revision+r).count.should == 15
239
- Content.archive_dataset(@revision+r).count.should == 15
205
+ Content.history_dataset.count.must_equal 0
206
+ Content.archive_dataset.count.must_equal 0
207
+ end
208
+
209
+ it "be creatable from current content" do
210
+ refute DB.tables.include?(Content.revision_table(@revision).to_sym)
211
+ Revision.create(Content, @revision)
212
+ assert DB.tables.include?(Content.revision_table(@revision).to_sym)
213
+ count = Content.count
214
+ Content.with_revision(@revision) do
215
+ Content.count.must_equal count
216
+ Content.all.each do |published|
217
+ published.revision.must_equal @revision
218
+ Content.with_editable do
219
+ e = Content[published.id]
220
+ assert_content_equal(e, published, :revision)
221
+ e.revision.must_be_nil
222
+ end
240
223
  end
241
- Content.revision_tables.should == [:__r00001_content, :__r00002_content, :__r00003_content]
242
- Revision.cleanup(Content, @revision+2, 2)
243
- Content.revision_tables.should == [:__r00003_content]
244
- Content.history_dataset(@revision).count.should == 0
245
- Content.archive_dataset(@revision).count.should == 15
246
- Content.history_dataset(@revision+2).count.should == 15
247
224
  end
225
+ Content.history_dataset(@revision).count.must_equal count
226
+ Content.history_dataset.select(:revision).group(:revision).all.must_equal [{:revision => 1}]
227
+ Content.archive_dataset(@revision).count.must_equal count
228
+ Content.archive_dataset.select(:revision).group(:revision).all.must_equal [{:revision => 1}]
229
+ end
248
230
 
231
+ it "have the correct indexes" do
232
+ Revision.create(Content, @revision)
233
+ content_indexes = DB.indexes(:content)
234
+ published_indexes = DB.indexes(Content.revision_table(@revision))
235
+ # made slightly complex by the fact that the index names depend on the table names
236
+ # (which are different)
237
+ assert_has_elements published_indexes.values, content_indexes.values
238
+ end
249
239
 
250
- context "incremental publishing" do
251
- setup do
252
- @initial_revision = 1
253
- @final_revision = 2
254
- Revision.create(Content, @initial_revision)
255
- Revision.delete(Content, @final_revision) rescue nil
256
- Revision.delete(Content, @final_revision+1) rescue nil
257
- end
240
+ it "only be kept until a new revision is available" do
241
+ (0..2).each do |r|
242
+ Revision.create(Content, @revision+r)
243
+ Content.history_dataset(@revision+r).count.must_equal 15
244
+ Content.archive_dataset(@revision+r).count.must_equal 15
245
+ end
246
+ Content.revision_tables.must_equal [:__r00001_content, :__r00002_content, :__r00003_content]
247
+ Revision.cleanup(Content, @revision+2, 2)
248
+ Content.revision_tables.must_equal [:__r00003_content]
249
+ Content.history_dataset(@revision).count.must_equal 0
250
+ Content.archive_dataset(@revision).count.must_equal 15
251
+ Content.history_dataset(@revision+2).count.must_equal 15
252
+ end
258
253
 
259
- teardown do
260
- Revision.create(Content, @initial_revision) rescue nil
261
- Revision.delete(Content, @final_revision) rescue nil
262
- Revision.delete(Content, @final_revision+1) rescue nil
263
- end
264
254
 
265
- should "duplicate changes to only a single item" do
266
- editable1 = Content.first(:uid => '1.0')
267
- editable1.label.should be_nil
268
- editable1.label = "published"
269
- editable1.save
270
- editable2 = Content.first(:uid => '1.1')
271
- editable2.label = "unpublished"
272
- editable2.save
273
- editable2.reload
274
- Revision.patch(Content, @final_revision, [editable1.id])
275
- editable1.reload
276
- Content.with_revision(@final_revision) do
277
- published = Content.first :id => editable1.id
278
- unpublished = Content.first :id => editable2.id
279
- assert_content_equal(published, editable1, :revision)
280
- assert_content_unequal(unpublished, editable2, :revision)
281
- end
255
+ describe "incremental publishing" do
256
+ before do
257
+ @initial_revision = 1
258
+ @final_revision = 2
259
+ Revision.create(Content, @initial_revision)
260
+ end
261
+
262
+ it "duplicate changes to only a single item" do
263
+ editable1 = Content.first(:uid => '1.0')
264
+ editable1.label.must_be_nil
265
+ editable1.label = "published"
266
+ editable1.save
267
+ editable2 = Content.first(:uid => '1.1')
268
+ editable2.label = "unpublished"
269
+ editable2.save
270
+ editable2.reload
271
+ Revision.patch(Content, @final_revision, [editable1.id])
272
+ editable1.reload
273
+ Content.with_revision(@final_revision) do
274
+ published = Content.first :id => editable1.id
275
+ unpublished = Content.first :id => editable2.id
276
+ assert_content_equal(published, editable1, :revision)
277
+ assert_content_unequal(unpublished, editable2, :revision)
282
278
  end
279
+ end
283
280
 
284
- should "publish additions to contents of a page" do
285
- editable1 = Content.first(:uid => '0')
286
- new_content = Piece.new(:uid => "new")
287
-
288
- editable1.things << new_content
289
- editable1.save
290
- Revision.patch(Content, @final_revision, [editable1.id])
291
- new_content.reload
292
- editable1.reload
293
- Content.with_revision(@final_revision) do
294
- published1 = Content[editable1.id]
295
- published2 = Content[new_content.id]
296
- assert_content_equal(published2, new_content, :revision)
297
- assert_content_equal(published1, editable1, :revision)
298
- end
281
+ it "publish additions to contents of a page" do
282
+ editable1 = Content.first(:uid => '0')
283
+ new_content = Piece.new(:uid => "new")
284
+
285
+ editable1.things << new_content
286
+ editable1.save
287
+ Revision.patch(Content, @final_revision, [editable1.id])
288
+ new_content.reload
289
+ editable1.reload
290
+ Content.with_revision(@final_revision) do
291
+ published1 = Content[editable1.id]
292
+ published2 = Content[new_content.id]
293
+ assert_content_equal(published2, new_content, :revision)
294
+ assert_content_equal(published1, editable1, :revision)
299
295
  end
296
+ end
300
297
 
301
- should "publish deletions to contents of page" do
302
- editable1 = Content.first(:uid => '0')
303
- deleted = editable1.contents.first
304
- editable1.contents.first.destroy
305
- Revision.patch(Content, @final_revision, [editable1.id])
306
- editable1.reload
307
- Content.with_revision(@final_revision) do
308
- published1 = Content[editable1.id]
309
- assert_content_equal(published1, editable1, :revision)
310
- Content[deleted.id].should be_nil
311
- end
298
+ it "publish deletions to contents of page" do
299
+ editable1 = Content.first(:uid => '0')
300
+ deleted = editable1.contents.first
301
+ editable1.contents.first.destroy
302
+ Revision.patch(Content, @final_revision, [editable1.id])
303
+ editable1.reload
304
+ Content.with_revision(@final_revision) do
305
+ published1 = Content[editable1.id]
306
+ assert_content_equal(published1, editable1, :revision)
307
+ Content[deleted.id].must_be_nil
312
308
  end
309
+ end
313
310
 
314
- should "not publish page additions" do
315
- editable1 = Content.first(:uid => '0')
316
- new_page = Page.new(:uid => "new")
317
- editable1.things << new_page
318
- editable1.save
319
- new_page.save
320
- Revision.patch(Content, @final_revision, [editable1.id])
321
- new_page.reload
322
- editable1.reload
323
- Content.with_revision(@final_revision) do
324
- published1 = Content[editable1.id]
325
- published2 = Content[new_page.id]
326
- published2.should be_nil
327
- assert_content_equal(published1, editable1, :revision)
328
- end
311
+ it "not publish page additions" do
312
+ editable1 = Content.first(:uid => '0')
313
+ new_page = Page.new(:uid => "new")
314
+ editable1.things << new_page
315
+ editable1.save
316
+ new_page.save
317
+ Revision.patch(Content, @final_revision, [editable1.id])
318
+ new_page.reload
319
+ editable1.reload
320
+ Content.with_revision(@final_revision) do
321
+ published1 = Content[editable1.id]
322
+ published2 = Content[new_page.id]
323
+ published2.must_be_nil
324
+ assert_content_equal(published1, editable1, :revision)
329
325
  end
326
+ end
330
327
 
331
- should "not publish changes to existing pages unless explicitly asked" do
332
- editable1 = Content.first(:uid => '0')
333
- editable1.things << Piece.new(:uid => "added")
334
- editable1.save
335
- editable2 = Content.first(:uid => '0.0.0')
336
- new_content = Piece.new(:uid => "new")
337
- editable2.things << new_content
338
- editable2.save
339
- Revision.patch(Content, @final_revision, [editable1.id])
340
- editable1.reload
341
- editable2.reload
342
- new_content.reload
343
- Content.with_revision(@final_revision) do
344
- published1 = Content.first :id => editable1.id
345
- Content.first(:uid => "added").should_not be_nil
346
- published3 = Content.first :id => editable2.id
347
- assert_content_equal(published1, editable1, :revision)
348
- assert_content_unequal(published3, editable2, :revision)
349
- published3.uid.should_not == "new"
350
- end
351
- Revision.patch(Content, @final_revision+1, [editable2.id])
352
- editable1.reload
353
- editable2.reload
354
- new_content.reload
355
- Content.with_revision(@final_revision+1) do
356
- published1 = Content.first :id => editable1.id
357
- assert_content_equal(published1, editable1, :revision)
358
- published2 = Content.first :id => editable2.id
359
- assert_content_equal(published2, editable2, :revision)
360
- published3 = Content.first :id => editable2.contents.first.id
361
- # published3.should == editable2.contents.first
362
- assert_content_equal(published3, editable2.contents.first, :revision)
363
- end
328
+ it "not publish changes to existing pages unless explicitly asked" do
329
+ editable1 = Content.first(:uid => '0')
330
+ editable1.things << Piece.new(:uid => "added")
331
+ editable1.save
332
+ editable2 = Content.first(:uid => '0.0.0')
333
+ new_content = Piece.new(:uid => "new")
334
+ editable2.things << new_content
335
+ editable2.save
336
+ Revision.patch(Content, @final_revision, [editable1.id])
337
+ editable1.reload
338
+ editable2.reload
339
+ new_content.reload
340
+ Content.with_revision(@final_revision) do
341
+ published1 = Content.first :id => editable1.id
342
+ Content.first(:uid => "added").wont_be_nil
343
+ published3 = Content.first :id => editable2.id
344
+ assert_content_equal(published1, editable1, :revision)
345
+ assert_content_unequal(published3, editable2, :revision)
346
+ published3.uid.wont_equal "new"
347
+ end
348
+ Revision.patch(Content, @final_revision+1, [editable2.id])
349
+ editable1.reload
350
+ editable2.reload
351
+ new_content.reload
352
+ Content.with_revision(@final_revision+1) do
353
+ published1 = Content.first :id => editable1.id
354
+ assert_content_equal(published1, editable1, :revision)
355
+ published2 = Content.first :id => editable2.id
356
+ assert_content_equal(published2, editable2, :revision)
357
+ published3 = Content.first :id => editable2.contents.first.id
358
+ # published3.must_equal editable2.contents.first
359
+ assert_content_equal(published3, editable2.contents.first, :revision)
364
360
  end
361
+ end
365
362
 
366
- should "insert an entry value into the parent of a newly added page when that page is published aaa" do
367
- editable1 = Content.first(:uid => '0')
368
- new_page = Page.new(:uid => "new")
369
- editable1.things << new_page
370
- editable1.save
371
- new_page.save
372
- Revision.patch(Content, @final_revision, [new_page.id])
373
- new_page.reload
374
- editable1.reload
375
- Content.with_revision(@final_revision) do
376
- published1 = Content[editable1.id]
377
- published2 = Content[new_page.id]
378
- assert_content_equal(published2, new_page, :revision)
379
- editable1.entry_store.should == published1.entry_store
380
- end
363
+ it "insert an entry value into the parent of a newly added page when that page is published aaa" do
364
+ editable1 = Content.first(:uid => '0')
365
+ new_page = Page.new(:uid => "new")
366
+ editable1.things << new_page
367
+ editable1.save
368
+ new_page.save
369
+ Revision.patch(Content, @final_revision, [new_page.id])
370
+ new_page.reload
371
+ editable1.reload
372
+ Content.with_revision(@final_revision) do
373
+ published1 = Content[editable1.id]
374
+ published2 = Content[new_page.id]
375
+ assert_content_equal(published2, new_page, :revision)
376
+ editable1.entry_store.must_equal published1.entry_store
381
377
  end
378
+ end
382
379
 
383
- should "choose a sensible position for entry into the parent of a newly added page" do
384
- editable1 = Content.first(:uid => '0')
385
- new_page1 = Page.new(:uid => "new1")
386
- new_page2 = Page.new(:uid => "new2")
387
- editable1.things << new_page1
388
- editable1.things << new_page2
389
- editable1.save
390
- new_page1.save
391
- new_page2.save
392
- Revision.patch(Content, @final_revision, [new_page2.id])
393
- new_page1.reload
394
- new_page2.reload
395
- editable1.reload
396
- Content.with_revision(@final_revision) do
397
- published1 = Content[editable1.id]
398
- published2 = Content[new_page1.id]
399
- published3 = Content[new_page2.id]
400
- published2.should be_nil
401
- assert_content_equal(published3, new_page2, :revision)
402
- editable1.entry_store.reject { |e| e[0] == new_page1.id }.should == published1.entry_store
403
- end
380
+ it "choose a sensible position for entry into the parent of a newly added page" do
381
+ editable1 = Content.first(:uid => '0')
382
+ new_page1 = Page.new(:uid => "new1")
383
+ new_page2 = Page.new(:uid => "new2")
384
+ editable1.things << new_page1
385
+ editable1.things << new_page2
386
+ editable1.save
387
+ new_page1.save
388
+ new_page2.save
389
+ Revision.patch(Content, @final_revision, [new_page2.id])
390
+ new_page1.reload
391
+ new_page2.reload
392
+ editable1.reload
393
+ Content.with_revision(@final_revision) do
394
+ published1 = Content[editable1.id]
395
+ published2 = Content[new_page1.id]
396
+ published3 = Content[new_page2.id]
397
+ published2.must_be_nil
398
+ assert_content_equal(published3, new_page2, :revision)
399
+ editable1.entry_store.reject { |e| e[0] == new_page1.id }.must_equal published1.entry_store
404
400
  end
401
+ end
405
402
 
406
- should "not duplicate entries when publishing pages for the first time" do
407
- editable1 = Content.first(:uid => '0')
408
- new_page1 = Page.new(:uid => "new1")
409
- new_page2 = Page.new(:uid => "new2")
410
- editable1.things << new_page1
411
- editable1.things << new_page2
412
- editable1.save
413
- new_page1.save
414
- new_page2.save
415
- Revision.patch(Content, @final_revision, [editable1.id, new_page2.id])
416
- new_page1.reload
417
- new_page2.reload
418
- editable1.reload
419
- Content.with_revision(@final_revision) do
420
- published1 = Content[editable1.id]
421
- published2 = Content[new_page1.id]
422
- published3 = Content[new_page2.id]
423
- published2.should be_nil
424
- assert_content_equal(published3, new_page2, :revision)
425
- assert_content_equal(published1, editable1, :revision)
426
- end
403
+ it "not duplicate entries when publishing pages for the first time" do
404
+ editable1 = Content.first(:uid => '0')
405
+ new_page1 = Page.new(:uid => "new1")
406
+ new_page2 = Page.new(:uid => "new2")
407
+ editable1.things << new_page1
408
+ editable1.things << new_page2
409
+ editable1.save
410
+ new_page1.save
411
+ new_page2.save
412
+ Revision.patch(Content, @final_revision, [editable1.id, new_page2.id])
413
+ new_page1.reload
414
+ new_page2.reload
415
+ editable1.reload
416
+ Content.with_revision(@final_revision) do
417
+ published1 = Content[editable1.id]
418
+ published2 = Content[new_page1.id]
419
+ published3 = Content[new_page2.id]
420
+ published2.must_be_nil
421
+ assert_content_equal(published3, new_page2, :revision)
422
+ assert_content_equal(published1, editable1, :revision)
427
423
  end
424
+ end
428
425
 
429
- should "remove deleted pages from the published content" do
430
- page = Page.first :uid => "0"
431
- piece = page.things.first
432
- child = piece.things.first
433
- page.things.first.destroy
434
- Revision.patch(Content, @final_revision, [page.id])
435
-
436
- Content.with_revision(@final_revision) do
437
- published_parent = Content[page.id]
438
- published_piece = Content[piece.id]
439
- published_page = Content[child.id]
440
- published_parent.should == page.reload
441
- published_piece.should be_nil
442
- published_page.should be_nil
443
- end
426
+ it "remove deleted pages from the published content" do
427
+ page = Page.first :uid => "0"
428
+ piece = page.things.first
429
+ child = piece.things.first
430
+ page.things.first.destroy
431
+ Revision.patch(Content, @final_revision, [page.id])
432
+
433
+ Content.with_revision(@final_revision) do
434
+ published_parent = Content[page.id]
435
+ published_piece = Content[piece.id]
436
+ published_page = Content[child.id]
437
+ published_parent.must_equal page.reload
438
+ published_piece.must_be_nil
439
+ published_page.must_be_nil
444
440
  end
445
441
  end
446
442
  end
443
+ end
447
444
 
448
445
 
449
- context "publication timestamps" do
450
- setup do
451
- @revision = 1
452
- Revision.delete(Content, @revision+1)
446
+ describe "publication timestamps" do
447
+ before do
448
+ @revision = 1
449
+ Revision.delete(Content, @revision+1)
450
+ end
451
+
452
+ it "set correct timestamps on first publish" do
453
+ first = Content.first
454
+ first.reload.first_published_at.must_be_nil
455
+ first.reload.last_published_at.must_be_nil
456
+ Revision.create(Content, @revision)
457
+ first.reload.first_published_at.to_i.must_equal @now.to_i
458
+ first.reload.last_published_at.to_i.must_equal @now.to_i
459
+ first.reload.first_published_revision.must_equal @revision
460
+ Content.with_editable do
461
+ first.reload.first_published_at.to_i.must_equal @now.to_i
462
+ first.reload.last_published_at.to_i.must_equal @now.to_i
463
+ first.reload.first_published_revision.must_equal @revision
453
464
  end
454
- teardown do
455
- Revision.delete(Content, @revision)
456
- Revision.delete(Content, @revision+1)
465
+ Content.with_revision(@revision) do
466
+ first.reload.first_published_at.to_i.must_equal @now.to_i
467
+ first.reload.last_published_at.to_i.must_equal @now.to_i
468
+ first.reload.first_published_revision.must_equal @revision
457
469
  end
470
+ end
458
471
 
459
- should "set correct timestamps on first publish" do
460
- first = Content.first
461
- first.reload.first_published_at.should be_nil
462
- first.reload.last_published_at.should be_nil
463
- Revision.create(Content, @revision)
464
- first.reload.first_published_at.to_i.should == @now.to_i
465
- first.reload.last_published_at.to_i.should == @now.to_i
466
- first.reload.first_published_revision.should == @revision
467
- Content.with_editable do
468
- first.reload.first_published_at.to_i.should == @now.to_i
469
- first.reload.last_published_at.to_i.should == @now.to_i
470
- first.reload.first_published_revision.should == @revision
471
- end
472
- Content.with_revision(@revision) do
473
- first.reload.first_published_at.to_i.should == @now.to_i
474
- first.reload.last_published_at.to_i.should == @now.to_i
475
- first.reload.first_published_revision.should == @revision
476
- end
472
+ it "set correct timestamps on later publishes" do
473
+ first = Content.first
474
+ first.first_published_at.must_be_nil
475
+ Revision.create(Content, @revision)
476
+ first.reload.first_published_at.to_i.must_equal @now.to_i
477
+ c = Content.create
478
+ c.first_published_at.must_be_nil
479
+ stub_time(@now + 100)
480
+ Revision.create(Content, @revision+1)
481
+ first.reload.first_published_at.to_i.must_equal @now.to_i
482
+ first.reload.last_published_at.to_i.must_equal @now.to_i + 100
483
+ Content.with_editable do
484
+ c = Content.first :id => c.id
485
+ c.first_published_at.to_i.must_equal @now.to_i + 100
477
486
  end
478
-
479
- should "set correct timestamps on later publishes" do
480
- first = Content.first
481
- first.first_published_at.should be_nil
482
- Revision.create(Content, @revision)
483
- first.reload.first_published_at.to_i.should == @now.to_i
484
- c = Content.create
485
- c.first_published_at.should be_nil
486
- stub_time(@now + 100)
487
- Revision.create(Content, @revision+1)
488
- first.reload.first_published_at.to_i.should == @now.to_i
489
- first.reload.last_published_at.to_i.should == @now.to_i + 100
490
- Content.with_editable do
491
- c = Content.first :id => c.id
492
- c.first_published_at.to_i.should == @now.to_i + 100
493
- end
494
- Content.with_revision(@revision+1) do
495
- c = Content.first :id => c.id
496
- c.first_published_at.to_i.should == @now.to_i + 100
497
- end
487
+ Content.with_revision(@revision+1) do
488
+ c = Content.first :id => c.id
489
+ c.first_published_at.to_i.must_equal @now.to_i + 100
498
490
  end
491
+ end
499
492
 
500
- should "not set publishing date for items not published" do
501
- Revision.create(Content, @revision)
502
- page = Content.first
503
- page.uid = "fish"
504
- page.save
505
- added = Content.create
506
- added.first_published_at.should be_nil
507
- Revision.patch(Content, @revision+1, [page])
508
- page.first_published_at.to_i.should == @now.to_i
509
- added.first_published_at.should be_nil
510
- added.last_published_at.should be_nil
511
- end
493
+ it "not set publishing date for items not published" do
494
+ Revision.create(Content, @revision)
495
+ page = Content.first
496
+ page.uid = "fish"
497
+ page.save
498
+ added = Content.create
499
+ added.first_published_at.must_be_nil
500
+ Revision.patch(Content, @revision+1, [page])
501
+ page.first_published_at.to_i.must_equal @now.to_i
502
+ added.first_published_at.must_be_nil
503
+ added.last_published_at.must_be_nil
504
+ end
512
505
 
513
- should "not set publishing dates if exception raised in passed block xxx" do
514
- Content.first.first_published_at.should be_nil
515
- begin
516
- Revision.create(Content, @revision) do
517
- raise Exception
518
- end
519
- rescue Exception; end
520
- Content.first.first_published_at.should be_nil
521
- end
506
+ it "not set publishing dates if exception raised in passed block" do
507
+ Content.first.first_published_at.must_be_nil
508
+ begin
509
+ Revision.create(Content, @revision) do
510
+ raise "Fail"
511
+ end
512
+ rescue Exception; end
513
+ Content.first.first_published_at.must_be_nil
514
+ end
522
515
 
523
- should "delete revision tables if exception raised in passed block" do
524
- Revision.exists?(Content, @revision).should be_false
525
- begin
526
- Revision.create(Content, @revision) do
527
- Revision.exists?(Content, @revision).should be_true
528
- Content.revision.should == @revision
529
- raise Exception
530
- end
531
- rescue Exception; end
532
- Revision.exists?(Content, @revision).should be_false
533
- end
516
+ it "delete revision tables if exception raised in passed block" do
517
+ refute Revision.exists?(Content, @revision)
518
+ begin
519
+ Revision.create(Content, @revision) do
520
+ assert Revision.exists?(Content, @revision)
521
+ Content.revision.must_equal @revision
522
+ raise "Fail"
523
+ end
524
+ rescue Exception; end
525
+ refute Revision.exists?(Content, @revision)
526
+ end
534
527
 
535
- should "always publish all if no previous revisions exist" do
536
- page = Content.first
537
- Content.filter(:first_published_at => nil).count.should == Content.count
538
- Revision.patch(Content, @revision, [page])
539
- Content.filter(:first_published_at => nil).count.should == 0
540
- end
528
+ it "always publish all if no previous revisions exist" do
529
+ page = Content.first
530
+ Content.filter(:first_published_at => nil).count.must_equal Content.count
531
+ Revision.patch(Content, @revision, [page])
532
+ Content.filter(:first_published_at => nil).count.must_equal 0
541
533
  end
542
534
  end
543
535
  end