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.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.locat +42 -0
- data/.travis/gemfiles/Gemfile.empty +7 -0
- data/.travis.yml +18 -0
- data/Gemfile +12 -8
- data/LICENSE +1 -1
- data/Rakefile +15 -157
- data/Readme.markdown +1 -1
- data/application/css/core.css.scss +22 -146
- data/application/css/definitions.css.scss +7 -3
- data/application/css/dialogue.css.scss +26 -1
- data/application/css/editing.css.scss +70 -28
- data/application/css/font.css.scss +1 -1
- data/application/css/popover.css.scss +2 -0
- data/application/css/top.css.scss +231 -0
- data/application/js/add_alias_dialogue.js +1 -1
- data/application/js/add_home_dialogue.js +1 -1
- data/application/js/ajax.js +61 -31
- data/application/js/box.js +4 -4
- data/application/js/conflicted_field_dialogue.js +1 -1
- data/application/js/content.js +5 -5
- data/application/js/dom.js +5 -0
- data/application/js/edit_panel.js +1 -0
- data/application/js/editing.js +1 -1
- data/application/js/extensions.js +8 -0
- data/application/js/field/boolean.js +31 -0
- data/application/js/field/file.js +32 -4
- data/application/js/field/image.js +24 -9
- data/application/js/field/markdown.js +87 -59
- data/application/js/field/select.js +1 -1
- data/application/js/field/webvideo.js +6 -1
- data/application/js/init.js +2 -2
- data/application/js/jquery-selection-position.js +130 -0
- data/application/js/location.js +4 -25
- data/application/js/meta_view/user_admin.js +2 -2
- data/application/js/metadata.js +2 -2
- data/application/js/page_browser.js +1 -1
- data/application/js/panel/root_menu.js +0 -1
- data/application/js/popover.js +27 -12
- data/application/js/popover_view.js +20 -4
- data/application/js/preview.js +31 -16
- data/application/js/progress.js +22 -21
- data/application/js/publish.js +18 -7
- data/application/js/sharded_upload.js +9 -6
- data/application/js/spontaneous.js +3 -1
- data/application/js/top_bar.js +264 -173
- data/application/js/upload.js +12 -5
- data/application/js/upload_manager.js +4 -3
- data/application/js/user.js +1 -2
- data/application/js/views/box_view.js +1 -1
- data/application/js/views/page_view.js +16 -5
- data/application/js/views/piece_view.js +5 -4
- data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
- data/application/views/index.erb +6 -14
- data/application/views/login.erb +6 -25
- data/application/views/schema_modification_error.html.erb +3 -7
- data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
- data/db/migrations/20130813111009_increase_path_length.rb +14 -0
- data/gem-public_cert.pem +20 -0
- data/lib/spontaneous/asset/app_compiler.rb +44 -0
- data/lib/spontaneous/asset/environment.rb +225 -0
- data/lib/spontaneous/asset.rb +2 -67
- data/lib/spontaneous/box.rb +0 -1
- data/lib/spontaneous/capistrano/deploy.rb +2 -2
- data/lib/spontaneous/capistrano/sync.rb +1 -1
- data/lib/spontaneous/cli/init.rb +36 -13
- data/lib/spontaneous/cli/server.rb +0 -1
- data/lib/spontaneous/cli/site.rb +2 -1
- data/lib/spontaneous/cli.rb +3 -1
- data/lib/spontaneous/collections/entry_set.rb +4 -12
- data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
- data/lib/spontaneous/collections/prototype_set.rb +6 -5
- data/lib/spontaneous/crypt.rb +2 -2
- data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
- data/lib/spontaneous/data_mapper.rb +1 -1
- data/lib/spontaneous/errors.rb +6 -0
- data/lib/spontaneous/extensions/object_space.rb +6 -0
- data/lib/spontaneous/facet.rb +1 -0
- data/lib/spontaneous/field/base.rb +86 -13
- data/lib/spontaneous/field/boolean.rb +65 -0
- data/lib/spontaneous/field/file.rb +17 -6
- data/lib/spontaneous/field/html.rb +13 -0
- data/lib/spontaneous/field/image/size.rb +76 -0
- data/lib/spontaneous/field/image.rb +99 -414
- data/lib/spontaneous/field/tags.rb +36 -0
- data/lib/spontaneous/field/update.rb +1 -1
- data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
- data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
- data/lib/spontaneous/field/webvideo/vine.rb +94 -0
- data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
- data/lib/spontaneous/field/webvideo.rb +100 -250
- data/lib/spontaneous/field.rb +1 -1
- data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
- data/lib/spontaneous/generators/site/assets/README.md +20 -0
- data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
- data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
- data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
- data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
- data/lib/spontaneous/generators/site/public/README.md +12 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
- data/lib/spontaneous/generators/site.rb +77 -35
- data/lib/spontaneous/layout.rb +6 -7
- data/lib/spontaneous/loader.rb +21 -13
- data/lib/spontaneous/media/file.rb +22 -9
- data/lib/spontaneous/media/image/attributes.rb +33 -0
- data/lib/spontaneous/media/image/format/gif.rb +4 -0
- data/lib/spontaneous/media/image/format/jpg.rb +17 -0
- data/lib/spontaneous/media/image/format/png.rb +4 -0
- data/lib/spontaneous/media/image/format/webp.rb +26 -0
- data/lib/spontaneous/media/image/format.rb +79 -0
- data/lib/spontaneous/media/image/optimizer.rb +69 -0
- data/lib/spontaneous/media/image/processor.rb +17 -0
- data/lib/spontaneous/media/image/renderable.rb +52 -0
- data/lib/spontaneous/media/image/skeptick.rb +70 -0
- data/lib/spontaneous/media/image.rb +50 -0
- data/lib/spontaneous/media/temp_file.rb +4 -0
- data/lib/spontaneous/media.rb +1 -0
- data/lib/spontaneous/model/core/aliases.rb +14 -8
- data/lib/spontaneous/model/core/boxes.rb +5 -2
- data/lib/spontaneous/model/core/entries.rb +4 -0
- data/lib/spontaneous/model/core/entry.rb +1 -0
- data/lib/spontaneous/model/core/fields.rb +5 -2
- data/lib/spontaneous/model/core/locks.rb +16 -0
- data/lib/spontaneous/model/core/media.rb +1 -15
- data/lib/spontaneous/model/core.rb +31 -1
- data/lib/spontaneous/model/page/controllers.rb +2 -2
- data/lib/spontaneous/model/page/formats.rb +1 -4
- data/lib/spontaneous/model/page/layouts.rb +6 -2
- data/lib/spontaneous/model/page/locks.rb +8 -2
- data/lib/spontaneous/model/page/page_tree.rb +2 -2
- data/lib/spontaneous/model/page/paths.rb +74 -9
- data/lib/spontaneous/model/page.rb +11 -3
- data/lib/spontaneous/model.rb +6 -6
- data/lib/spontaneous/output/context/render_cache.rb +23 -0
- data/lib/spontaneous/output/context.rb +56 -30
- data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
- data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
- data/lib/spontaneous/output/template/renderer.rb +17 -5
- data/lib/spontaneous/output.rb +0 -1
- data/lib/spontaneous/paths.rb +6 -2
- data/lib/spontaneous/permissions/access_key.rb +18 -0
- data/lib/spontaneous/permissions/user.rb +1 -1
- data/lib/spontaneous/permissions.rb +4 -1
- data/lib/spontaneous/plugins/application/state.rb +19 -12
- data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
- data/lib/spontaneous/published_revision.rb +7 -0
- data/lib/spontaneous/publishing/immediate.rb +43 -34
- data/lib/spontaneous/publishing/revision.rb +9 -6
- data/lib/spontaneous/rack/asset_server.rb +20 -0
- data/lib/spontaneous/rack/back/alias.rb +46 -0
- data/lib/spontaneous/rack/back/application_assets.rb +28 -0
- data/lib/spontaneous/rack/back/base.rb +34 -0
- data/lib/spontaneous/rack/back/changes.rb +19 -0
- data/lib/spontaneous/rack/back/content.rb +54 -0
- data/lib/spontaneous/rack/back/events.rb +38 -0
- data/lib/spontaneous/rack/back/field.rb +37 -0
- data/lib/spontaneous/rack/back/file.rb +118 -0
- data/lib/spontaneous/rack/back/helpers.rb +71 -0
- data/lib/spontaneous/rack/back/index.rb +16 -0
- data/lib/spontaneous/rack/back/login.rb +47 -0
- data/lib/spontaneous/rack/back/map.rb +24 -0
- data/lib/spontaneous/rack/back/page.rb +46 -0
- data/lib/spontaneous/rack/back/preview.rb +43 -0
- data/lib/spontaneous/rack/back/schema.rb +30 -0
- data/lib/spontaneous/rack/back/site.rb +25 -0
- data/lib/spontaneous/rack/back/site_assets.rb +13 -0
- data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
- data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
- data/lib/spontaneous/rack/back.rb +85 -764
- data/lib/spontaneous/rack/cacheable_file.rb +3 -3
- data/lib/spontaneous/rack/front.rb +16 -9
- data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
- data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
- data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
- data/lib/spontaneous/rack/middleware/scope.rb +60 -0
- data/lib/spontaneous/rack/middleware.rb +6 -0
- data/lib/spontaneous/rack/page_controller.rb +18 -5
- data/lib/spontaneous/rack/public.rb +17 -11
- data/lib/spontaneous/rack.rb +34 -24
- data/lib/spontaneous/revision.rb +29 -2
- data/lib/spontaneous/schema/uid.rb +4 -3
- data/lib/spontaneous/schema/uid_map.rb +5 -24
- data/lib/spontaneous/schema.rb +1 -0
- data/lib/spontaneous/search/database.rb +8 -0
- data/lib/spontaneous/search/field.rb +1 -1
- data/lib/spontaneous/search/index.rb +3 -5
- data/lib/spontaneous/server.rb +1 -1
- data/lib/spontaneous/simultaneous.rb +1 -1
- data/lib/spontaneous/site/features.rb +4 -5
- data/lib/spontaneous/site/helpers.rb +22 -5
- data/lib/spontaneous/site/instance.rb +2 -2
- data/lib/spontaneous/site/selectors.rb +22 -3
- data/lib/spontaneous/storage/cloud.rb +13 -9
- data/lib/spontaneous/storage/local.rb +11 -6
- data/lib/spontaneous/style.rb +40 -23
- data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
- data/lib/spontaneous/utils/smush_it.rb +1 -1
- data/lib/spontaneous/version.rb +1 -1
- data/lib/spontaneous.rb +35 -33
- data/spontaneous.gemspec +53 -787
- data/test/experimental/test_crypt.rb +56 -56
- data/test/experimental/test_features.rb +16 -27
- data/test/fixtures/assets/public1/css/data.css.scss +3 -0
- data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
- data/test/fixtures/assets/public1/css/import.css.scss +1 -0
- data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
- data/test/fixtures/assets/public1/js/a.js +1 -1
- data/test/fixtures/assets/public1/js/all.js +4 -0
- data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
- data/test/fixtures/assets/public1/x.js +1 -0
- data/test/fixtures/assets/public2/css/all.css +4 -0
- data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
- data/test/fixtures/assets/public2/i/y.png +0 -0
- data/test/fixtures/assets/public2/js/b.js +1 -1
- data/test/fixtures/assets/public2/js/c.js +1 -1
- data/test/fixtures/images/size.extended.webp +0 -0
- data/test/fixtures/images/size.lossless.webp +0 -0
- data/test/fixtures/images/size.lossy.webp +0 -0
- data/test/fixtures/schema/before.yml +4 -4
- data/test/fixtures/schema/schema.yml +1 -1
- data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
- data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
- data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
- data/test/functional/test_application.rb +108 -106
- data/test/functional/test_back.rb +924 -930
- data/test/functional/test_front.rb +285 -238
- data/test/functional/test_user_manager.rb +75 -100
- data/test/integration/test_installation.rb +1 -1
- data/test/support/matchers.rb +12 -0
- data/test/support/minitest.rb +121 -0
- data/test/support/rack.rb +45 -0
- data/test/support/test_start_finish.rb +103 -0
- data/test/test_helper.rb +21 -68
- data/test/test_integration_helper.rb +1 -3
- data/test/unit/test_alias.rb +432 -408
- data/test/unit/test_asset_bundler.rb +58 -58
- data/test/unit/test_assets.rb +485 -155
- data/test/unit/test_async.rb +16 -37
- data/test/unit/test_authentication.rb +425 -457
- data/test/unit/test_boxes.rb +191 -191
- data/test/unit/test_changesets.rb +244 -254
- data/test/unit/test_config.rb +128 -142
- data/test/unit/test_content.rb +313 -359
- data/test/unit/test_content_inheritance.rb +29 -30
- data/test/unit/test_datamapper.rb +1205 -1080
- data/test/unit/test_datamapper_content.rb +49 -51
- data/test/unit/test_extensions.rb +23 -23
- data/test/unit/test_fields.rb +1488 -1180
- data/test/unit/test_formats.rb +158 -158
- data/test/unit/test_generators.rb +98 -40
- data/test/unit/test_helpers.rb +73 -76
- data/test/unit/test_image_size.rb +53 -22
- data/test/unit/test_images.rb +164 -165
- data/test/unit/test_layouts.rb +133 -122
- data/test/unit/test_logger.rb +14 -17
- data/test/unit/test_media.rb +69 -84
- data/test/unit/test_modifications.rb +513 -525
- data/test/unit/test_page.rb +462 -361
- data/test/unit/test_permissions.rb +379 -364
- data/test/unit/test_piece.rb +67 -75
- data/test/unit/test_plugins.rb +82 -89
- data/test/unit/test_prototype_set.rb +215 -216
- data/test/unit/test_prototypes.rb +114 -124
- data/test/unit/test_publishing.rb +252 -289
- data/test/unit/test_render.rb +167 -115
- data/test/unit/test_revisions.rb +436 -444
- data/test/unit/test_schema.rb +339 -309
- data/test/unit/test_search.rb +577 -574
- data/test/unit/test_serialisation.rb +136 -147
- data/test/unit/test_site.rb +252 -227
- data/test/unit/test_skeptick.rb +130 -0
- data/test/unit/test_storage.rb +46 -40
- data/test/unit/test_structure.rb +57 -66
- data/test/unit/test_styles.rb +104 -104
- data/test/unit/test_templates.rb +72 -57
- data/test/unit/test_type_hierarchy.rb +15 -16
- data/test/unit/test_visibility.rb +239 -257
- metadata +455 -326
- data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
- data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
- data/application/js/vendor/JS.Class-2.1.5/README +0 -30
- data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
- data/application/js/vendor/jquery-1.6.2.min.js +0 -18
- data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
- data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
- data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
- data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
- data/bin/limit-upload +0 -5
- data/bin/unlimit-upload +0 -3
- data/lib/spontaneous/asset/file.rb +0 -25
- data/lib/spontaneous/asset/source.rb +0 -28
- data/lib/spontaneous/image_size.rb +0 -123
- data/lib/spontaneous/output/assets/compression.rb +0 -58
- data/lib/spontaneous/output/assets.rb +0 -32
- data/lib/spontaneous/rack/around_back.rb +0 -20
- data/lib/spontaneous/rack/around_front.rb +0 -27
- data/lib/spontaneous/rack/around_preview.rb +0 -22
- data/lib/spontaneous/rack/assets.rb +0 -126
- data/lib/spontaneous/rack/authentication.rb +0 -20
- data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
- data/lib/spontaneous/rack/helpers.rb +0 -52
- data/lib/spontaneous/rack/http.rb +0 -18
- data/lib/spontaneous/rack/media.rb +0 -30
- data/lib/spontaneous/rack/query_authentication.rb +0 -35
- data/lib/spontaneous/rack/reloader.rb +0 -45
- data/lib/spontaneous/rack/user_helpers.rb +0 -28
- /data/{README → application/js/field/markdown/text_command.js} +0 -0
- /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
- /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
- /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
- /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
- /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
- /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
- /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
- /data/{lib/spontaneous/generators/site/public/js/site.js → test/fixtures/templates/aliases/aa_alias.html.cut} +0 -0
data/test/unit/test_revisions.rb
CHANGED
@@ -3,541 +3,533 @@
|
|
3
3
|
require File.expand_path('../../test_helper', __FILE__)
|
4
4
|
|
5
5
|
|
6
|
-
|
6
|
+
describe "Revisions" do
|
7
7
|
|
8
8
|
Revision = Spontaneous::Publishing::Revision
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
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
|
-
|
14
|
+
Content.delete
|
24
15
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
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
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
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 |
|
40
|
-
d
|
41
|
-
|
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
|
-
|
40
|
+
c.save
|
52
41
|
end
|
42
|
+
root.save
|
53
43
|
|
54
|
-
|
55
|
-
|
56
|
-
|
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
|
-
|
48
|
+
let(:root) { root }
|
49
|
+
end
|
61
50
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
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
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
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
|
-
|
75
|
-
|
76
|
-
|
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
|
-
|
83
|
-
Content.with_revision(23) do
|
84
|
-
Content.revision.should == 23
|
85
|
-
end
|
86
|
-
end
|
67
|
+
describe "data sources" do
|
87
68
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
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
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
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
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
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
|
-
|
114
|
-
|
115
|
-
|
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
|
-
|
125
|
-
|
126
|
-
Content.
|
127
|
-
|
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
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
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
|
-
|
138
|
-
|
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
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
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
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
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
|
-
|
160
|
-
|
139
|
+
describe "subclasses" do
|
140
|
+
before do
|
141
|
+
class ::Subclass < Page; end
|
161
142
|
end
|
162
143
|
|
163
|
-
|
164
|
-
|
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
|
-
|
170
|
-
|
171
|
-
|
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
|
-
|
175
|
-
|
176
|
-
|
159
|
+
describe "content revisions" do
|
160
|
+
before do
|
161
|
+
@revision = 1
|
162
|
+
end
|
177
163
|
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
end
|
164
|
+
after do
|
165
|
+
# Revision.delete_all(Content)
|
166
|
+
end
|
182
167
|
|
183
|
-
|
184
|
-
|
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
|
-
|
187
|
-
|
188
|
-
|
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
|
-
|
191
|
-
|
192
|
-
|
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
|
-
|
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
|
-
|
197
|
-
|
198
|
-
end
|
188
|
+
Content.history_dataset.count.must_equal 10
|
189
|
+
Content.archive_dataset.count.must_equal 10
|
199
190
|
|
200
|
-
|
201
|
-
|
191
|
+
tables.each do |t|
|
192
|
+
DB.create_table(t){Integer :id} rescue nil
|
202
193
|
end
|
203
194
|
|
204
|
-
|
205
|
-
DB.tables.include?(
|
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
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
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
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
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
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
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
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
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
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
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
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
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
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
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
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
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
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
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
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
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
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
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
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
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
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
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
|
-
|
455
|
-
|
456
|
-
|
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
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
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
|
-
|
480
|
-
|
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
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
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
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
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
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
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
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
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
|