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_page.rb
CHANGED
@@ -3,374 +3,475 @@
|
|
3
3
|
require File.expand_path('../../test_helper', __FILE__)
|
4
4
|
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
def setup
|
6
|
+
describe "Page" do
|
7
|
+
before do
|
9
8
|
@site = setup_site
|
9
|
+
Content.delete
|
10
|
+
class ::Page
|
11
|
+
field :title, :string
|
12
|
+
box :sub
|
13
|
+
end
|
10
14
|
end
|
11
15
|
|
12
|
-
|
16
|
+
after do
|
17
|
+
Object.send(:remove_const, :Page)
|
18
|
+
Object.send(:remove_const, :Piece)
|
13
19
|
teardown_site
|
14
20
|
end
|
15
21
|
|
16
|
-
|
17
|
-
|
22
|
+
describe "Root page" do
|
23
|
+
it "be created by first page insert" do
|
24
|
+
p = Page.create
|
25
|
+
assert p.root?
|
26
|
+
p.path.must_equal "/"
|
27
|
+
p.slug.must_equal ""
|
28
|
+
p.parent.must_be_nil
|
29
|
+
end
|
30
|
+
|
31
|
+
it "be a singleton" do
|
32
|
+
p = Page.create
|
33
|
+
assert p.root?
|
34
|
+
q = Page.create
|
35
|
+
refute q.root?
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "invisible roots" do
|
40
|
+
before do
|
41
|
+
@root = Page.create
|
42
|
+
assert @root.root?
|
43
|
+
class ::ErrorPage < Page; end
|
44
|
+
ErrorPage.box :pages
|
45
|
+
end
|
46
|
+
|
47
|
+
after do
|
48
|
+
Object.send :remove_const, :ErrorPage rescue nil
|
49
|
+
end
|
50
|
+
|
51
|
+
it "is given a path starting with '#'" do
|
52
|
+
root = Page.create slug: "error"
|
53
|
+
root.path.must_equal "#error"
|
54
|
+
end
|
55
|
+
|
56
|
+
it "re-calculates its path using '#'" do
|
57
|
+
root = ErrorPage.create slug: "error"
|
58
|
+
page = Page.new slug: "404"
|
59
|
+
root.pages << page
|
60
|
+
root.save
|
61
|
+
root.path.must_equal "#error"
|
62
|
+
root.slug = "changed"
|
63
|
+
root.save
|
64
|
+
root.path.must_equal "#changed"
|
65
|
+
page.reload.path.must_equal "#changed/404"
|
66
|
+
end
|
67
|
+
|
68
|
+
it "has paths that start with '#'" do
|
69
|
+
root = ErrorPage.create slug: "error"
|
70
|
+
page = Page.new slug: "404"
|
71
|
+
root.pages << page
|
72
|
+
root.save
|
73
|
+
page.path.must_equal "#error/404"
|
74
|
+
end
|
75
|
+
|
76
|
+
it "has a depth of 0" do
|
77
|
+
root = ErrorPage.create slug: "error"
|
78
|
+
root.depth.must_equal 0
|
79
|
+
end
|
80
|
+
|
81
|
+
it "raises an error if the alternate root doesn't have a slug" do
|
82
|
+
lambda { Page.create slug: "" }.must_raise Spontaneous::AnonymousRootException
|
83
|
+
end
|
84
|
+
|
85
|
+
it "allows the creation of invisible roots without a visible root" do
|
86
|
+
Page.root.destroy
|
87
|
+
Page.root.must_equal nil
|
88
|
+
root = ErrorPage.create_root "error"
|
89
|
+
Page.root.must_equal nil
|
90
|
+
Site["#error"].must_equal root
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe "Slugs" do
|
95
|
+
it "be generated if missing" do
|
96
|
+
o = Page.create
|
97
|
+
p = Page.create
|
98
|
+
p.slug.wont_equal ""
|
99
|
+
p.save
|
100
|
+
p.reload.slug.wont_equal ""
|
101
|
+
end
|
102
|
+
|
103
|
+
it "be made URL safe" do
|
104
|
+
o = Page.create
|
105
|
+
p = Page.create
|
106
|
+
p.slug = " something's illegal and ugly!!"
|
107
|
+
p.slug.must_equal "somethings-illegal-and-ugly"
|
108
|
+
p.save
|
109
|
+
p.reload.slug.must_equal "somethings-illegal-and-ugly"
|
110
|
+
end
|
111
|
+
|
112
|
+
it "be set from title if using generated slug" do
|
113
|
+
r = Page.create
|
114
|
+
slug = Page.generate_default_slug
|
115
|
+
Page.stubs(:generate_default_slug).returns(slug)
|
116
|
+
o = Page.create(:title => "New Page")
|
117
|
+
p = Page.create(:title => "New Page")
|
118
|
+
o.slug.must_equal slug
|
119
|
+
r.sub << o
|
120
|
+
o.save
|
121
|
+
o = Page[o.id]
|
122
|
+
o.slug.must_equal slug
|
123
|
+
o.sub << p
|
124
|
+
o.save
|
125
|
+
o = Page[o.id]
|
126
|
+
o.slug.must_equal slug
|
127
|
+
o.title = "New Title"
|
128
|
+
o.save
|
129
|
+
o.reload
|
130
|
+
o.slug.must_equal "new-title"
|
131
|
+
o.title = "Another Title"
|
132
|
+
o.save
|
133
|
+
o.reload
|
134
|
+
o.slug.must_equal "new-title"
|
135
|
+
end
|
136
|
+
|
137
|
+
it "doesn't set a conflicting url on creation" do
|
138
|
+
r = Page.create
|
139
|
+
o = Page.create(:title => "New Page")
|
140
|
+
r.sub << o
|
141
|
+
o.save
|
142
|
+
|
143
|
+
p = Page.create(:title => "New Page")
|
144
|
+
r.sub << p
|
145
|
+
p.save
|
146
|
+
slug_o = o.slug
|
147
|
+
slug_p = p.slug
|
148
|
+
o.slug.wont_equal p.slug
|
149
|
+
end
|
150
|
+
|
151
|
+
it "fixes conflicting slugs automatically" do
|
152
|
+
r = Page.create
|
153
|
+
o = Page.create(:title => "New Page", :slug => "my-slug")
|
154
|
+
r.sub << o
|
155
|
+
o.save
|
156
|
+
|
157
|
+
p = Page.create(:title => "New Page")
|
158
|
+
r.sub << p
|
159
|
+
p.save
|
160
|
+
p.slug = "my-slug"
|
161
|
+
p.save
|
162
|
+
o.slug.wont_equal p.slug
|
163
|
+
p.path.must_equal "/my-slug-01"
|
164
|
+
end
|
165
|
+
|
166
|
+
it "fixes conflicting slugs created from titles automatically" do
|
167
|
+
r = Page.create
|
168
|
+
o = Page.create(:title => "New Page", :slug => "my-slug")
|
169
|
+
r.sub << o
|
170
|
+
o.save
|
171
|
+
|
172
|
+
p = Page.create(:title => "New Page")
|
173
|
+
r.sub << p
|
174
|
+
p.save
|
175
|
+
p.title = "My Slug"
|
176
|
+
p.save
|
177
|
+
p.slug.must_equal "my-slug-01"
|
178
|
+
o.slug.wont_equal p.slug
|
179
|
+
p.path.must_equal "/my-slug-01"
|
180
|
+
end
|
181
|
+
|
182
|
+
it "not be longer than 64 chars" do
|
183
|
+
o = Page.create
|
184
|
+
long_slug = (["bang"]*100)
|
185
|
+
o.slug = long_slug.join(' ')
|
186
|
+
o.slug.length.must_equal 64
|
187
|
+
o.slug.must_equal long_slug.join('-')[0..63]
|
188
|
+
end
|
189
|
+
|
190
|
+
it "should crop titles at word boundaries" do
|
191
|
+
o = Page.create
|
192
|
+
long_slug = (["bangor"]*100)
|
193
|
+
expected = %w(bangor bangor bangor bangor bangor bangor bangor bangor bangor).join('-')
|
194
|
+
o.slug = long_slug.join(' ')
|
195
|
+
o.slug.length.must_equal expected.length
|
196
|
+
o.slug.must_equal expected
|
197
|
+
end
|
198
|
+
|
199
|
+
it "should just crop a very long word to the max length" do
|
200
|
+
o = Page.create
|
201
|
+
o.slug = "a"*100
|
202
|
+
o.slug.length.must_equal 64
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
describe "Pages in tree" do
|
207
|
+
before do
|
18
208
|
Content.delete
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
should "know their siblings" do
|
287
|
-
@r.siblings.should == [@s]
|
288
|
-
@s.siblings.should == [@r]
|
289
|
-
end
|
290
|
-
|
291
|
-
should "always have the right path" do
|
292
|
-
@q.slug = "changed"
|
293
|
-
@q.save
|
294
|
-
@p.reload.path.should == "/"
|
295
|
-
@q.reload.path.should == "/changed"
|
296
|
-
@r.reload.path.should == "/changed/#{@r.slug}"
|
297
|
-
@s.reload.path.should == "/changed/#{@s.slug}"
|
298
|
-
@t.reload.path.should == "/changed/#{@s.slug}/#{@t.slug}"
|
299
|
-
end
|
300
|
-
|
301
|
-
should "have direct access to ancestors at any depth" do
|
302
|
-
@q.ancestor(0).should == @p
|
303
|
-
@r.ancestor(0).should == @p
|
304
|
-
@r.ancestor(1).should == @q
|
305
|
-
@s.ancestor(1).should == @q
|
306
|
-
@t.ancestor(1).should == @q
|
307
|
-
@t.ancestor(2).should == @s
|
308
|
-
@t.ancestor(-1).should == @s
|
309
|
-
@t.ancestor(-2).should == @q
|
310
|
-
end
|
311
|
-
|
312
|
-
should "test for ancestry" do
|
313
|
-
@t.ancestor?(@s).should be_true
|
314
|
-
@t.ancestor?(@q).should be_true
|
315
|
-
@t.ancestor?(@p).should be_true
|
316
|
-
@q.ancestor?(@t).should be_false
|
317
|
-
end
|
318
|
-
|
319
|
-
should "know if it's in the current path" do
|
320
|
-
@t.active?(@s).should be_true
|
321
|
-
@t.active?(@t).should be_true
|
322
|
-
@t.active?(@q).should be_true
|
323
|
-
@t.active?(@p).should be_true
|
324
|
-
@q.active?(@t).should be_false
|
325
|
-
end
|
326
|
-
|
327
|
-
should "provide a list of pages at any depth" do
|
328
|
-
@t.at_depth(2).should == [@r, @s]
|
329
|
-
@p.at_depth(1).should == [@q]
|
330
|
-
lambda { @p.at_depth(2) }.must_raise(ArgumentError)
|
331
|
-
end
|
332
|
-
end
|
333
|
-
|
334
|
-
context "page pieces" do
|
335
|
-
setup do
|
336
|
-
Page.box :things
|
337
|
-
Piece.box :things
|
338
|
-
@parent = Page.create
|
339
|
-
@piece = Piece.new
|
340
|
-
@child = Page.new
|
341
|
-
@parent.things << @piece
|
342
|
-
@piece.things << @child
|
343
|
-
@parent.save
|
344
|
-
@piece.save
|
345
|
-
@child.save
|
346
|
-
@page_piece = @parent.things.first.things.first
|
347
|
-
end
|
348
|
-
|
349
|
-
should "report their depth according to their position in the piece tree" do
|
350
|
-
@parent.depth.should == 0
|
351
|
-
@parent.contents.first.depth.should == 1
|
352
|
-
@parent.contents.first.contents.first.depth.should == 2
|
353
|
-
end
|
354
|
-
|
355
|
-
should "know their page" do
|
356
|
-
@page_piece.page.should == @parent
|
357
|
-
end
|
358
|
-
|
359
|
-
should "know their container" do
|
360
|
-
@page_piece.container.should == @piece.things
|
361
|
-
end
|
362
|
-
|
363
|
-
should "know their box" do
|
364
|
-
@page_piece.box.should == @piece.things
|
365
|
-
end
|
366
|
-
|
367
|
-
should "know their parent" do
|
368
|
-
@page_piece.parent.should == @piece
|
369
|
-
end
|
370
|
-
|
371
|
-
should "know their owner" do
|
372
|
-
@page_piece.owner.should == @piece
|
373
|
-
end
|
209
|
+
@p = Page.create
|
210
|
+
assert @p.root?
|
211
|
+
@q = Page.new(:slug => 'q')
|
212
|
+
@r = Page.new(:slug => 'r')
|
213
|
+
@s = Page.new(:slug => 's')
|
214
|
+
@t = Page.new(:slug => 't')
|
215
|
+
@p.sub << @q
|
216
|
+
@q.sub << @r
|
217
|
+
@q.sub << @s
|
218
|
+
@s.sub << @t
|
219
|
+
@p.save
|
220
|
+
@q.save
|
221
|
+
@r.save
|
222
|
+
@s.save
|
223
|
+
@t.save
|
224
|
+
# doing this means that the == tests work below
|
225
|
+
@p = Page[@p.id]
|
226
|
+
@q = Page[@q.id]
|
227
|
+
@r = Page[@r.id]
|
228
|
+
@s = Page[@s.id]
|
229
|
+
@t = Page[@t.id]
|
230
|
+
end
|
231
|
+
|
232
|
+
it "be able to find a reference to their inline entry" do
|
233
|
+
@q.entry.class.must_equal Spontaneous::PagePiece
|
234
|
+
end
|
235
|
+
|
236
|
+
it "have a reference to their parent" do
|
237
|
+
@p.parent.must_be_nil
|
238
|
+
@q.parent.must_equal @p
|
239
|
+
@r.parent.must_equal @q
|
240
|
+
@s.parent.must_equal @q
|
241
|
+
@t.parent.must_equal @s
|
242
|
+
end
|
243
|
+
it "have a reference to their owner" do
|
244
|
+
@p.owner.must_be_nil
|
245
|
+
@q.owner.must_equal @p
|
246
|
+
@r.owner.must_equal @q
|
247
|
+
@s.owner.must_equal @q
|
248
|
+
@t.owner.must_equal @s
|
249
|
+
end
|
250
|
+
|
251
|
+
it "know their container" do
|
252
|
+
@p.container.must_be_nil
|
253
|
+
@q.container.must_equal @p.sub
|
254
|
+
@r.container.must_equal @q.sub
|
255
|
+
@s.container.must_equal @q.sub
|
256
|
+
@t.container.must_equal @s.sub
|
257
|
+
end
|
258
|
+
|
259
|
+
it "know their containing box" do
|
260
|
+
@p.box.must_be_nil
|
261
|
+
@q.box.must_equal @p.sub
|
262
|
+
@r.box.must_equal @q.sub
|
263
|
+
@s.box.must_equal @q.sub
|
264
|
+
@t.box.must_equal @s.sub
|
265
|
+
end
|
266
|
+
|
267
|
+
it "have a list of their children" do
|
268
|
+
@p.children.must_equal [@q]
|
269
|
+
@q.children.must_equal [@r, @s]
|
270
|
+
@r.children.must_equal []
|
271
|
+
@s.children.must_equal [@t]
|
272
|
+
@t.children.must_equal []
|
273
|
+
end
|
274
|
+
|
275
|
+
it "have a reference to themselves as page" do
|
276
|
+
@p.page.must_equal @p
|
277
|
+
@q.page.must_equal @q
|
278
|
+
@r.page.must_equal @r
|
279
|
+
@s.page.must_equal @s
|
280
|
+
@t.page.must_equal @t
|
281
|
+
end
|
282
|
+
|
283
|
+
it "have a reference to themselves as content_instance" do
|
284
|
+
@p.content_instance.must_equal @p
|
285
|
+
end
|
286
|
+
|
287
|
+
it "keep track of their depth" do
|
288
|
+
@p.depth.must_equal 0
|
289
|
+
@q.depth.must_equal 1
|
290
|
+
@r.depth.must_equal 2
|
291
|
+
@s.depth.must_equal 2
|
292
|
+
@t.depth.must_equal 3
|
293
|
+
end
|
294
|
+
|
295
|
+
it "have the correct page hierarchy" do
|
296
|
+
Page.box :things1
|
297
|
+
Page.box :things2
|
298
|
+
a = Page.new
|
299
|
+
c = Page.new
|
300
|
+
d = Page.new
|
301
|
+
e = Page.new
|
302
|
+
a.things1 << c
|
303
|
+
a.things2 << d
|
304
|
+
a.things2 << e
|
305
|
+
a.save
|
306
|
+
a.reload
|
307
|
+
c.reload
|
308
|
+
d.reload
|
309
|
+
e.reload
|
310
|
+
c.parent.must_equal a
|
311
|
+
d.parent.must_equal a
|
312
|
+
e.parent.must_equal a
|
313
|
+
c.content_ancestors.must_equal [a, a.things1]
|
314
|
+
d.content_ancestors.must_equal [a, a.things2]
|
315
|
+
e.content_ancestors.must_equal [a, a.things2]
|
316
|
+
# the zeroth box is 'sub'
|
317
|
+
c.page_order_string.must_equal "00001.00000"
|
318
|
+
d.page_order_string.must_equal "00002.00000"
|
319
|
+
e.page_order_string.must_equal "00002.00001"
|
320
|
+
end
|
321
|
+
|
322
|
+
it "have the correct page hierarchy for pages within pieces" do
|
323
|
+
Page.box :things
|
324
|
+
Piece.box :pages
|
325
|
+
a = Page.new
|
326
|
+
b = Piece.new
|
327
|
+
a.things << b
|
328
|
+
c = Page.new
|
329
|
+
d = Page.new
|
330
|
+
b.pages << c
|
331
|
+
b.pages << d
|
332
|
+
a.save
|
333
|
+
a.reload
|
334
|
+
b.reload
|
335
|
+
c.reload
|
336
|
+
d.reload
|
337
|
+
c.parent.must_equal a
|
338
|
+
c.content_ancestors.must_equal [a, a.things, b, b.pages]
|
339
|
+
c.page_order_string.must_equal "00001.00000.00000.00000"
|
340
|
+
d.page_order_string.must_equal "00001.00000.00000.00001"
|
341
|
+
end
|
342
|
+
|
343
|
+
it "have correct paths" do
|
344
|
+
@p.path.must_equal "/"
|
345
|
+
@q.path.must_equal "/q"
|
346
|
+
@r.path.must_equal "/q/r"
|
347
|
+
@s.path.must_equal "/q/s"
|
348
|
+
@t.path.must_equal "/q/s/t"
|
349
|
+
end
|
350
|
+
|
351
|
+
it "update paths when being adopted" do
|
352
|
+
@p.sub.adopt(@s)
|
353
|
+
@s.reload
|
354
|
+
@t.reload
|
355
|
+
@s.path.must_equal "/s"
|
356
|
+
@t.path.must_equal "/s/t"
|
357
|
+
end
|
358
|
+
|
359
|
+
it "all have a reference to the root node" do
|
360
|
+
@p.root.must_equal @p
|
361
|
+
@q.root.must_equal @p
|
362
|
+
@r.root.must_equal @p
|
363
|
+
@s.root.must_equal @p
|
364
|
+
@t.root.must_equal @p
|
365
|
+
end
|
366
|
+
|
367
|
+
it "have correct ancestor paths" do
|
368
|
+
@p.ancestor_path.must_equal []
|
369
|
+
@q.ancestor_path.must_equal [@p.id]
|
370
|
+
@r.ancestor_path.must_equal [@p.id, @q.id]
|
371
|
+
@s.ancestor_path.must_equal [@p.id, @q.id]
|
372
|
+
@t.ancestor_path.must_equal [@p.id, @q.id, @s.id]
|
373
|
+
end
|
374
|
+
it "know their ancestors" do
|
375
|
+
# must be a better way to test these arrays
|
376
|
+
@p.ancestors.must_equal []
|
377
|
+
@q.ancestors.must_equal [@p]
|
378
|
+
@r.ancestors.must_equal [@p, @q]
|
379
|
+
@s.ancestors.must_equal [@p, @q]
|
380
|
+
@t.ancestors.must_equal [@p, @q, @s]
|
381
|
+
end
|
382
|
+
|
383
|
+
it "know their generation" do
|
384
|
+
@r.generation.must_equal [@r, @s]
|
385
|
+
@s.generation.must_equal [@r, @s]
|
386
|
+
end
|
387
|
+
|
388
|
+
it "know their siblings" do
|
389
|
+
@r.siblings.must_equal [@s]
|
390
|
+
@s.siblings.must_equal [@r]
|
391
|
+
end
|
392
|
+
|
393
|
+
it "always have the right path" do
|
394
|
+
@q.slug = "changed"
|
395
|
+
@q.save
|
396
|
+
@p.reload.path.must_equal "/"
|
397
|
+
@q.reload.path.must_equal "/changed"
|
398
|
+
@r.reload.path.must_equal "/changed/#{@r.slug}"
|
399
|
+
@s.reload.path.must_equal "/changed/#{@s.slug}"
|
400
|
+
@t.reload.path.must_equal "/changed/#{@s.slug}/#{@t.slug}"
|
401
|
+
end
|
402
|
+
|
403
|
+
it "have direct access to ancestors at any depth" do
|
404
|
+
@q.ancestor(0).must_equal @p
|
405
|
+
@r.ancestor(0).must_equal @p
|
406
|
+
@r.ancestor(1).must_equal @q
|
407
|
+
@s.ancestor(1).must_equal @q
|
408
|
+
@t.ancestor(1).must_equal @q
|
409
|
+
@t.ancestor(2).must_equal @s
|
410
|
+
@t.ancestor(-1).must_equal @s
|
411
|
+
@t.ancestor(-2).must_equal @q
|
412
|
+
end
|
413
|
+
|
414
|
+
it "test for ancestry" do
|
415
|
+
assert @t.ancestor?(@s)
|
416
|
+
assert @t.ancestor?(@q)
|
417
|
+
assert @t.ancestor?(@p)
|
418
|
+
refute @q.ancestor?(@t)
|
419
|
+
end
|
420
|
+
|
421
|
+
it "know if it's in the current path" do
|
422
|
+
assert @t.active?(@s)
|
423
|
+
assert @t.active?(@t)
|
424
|
+
assert @t.active?(@q)
|
425
|
+
assert @t.active?(@p)
|
426
|
+
refute @q.active?(@t)
|
427
|
+
end
|
428
|
+
|
429
|
+
it "provide a list of pages at any depth" do
|
430
|
+
@t.at_depth(2).must_equal [@r, @s]
|
431
|
+
@p.at_depth(1).must_equal [@q]
|
432
|
+
lambda { @p.at_depth(2) }.must_raise(ArgumentError)
|
433
|
+
end
|
434
|
+
end
|
435
|
+
|
436
|
+
describe "page pieces" do
|
437
|
+
before do
|
438
|
+
Page.box :things
|
439
|
+
Piece.box :things
|
440
|
+
@parent = Page.create
|
441
|
+
@piece = Piece.new
|
442
|
+
@child = Page.new
|
443
|
+
@parent.things << @piece
|
444
|
+
@piece.things << @child
|
445
|
+
@parent.save
|
446
|
+
@piece.save
|
447
|
+
@child.save
|
448
|
+
@page_piece = @parent.things.first.things.first
|
449
|
+
end
|
450
|
+
|
451
|
+
it "report their depth according to their position in the piece tree" do
|
452
|
+
@parent.depth.must_equal 0
|
453
|
+
@parent.contents.first.depth.must_equal 1
|
454
|
+
@parent.contents.first.contents.first.depth.must_equal 2
|
455
|
+
end
|
456
|
+
|
457
|
+
it "know their page" do
|
458
|
+
@page_piece.page.must_equal @parent
|
459
|
+
end
|
460
|
+
|
461
|
+
it "know their container" do
|
462
|
+
@page_piece.container.must_equal @piece.things
|
463
|
+
end
|
464
|
+
|
465
|
+
it "know their box" do
|
466
|
+
@page_piece.box.must_equal @piece.things
|
467
|
+
end
|
468
|
+
|
469
|
+
it "know their parent" do
|
470
|
+
@page_piece.parent.must_equal @piece
|
471
|
+
end
|
472
|
+
|
473
|
+
it "know their owner" do
|
474
|
+
@page_piece.owner.must_equal @piece
|
374
475
|
end
|
375
476
|
end
|
376
477
|
end
|