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
@@ -4,61 +4,93 @@ require File.expand_path('../../test_helper', __FILE__)
|
|
4
4
|
|
5
5
|
ENV['RACK_ENV'] = 'test'
|
6
6
|
|
7
|
+
describe "Front" do
|
8
|
+
include RackTestMethods
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
def self.site_root
|
12
|
-
@site_root
|
13
|
-
end
|
14
|
-
|
15
|
-
def self.startup
|
16
|
-
@site_root = Dir.mktmpdir
|
17
|
-
FileUtils.cp_r(File.expand_path("../../fixtures/public/templates", __FILE__), @site_root)
|
10
|
+
start do
|
11
|
+
site_root = Dir.mktmpdir
|
12
|
+
FileUtils.cp_r(File.expand_path("../../fixtures/public/templates", __FILE__), site_root)
|
18
13
|
Spontaneous::Output.write_compiled_scripts = true
|
19
|
-
end
|
20
14
|
|
21
|
-
def self.shutdown
|
22
|
-
teardown_site(true)
|
23
|
-
Spontaneous::Output.write_compiled_scripts = false
|
24
|
-
end
|
25
15
|
|
26
|
-
|
27
|
-
|
16
|
+
site = setup_site(site_root)
|
17
|
+
let(:site) { site }
|
18
|
+
S::Site.background_mode = :immediate
|
19
|
+
S::State.delete
|
20
|
+
|
28
21
|
Site.background_mode = :immediate
|
29
22
|
::Content.delete
|
30
|
-
end
|
31
23
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
def app
|
37
|
-
Spontaneous::Rack::Front.application
|
38
|
-
end
|
24
|
+
class ::SitePage < ::Page
|
25
|
+
layout :default
|
26
|
+
layout :dynamic
|
27
|
+
box :pages
|
39
28
|
|
40
|
-
|
41
|
-
|
42
|
-
end
|
29
|
+
attr_accessor :status
|
30
|
+
end
|
43
31
|
|
44
|
-
|
45
|
-
|
32
|
+
class ::StaticPage < ::Page
|
33
|
+
layout :default
|
34
|
+
end
|
35
|
+
class ::SubPage < SitePage; end
|
36
|
+
|
37
|
+
|
38
|
+
root = ::SitePage.create
|
39
|
+
about = ::SitePage.create(:slug => "about", :uid => "about")
|
40
|
+
subpage = ::SubPage.create(:slug => "now", :uid => "now")
|
41
|
+
news = ::SitePage.create(:slug => "news", :uid => "news")
|
42
|
+
dynamic = ::SitePage.create(:slug => "dynamic", :uid => "dynamic")
|
43
|
+
static = ::StaticPage.create(:slug => "static", :uid => "static")
|
44
|
+
dynamic.layout = :dynamic
|
45
|
+
root.pages << about
|
46
|
+
root.pages << news
|
47
|
+
root.pages << dynamic
|
48
|
+
root.pages << static
|
49
|
+
about.pages << subpage
|
50
|
+
root.save
|
51
|
+
|
52
|
+
let(:root_id) { root.id }
|
53
|
+
let(:about_id) { about.id }
|
54
|
+
let(:subpage_id) { subpage.id }
|
55
|
+
let(:news_id) { news.id }
|
56
|
+
let(:dynamic_id) { dynamic.id }
|
57
|
+
let(:static_id) { static.id }
|
58
|
+
|
59
|
+
Content.delete_revision(1) rescue nil
|
60
|
+
|
61
|
+
Spontaneous.logger.silent! {
|
62
|
+
S::Site.publish_all
|
63
|
+
}
|
46
64
|
end
|
47
65
|
|
48
|
-
|
49
|
-
|
66
|
+
finish do
|
67
|
+
Object.send(:remove_const, :SitePage) rescue nil
|
68
|
+
Object.send(:remove_const, :SubPage) rescue nil
|
69
|
+
Content.delete
|
70
|
+
S::State.delete
|
71
|
+
Content.delete_revision(1)
|
72
|
+
teardown_site(true)
|
73
|
+
Spontaneous::Output.write_compiled_scripts = false
|
50
74
|
end
|
51
75
|
|
52
|
-
|
53
|
-
|
54
|
-
|
76
|
+
let(:root) { Content[root_id] }
|
77
|
+
let(:about) { Content[about_id] }
|
78
|
+
let(:subpage) { Content[subpage_id] }
|
79
|
+
let(:news) { Content[news_id] }
|
80
|
+
let(:dynamic) { Content[dynamic_id] }
|
81
|
+
let(:static) { Content[static_id] }
|
55
82
|
|
56
|
-
def
|
57
|
-
|
83
|
+
def app
|
84
|
+
Spontaneous::Rack::Front.application
|
58
85
|
end
|
59
86
|
|
60
|
-
|
61
|
-
|
87
|
+
after do
|
88
|
+
SitePage.instance_variable_set(:@layout_procs, nil)
|
89
|
+
SitePage.instance_variable_set(:@request_blocks, {})
|
90
|
+
[root, about, subpage, news, static].each do |page|
|
91
|
+
page.layout = :default
|
92
|
+
end
|
93
|
+
dynamic.layout = :dynamic
|
62
94
|
end
|
63
95
|
|
64
96
|
def session
|
@@ -69,186 +101,139 @@ class FrontTest < MiniTest::Spec
|
|
69
101
|
format_list.map { |f| Page.format_for(f) }
|
70
102
|
end
|
71
103
|
|
72
|
-
|
73
|
-
setup do
|
74
|
-
|
75
|
-
|
76
|
-
S::Site.background_mode = :immediate
|
77
|
-
S::State.delete
|
78
|
-
|
79
|
-
class ::SitePage < ::Page
|
80
|
-
layout :default
|
81
|
-
layout :dynamic
|
82
|
-
box :pages
|
83
|
-
|
84
|
-
attr_accessor :status
|
85
|
-
end
|
86
|
-
|
87
|
-
class ::SubPage < SitePage; end
|
88
|
-
|
89
|
-
|
90
|
-
# see http://benprew.posterous.com/testing-sessions-with-sinatra
|
91
|
-
# app.send(:set, :sessions, false)
|
92
|
-
# S::Rack::Front::Server.send(:set, :sessions, false)
|
93
|
-
|
94
|
-
# @revision_root = "#{Dir.mktmpdir}/spontaneous-tests/#{Time.now.to_i}"
|
95
|
-
# `mkdir -p #{@revision_root}`
|
96
|
-
# Spontaneous.revision_root = @revision_root
|
97
|
-
|
98
|
-
# @site.stubs(:template_root).returns(File.expand_path("../../fixtures/public/templates", __FILE__))
|
99
|
-
# self.template_root = File.expand_path("../../fixtures/public/templates", __FILE__)
|
100
|
-
|
101
|
-
::Content.scope do
|
102
|
-
@root = ::SitePage.create
|
103
|
-
@about = ::SitePage.create(:slug => "about", :uid => "about")
|
104
|
-
@sub = ::SubPage.create(:slug => "now", :uid => "now")
|
105
|
-
@news = ::SitePage.create(:slug => "news", :uid => "news")
|
106
|
-
@dynamic = ::SitePage.create(:slug => "dynamic", :uid => "dynamic")
|
107
|
-
@dynamic.layout = :dynamic
|
108
|
-
@root.pages << @about
|
109
|
-
@root.pages << @news
|
110
|
-
@root.pages << @dynamic
|
111
|
-
@about.pages << @sub
|
112
|
-
@root.save
|
113
|
-
end
|
114
|
-
|
115
|
-
Content.delete_revision(1) rescue nil
|
116
|
-
|
117
|
-
Spontaneous.logger.silent! {
|
118
|
-
S::Site.publish_all
|
119
|
-
}
|
120
|
-
end
|
104
|
+
describe "Public pages" do
|
121
105
|
|
122
|
-
|
123
|
-
|
124
|
-
Object.send(:remove_const, :SubPage) rescue nil
|
125
|
-
Content.delete
|
126
|
-
S::State.delete
|
127
|
-
Content.delete_revision(1)
|
106
|
+
after do
|
107
|
+
about.class.outputs :html
|
128
108
|
end
|
129
109
|
|
130
|
-
|
110
|
+
it "return a 404 if asked for a non-existant page" do
|
131
111
|
get '/not-bloody-likely'
|
132
112
|
assert last_response.status == 404
|
133
113
|
end
|
134
114
|
|
135
|
-
|
115
|
+
it "provide root when asked" do
|
136
116
|
get '/'
|
137
117
|
assert last_response.ok?
|
138
|
-
last_response.body.
|
118
|
+
last_response.body.must_equal "/.html\n"
|
139
119
|
end
|
140
120
|
|
141
|
-
|
121
|
+
it "be available through their path" do
|
142
122
|
get '/about'
|
143
123
|
assert last_response.ok?
|
144
|
-
last_response.body.
|
145
|
-
last_response.content_type.
|
124
|
+
last_response.body.must_equal "/about.html\n"
|
125
|
+
last_response.content_type.must_equal "text/html;charset=utf-8"
|
146
126
|
end
|
147
127
|
|
148
|
-
|
128
|
+
it "be available through their path with explicit format" do
|
149
129
|
get '/about.html'
|
150
130
|
assert last_response.ok?
|
151
|
-
last_response.body.
|
152
|
-
last_response.content_type.
|
131
|
+
last_response.body.must_equal "/about.html\n"
|
132
|
+
last_response.content_type.must_equal "text/html;charset=utf-8"
|
153
133
|
end
|
154
134
|
|
155
|
-
|
156
|
-
|
135
|
+
it "honor the format of the request" do
|
136
|
+
about.class.outputs :html, :pdf
|
157
137
|
get '/about.pdf'
|
158
138
|
assert last_response.ok?
|
159
|
-
last_response.body.
|
160
|
-
last_response.content_type.
|
139
|
+
last_response.body.must_equal "/about.pdf\n"
|
140
|
+
last_response.content_type.must_equal "application/pdf;charset=utf-8"
|
161
141
|
end
|
162
142
|
|
163
|
-
|
164
|
-
|
143
|
+
it "provide the default format of the page if none is explicitly given" do
|
144
|
+
about.class.outputs :rss, :html
|
165
145
|
get '/about'
|
166
146
|
assert last_response.ok?
|
167
|
-
last_response.content_type.
|
168
|
-
last_response.body.
|
147
|
+
last_response.content_type.must_equal ::Rack::Mime.mime_type('.rss') + ";charset=utf-8"
|
148
|
+
last_response.body.must_equal "/about.rss\n"
|
169
149
|
end
|
170
150
|
|
171
|
-
|
172
|
-
|
151
|
+
it "return a custom content type if one is defined" do
|
152
|
+
about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}]
|
173
153
|
get '/about'
|
174
154
|
assert last_response.ok?
|
175
|
-
last_response.content_type.
|
176
|
-
last_response.body.
|
155
|
+
last_response.content_type.must_equal "application/xhtml+xml;charset=utf-8"
|
156
|
+
last_response.body.must_equal "/about.html\n"
|
177
157
|
end
|
178
158
|
|
179
159
|
|
180
|
-
|
160
|
+
it "raise a 404 if asked for a format not provided by the page" do
|
181
161
|
get '/about.time'
|
182
162
|
assert last_response.status == 404
|
183
163
|
end
|
184
164
|
|
185
|
-
|
186
|
-
|
165
|
+
it "raise a 404 when accessing a private format" do
|
166
|
+
about.class.outputs [:html, {:mimetype => "application/xhtml+xml"}], [:rss, {:private => true}]
|
187
167
|
get '/about.rss'
|
188
168
|
assert last_response.status == 404
|
189
169
|
end
|
190
170
|
|
191
|
-
|
192
|
-
|
171
|
+
describe "Dynamic pages" do
|
172
|
+
before do
|
193
173
|
Content::Page.stubs(:path).with("/about").returns(about)
|
174
|
+
Content::Page.stubs(:path).with("/static").returns(static)
|
194
175
|
Content::Page.stubs(:path).with("/news").returns(news)
|
195
176
|
end
|
196
177
|
|
197
|
-
|
198
|
-
|
178
|
+
after do
|
179
|
+
about.layout = :default
|
180
|
+
SitePage.instance_variable_set(:@request_blocks, {})
|
181
|
+
end
|
182
|
+
|
183
|
+
it "default to static behaviour" do
|
184
|
+
refute SitePage.dynamic?
|
199
185
|
page = SitePage.new
|
200
|
-
page.dynamic
|
186
|
+
refute page.dynamic?
|
201
187
|
end
|
202
|
-
|
188
|
+
it "correctly show a dynamic behaviour" do
|
203
189
|
SitePage.request do
|
204
|
-
show "/
|
190
|
+
show "/static"
|
205
191
|
end
|
206
|
-
SitePage.dynamic
|
192
|
+
assert SitePage.dynamic?
|
207
193
|
page = SitePage.new
|
208
|
-
page.dynamic
|
194
|
+
assert page.dynamic?
|
209
195
|
end
|
210
196
|
|
211
|
-
|
212
|
-
# about.stubs(:request_show).returns(news)
|
197
|
+
it "render an alternate page if passed a page" do
|
213
198
|
SitePage.request do
|
214
|
-
show Site['/
|
199
|
+
show Site['/static']
|
215
200
|
end
|
216
201
|
get '/about'
|
217
202
|
assert last_response.ok?
|
218
|
-
last_response.body.
|
203
|
+
last_response.body.must_equal "/static.html\n"
|
219
204
|
end
|
220
205
|
|
221
|
-
|
206
|
+
it "render an alternate page if passed a path" do
|
222
207
|
# about.stubs(:request_show).returns("/news")
|
223
208
|
SitePage.request do
|
224
|
-
show "/
|
209
|
+
show "/static"
|
225
210
|
end
|
226
211
|
get '/about'
|
227
212
|
assert last_response.ok?
|
228
|
-
last_response.body.
|
213
|
+
last_response.body.must_equal "/static.html\n"
|
229
214
|
end
|
230
215
|
|
231
|
-
|
216
|
+
it "render an alternate page if passed a uid with a #" do
|
232
217
|
# about.stubs(:request_show).returns("#news")
|
233
218
|
SitePage.request do
|
234
|
-
show "
|
219
|
+
show "static"
|
235
220
|
end
|
236
221
|
get '/about'
|
237
222
|
assert last_response.ok?
|
238
|
-
last_response.body.
|
223
|
+
last_response.body.must_equal "/static.html\n"
|
239
224
|
end
|
240
225
|
|
241
|
-
|
226
|
+
it "render an alternate page if passed a uid" do
|
242
227
|
# about.stubs(:request_show).returns("news")
|
243
228
|
SitePage.request do
|
244
|
-
show "
|
229
|
+
show "static"
|
245
230
|
end
|
246
231
|
get '/about'
|
247
232
|
assert last_response.ok?
|
248
|
-
last_response.body.
|
233
|
+
last_response.body.must_equal "/static.html\n"
|
249
234
|
end
|
250
235
|
|
251
|
-
|
236
|
+
it "return not found of #request_show returns an invalid uid or path" do
|
252
237
|
# about.stubs(:request_show).returns("caterpillars")
|
253
238
|
SitePage.request do
|
254
239
|
show "caterpillars"
|
@@ -257,44 +242,44 @@ class FrontTest < MiniTest::Spec
|
|
257
242
|
assert last_response.status == 404
|
258
243
|
end
|
259
244
|
|
260
|
-
|
245
|
+
it "return the right status code" do
|
261
246
|
SitePage.request do
|
262
|
-
show "
|
247
|
+
show "static", 404
|
263
248
|
end
|
264
249
|
get '/about'
|
265
250
|
assert last_response.status == 404
|
266
|
-
last_response.body.
|
251
|
+
last_response.body.must_equal "/static.html\n"
|
267
252
|
end
|
268
253
|
|
269
|
-
|
254
|
+
it "allow handing POST requests" do
|
270
255
|
SitePage.request :post do
|
271
|
-
show "
|
256
|
+
show "static"
|
272
257
|
end
|
273
258
|
post '/about'
|
274
259
|
assert last_response.status == 200, "Expected status 200 but recieved #{last_response.status}"
|
275
|
-
last_response.body.
|
260
|
+
last_response.body.must_equal "/static.html\n"
|
276
261
|
end
|
277
262
|
|
278
|
-
|
263
|
+
it "allow returning of any status code without altering content" do
|
279
264
|
SitePage.request do
|
280
265
|
404
|
281
266
|
end
|
282
267
|
get '/about'
|
283
268
|
assert last_response.status == 404
|
284
|
-
last_response.body.
|
269
|
+
last_response.body.must_equal "/about.html\n"
|
285
270
|
end
|
286
271
|
|
287
|
-
|
272
|
+
it "allow altering of headers" do
|
288
273
|
SitePage.request do
|
289
274
|
headers["X-Works"] = "Yes"
|
290
275
|
end
|
291
276
|
get '/about'
|
292
277
|
assert last_response.status == 200
|
293
|
-
last_response.body.
|
294
|
-
last_response.headers["X-Works"].
|
278
|
+
last_response.body.must_equal "/about.html\n"
|
279
|
+
last_response.headers["X-Works"].must_equal "Yes"
|
295
280
|
end
|
296
281
|
|
297
|
-
|
282
|
+
it "allow passing of template params & a page to the render call" do
|
298
283
|
SitePage.layout do
|
299
284
|
"{{ teeth }}"
|
300
285
|
end
|
@@ -303,10 +288,11 @@ class FrontTest < MiniTest::Spec
|
|
303
288
|
end
|
304
289
|
get '/about'
|
305
290
|
assert last_response.status == 200
|
306
|
-
last_response.body.
|
291
|
+
last_response.body.must_equal "white"
|
292
|
+
SitePage.instance_variable_set(:@layout_procs, nil)
|
307
293
|
end
|
308
294
|
|
309
|
-
|
295
|
+
it "give access to the request params within the controller" do
|
310
296
|
SitePage.layout { "{{ params[:horse] }}*{{ equine }}" }
|
311
297
|
SitePage.request :post do
|
312
298
|
value = params[:horse]
|
@@ -314,7 +300,24 @@ class FrontTest < MiniTest::Spec
|
|
314
300
|
end
|
315
301
|
post '/about', :horse => "dancing"
|
316
302
|
assert last_response.status == 200
|
317
|
-
last_response.body.
|
303
|
+
last_response.body.must_equal "dancing*dancing"
|
304
|
+
SitePage.instance_variable_set(:@layout_procs, nil)
|
305
|
+
end
|
306
|
+
|
307
|
+
it "allows for dynamically setting the output" do
|
308
|
+
SitePage.add_output :mobile
|
309
|
+
SitePage.layout do
|
310
|
+
"${ path }.${ __format }"
|
311
|
+
end
|
312
|
+
SitePage.request :get do
|
313
|
+
if request.user_agent =~ /iPhone/
|
314
|
+
output :mobile
|
315
|
+
end
|
316
|
+
end
|
317
|
+
get "/about", {}, { "HTTP_USER_AGENT" => "Desktop" }
|
318
|
+
last_response.body.must_equal "/about.html"
|
319
|
+
get "/about", {}, { "HTTP_USER_AGENT" => "iPhone" }
|
320
|
+
last_response.body.must_equal "/about.mobile"
|
318
321
|
end
|
319
322
|
|
320
323
|
# should "handle anything that responds to #render(format)" do
|
@@ -322,127 +325,128 @@ class FrontTest < MiniTest::Spec
|
|
322
325
|
# show.stubs(:render).returns("mocked")
|
323
326
|
# about.stubs(:request_show).returns(show)
|
324
327
|
# get '/about'
|
325
|
-
# last_response.body.
|
328
|
+
# last_response.body.must_equal "mocked"
|
326
329
|
# end
|
327
330
|
end
|
328
331
|
|
329
|
-
|
330
|
-
|
332
|
+
describe "Redirects" do
|
333
|
+
before do
|
331
334
|
Page.stubs(:path).with("/about").returns(about)
|
332
335
|
Page.stubs(:path).with("/news").returns(news)
|
333
336
|
end
|
334
337
|
|
335
|
-
|
338
|
+
it "respond appropriatly to redirects to path" do
|
336
339
|
SitePage.request do
|
337
340
|
redirect "/news"
|
338
341
|
end
|
339
342
|
get '/about'
|
340
343
|
assert last_response.status == 302
|
341
|
-
last_response.headers["Location"].
|
344
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
342
345
|
end
|
343
346
|
|
344
|
-
|
347
|
+
it "respond appropriately to redirects to a Page instance" do
|
345
348
|
SitePage.request do
|
346
349
|
redirect Page.path("/news")
|
347
350
|
end
|
348
351
|
get '/about'
|
349
352
|
assert last_response.status == 302
|
350
|
-
last_response.headers["Location"].
|
353
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
351
354
|
end
|
352
355
|
|
353
|
-
|
356
|
+
it "respond appropriately to redirects to a UID" do
|
354
357
|
SitePage.request do
|
355
|
-
redirect "
|
358
|
+
redirect "news"
|
356
359
|
end
|
357
360
|
get '/about'
|
358
361
|
assert last_response.status == 302
|
359
|
-
last_response.headers["Location"].
|
362
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
360
363
|
end
|
361
364
|
|
362
|
-
|
365
|
+
it "recognise a :temporary redirect" do
|
363
366
|
SitePage.request do
|
364
367
|
redirect "/news", :temporary
|
365
368
|
end
|
366
369
|
get '/about'
|
367
370
|
assert last_response.status == 302
|
368
|
-
last_response.headers["Location"].
|
371
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
369
372
|
end
|
370
373
|
|
371
|
-
|
374
|
+
it "recognise a :permanent redirect" do
|
372
375
|
SitePage.request do
|
373
376
|
redirect "/news", :permanent
|
374
377
|
end
|
375
378
|
get '/about'
|
376
379
|
assert last_response.status == 301
|
377
|
-
last_response.headers["Location"].
|
380
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
378
381
|
end
|
379
382
|
|
380
|
-
|
383
|
+
it "correctly apply numeric status codes" do
|
381
384
|
SitePage.request do
|
382
385
|
redirect "/news", 307
|
383
386
|
end
|
384
387
|
get '/about'
|
385
|
-
last_response.headers["Location"].
|
388
|
+
last_response.headers["Location"].must_equal "http://example.org/news"
|
386
389
|
assert last_response.status == 307
|
387
390
|
end
|
388
391
|
|
389
392
|
end
|
390
393
|
|
391
|
-
|
392
|
-
|
394
|
+
describe "Templates" do
|
395
|
+
before do
|
393
396
|
Spontaneous::Output.cache_templates = true
|
394
397
|
@cache_file = "#{Spontaneous.revision_dir(1)}/dynamic/dynamic.html.rb"
|
395
398
|
FileUtils.rm(@cache_file) if File.exist?(@cache_file)
|
396
399
|
Spontaneous::Output.write_compiled_scripts = true
|
397
400
|
end
|
398
401
|
|
399
|
-
|
402
|
+
after do
|
400
403
|
Spontaneous::Output.cache_templates = true
|
401
404
|
end
|
402
405
|
|
403
|
-
|
406
|
+
it "have access to the params, request & session object" do
|
404
407
|
get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
|
405
408
|
assert last_response.ok?
|
406
|
-
last_response.body.
|
409
|
+
last_response.body.must_equal "42/peter/example.org\n"
|
407
410
|
end
|
408
411
|
|
409
|
-
|
410
|
-
|
412
|
+
describe "caching" do
|
413
|
+
it "use pre-rendered versions of the templates" do
|
411
414
|
dummy_content = 'cached-version/#{session[\'user_id\']}'
|
412
|
-
dummy_template = File.join(
|
415
|
+
dummy_template = File.join(site.revision_root, "current/dynamic/dynamic.html.cut")
|
413
416
|
File.open(dummy_template, 'w') { |f| f.write(dummy_content) }
|
414
417
|
get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
|
415
|
-
last_response.body.
|
418
|
+
last_response.body.must_equal "cached-version/42"
|
416
419
|
end
|
417
420
|
|
418
|
-
|
421
|
+
it "cache templates as ruby files" do
|
419
422
|
dummy_content = 'cached-version/#{session[\'user_id\']}'
|
420
|
-
dummy_template = File.join(
|
423
|
+
dummy_template = File.join(site.revision_root, "current/dynamic/index.html.cut")
|
421
424
|
Spontaneous::Output.renderer.write_compiled_scripts = true
|
422
425
|
File.open(dummy_template, 'w') { |f| f.write(dummy_content) }
|
423
426
|
FileUtils.rm(@cache_file) if File.exists?(@cache_file)
|
424
|
-
File.exists?(@cache_file)
|
427
|
+
refute File.exists?(@cache_file)
|
425
428
|
get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
|
426
429
|
|
427
|
-
File.exists?(@cache_file)
|
430
|
+
assert File.exists?(@cache_file)
|
428
431
|
File.open(@cache_file, 'w') { |f| f.write('@__buf << %Q`@cache_filed-version/#{params[\'wendy\']}`;')}
|
429
432
|
# Force compiled file to have a later timestamp
|
430
433
|
File.utime(Time.now, Time.now + 1, @cache_file)
|
431
434
|
get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
|
432
|
-
last_response.body.
|
435
|
+
last_response.body.must_equal "@cache_filed-version/peter"
|
433
436
|
end
|
434
437
|
|
435
|
-
|
438
|
+
it "not cache templates if caching turned off" do
|
436
439
|
Spontaneous::Output.cache_templates = false
|
437
|
-
File.exists?(@cache_file)
|
440
|
+
refute File.exists?(@cache_file)
|
438
441
|
get '/dynamic', {'wendy' => 'peter'}, 'rack.session' => { 'user_id' => 42 }
|
439
|
-
File.exists?(@cache_file)
|
442
|
+
refute File.exists?(@cache_file)
|
440
443
|
end
|
441
444
|
end
|
442
445
|
end
|
443
446
|
|
444
|
-
|
445
|
-
|
447
|
+
describe "Model controllers" do
|
448
|
+
before do
|
449
|
+
SitePage.instance_variable_set(:@request_blocks, {})
|
446
450
|
class ::TestController < Spontaneous::Rack::PageController
|
447
451
|
get '/' do
|
448
452
|
"Magic"
|
@@ -457,7 +461,7 @@ class FrontTest < MiniTest::Spec
|
|
457
461
|
page
|
458
462
|
end
|
459
463
|
get '/format' do
|
460
|
-
|
464
|
+
output.to_s
|
461
465
|
end
|
462
466
|
end
|
463
467
|
|
@@ -473,6 +477,20 @@ class FrontTest < MiniTest::Spec
|
|
473
477
|
end
|
474
478
|
end
|
475
479
|
|
480
|
+
SitePage.controller :search do
|
481
|
+
get '/render/:query' do
|
482
|
+
render({ results: %w(a b c)})
|
483
|
+
end
|
484
|
+
|
485
|
+
get '/renderpapeparams/:query' do
|
486
|
+
render page, { results: %w(a b c)}
|
487
|
+
end
|
488
|
+
|
489
|
+
get '/renderoutput/:query' do
|
490
|
+
render page, :xml, { results: %w(a b c)}
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
476
494
|
SitePage.controller :test, ::TestController
|
477
495
|
|
478
496
|
SitePage.controller :test2, ::TestController do
|
@@ -486,110 +504,138 @@ class FrontTest < MiniTest::Spec
|
|
486
504
|
Content.stubs(:path).with("/about/now").returns(subpage)
|
487
505
|
end
|
488
506
|
|
489
|
-
|
507
|
+
after do
|
508
|
+
SitePage.instance_variable_set(:@request_blocks, {})
|
490
509
|
SitePage.send(:remove_const, :StatusController) rescue nil
|
491
510
|
SitePage.send(:remove_const, :TestController) rescue nil
|
492
511
|
SitePage.send(:remove_const, :Test2Controller) rescue nil
|
493
512
|
Object.send(:remove_const, :TestController) rescue nil
|
513
|
+
about.class.outputs :html
|
494
514
|
end
|
495
515
|
|
496
|
-
|
516
|
+
it "not be used unless necessary" do
|
497
517
|
get "/about"
|
498
518
|
assert last_response.ok?
|
499
|
-
last_response.body.
|
519
|
+
last_response.body.must_equal about.render
|
500
520
|
end
|
501
521
|
|
502
|
-
|
522
|
+
it "work on the homepage" do
|
503
523
|
get "/@comments"
|
504
524
|
assert last_response.ok?
|
505
|
-
last_response.body.
|
525
|
+
last_response.body.must_equal "Success"
|
506
526
|
end
|
507
527
|
|
508
528
|
|
509
|
-
|
529
|
+
it "be recognised" do
|
510
530
|
get "/about/@comments"
|
511
531
|
assert last_response.ok?
|
512
|
-
last_response.body.
|
532
|
+
last_response.body.must_equal "Success"
|
513
533
|
end
|
514
534
|
|
515
|
-
|
535
|
+
it "render the page correctly if action returns page object" do
|
516
536
|
get "/about/@comments/page"
|
517
537
|
assert last_response.ok?
|
518
|
-
last_response.body.
|
538
|
+
last_response.body.must_equal about.render
|
519
539
|
end
|
520
540
|
|
521
|
-
|
541
|
+
it "return 404 if trying unknown namespace" do
|
522
542
|
get "/about/@missing/action"
|
523
543
|
assert last_response.status == 404
|
524
544
|
end
|
525
545
|
|
526
|
-
|
546
|
+
it "respond to multiple namespaces" do
|
527
547
|
get "/about/@status/good"
|
528
548
|
assert last_response.ok?
|
529
|
-
last_response.body.
|
530
|
-
about.status.
|
549
|
+
last_response.body.must_equal about.render
|
550
|
+
about.status.must_equal "good"
|
531
551
|
end
|
532
552
|
|
533
|
-
|
553
|
+
it "accept POST requests" do
|
534
554
|
post "/about/@status/good"
|
535
555
|
assert last_response.ok?
|
536
|
-
last_response.body.
|
537
|
-
about.status.
|
556
|
+
last_response.body.must_equal about.render
|
557
|
+
about.status.must_equal "good"
|
538
558
|
end
|
539
559
|
|
540
|
-
|
560
|
+
it "return 404 unless post request has an action" do
|
541
561
|
Page.expects(:path).with("/about").never
|
542
562
|
post "/about"
|
543
563
|
assert last_response.status == 404
|
544
564
|
end
|
545
565
|
|
546
|
-
|
566
|
+
it "return 404 for post requests to unknown actions" do
|
547
567
|
post "/about/@status/missing/action"
|
548
568
|
assert last_response.status == 404
|
549
569
|
end
|
550
570
|
|
551
571
|
# probably the wrong place to test this -- should be in units -- but what the heck
|
552
|
-
|
553
|
-
about.action_url(:status, "/good").
|
572
|
+
it "be able to generate urls for actions" do
|
573
|
+
about.action_url(:status, "/good").must_equal "/about/@status/good"
|
554
574
|
end
|
555
575
|
|
556
|
-
|
576
|
+
it "be able to generate urls for actions with no path" do
|
577
|
+
about.action_url(:status).must_equal "/about/@status"
|
578
|
+
end
|
579
|
+
|
580
|
+
it "pass the output onto the page if the action returns it to the render call" do
|
557
581
|
about.class.outputs :html, :xml
|
558
582
|
about.class.layout do
|
559
583
|
"${path}.${__format}"
|
560
584
|
end
|
561
585
|
get "/about/@comments/page.xml"
|
562
586
|
assert last_response.ok?
|
563
|
-
last_response.body.
|
587
|
+
last_response.body.must_equal "/about.xml"
|
564
588
|
end
|
565
589
|
|
566
|
-
|
590
|
+
it "use the format within the action if required" do
|
567
591
|
about.class.outputs :html, :xml
|
568
592
|
get "/about/@comments/format.xml"
|
569
593
|
assert last_response.ok?
|
570
|
-
last_response.body.
|
594
|
+
last_response.body.must_equal "xml"
|
571
595
|
end
|
572
596
|
|
573
|
-
|
597
|
+
it "be inherited by subclasses" do
|
574
598
|
get "/about/now/@comments"
|
575
599
|
assert last_response.ok?
|
576
|
-
last_response.body.
|
600
|
+
last_response.body.must_equal "Success"
|
577
601
|
end
|
578
602
|
|
579
|
-
|
603
|
+
it "allow definition of controller using class" do
|
580
604
|
get "/about/@test"
|
581
605
|
assert last_response.ok?
|
582
|
-
last_response.body.
|
606
|
+
last_response.body.must_equal "Magic"
|
583
607
|
end
|
584
608
|
|
585
|
-
|
609
|
+
it "allow definition of controller using class and extend it using block" do
|
586
610
|
get "/about/@test2/block"
|
587
611
|
assert last_response.ok?
|
588
|
-
last_response.body.
|
612
|
+
last_response.body.must_equal "Block"
|
589
613
|
end
|
590
614
|
|
591
|
-
|
592
|
-
|
615
|
+
it "allows passing parameters to the page render" do
|
616
|
+
about.class.outputs :html, :xml
|
617
|
+
about.class.layout do
|
618
|
+
"{{results.join(',')}}"
|
619
|
+
end
|
620
|
+
|
621
|
+
get "/about/@search/render/query.xml"
|
622
|
+
assert last_response.ok?, "Expected 200 OK but got #{last_response.status}"
|
623
|
+
last_response.body.must_equal "a,b,c"
|
624
|
+
end
|
625
|
+
|
626
|
+
it "allows passing an output to the page render" do
|
627
|
+
about.class.outputs :html, :xml
|
628
|
+
about.class.layout do
|
629
|
+
"{{results.join(',')}}"
|
630
|
+
end
|
631
|
+
|
632
|
+
get "/about/@search/renderoutput/query"
|
633
|
+
assert last_response.ok?, "Expected 200 OK but got #{last_response.status}"
|
634
|
+
last_response.body.must_equal "a,b,c"
|
635
|
+
end
|
636
|
+
|
637
|
+
describe "overriding base controller class" do
|
638
|
+
before do
|
593
639
|
class ::PageController < S::Rack::PageController
|
594
640
|
get '/nothing' do
|
595
641
|
'Something'
|
@@ -601,36 +647,36 @@ class FrontTest < MiniTest::Spec
|
|
601
647
|
"Success"
|
602
648
|
end
|
603
649
|
end
|
604
|
-
|
605
650
|
end
|
606
651
|
|
607
|
-
|
652
|
+
after do
|
608
653
|
Object.send(:remove_const, :PageController)
|
609
654
|
end
|
610
655
|
|
611
|
-
|
656
|
+
it "affect all controller actions" do
|
612
657
|
get "/about/@drummer/nothing"
|
613
658
|
assert last_response.ok?
|
614
|
-
last_response.body.
|
659
|
+
last_response.body.must_equal "Something"
|
615
660
|
end
|
616
661
|
end
|
617
662
|
end
|
618
|
-
|
619
|
-
|
663
|
+
|
664
|
+
describe "Static files" do
|
665
|
+
before do
|
620
666
|
@revision_dir = Spontaneous.instance.revision_dir(1)
|
621
667
|
@public_dir = @revision_dir / "public"
|
622
668
|
end
|
623
669
|
|
624
|
-
|
670
|
+
it "should be sourced from the published revision directory" do
|
625
671
|
test_string = "#{Time.now}\n"
|
626
672
|
test_file = "#{Time.now.to_i}.txt"
|
627
673
|
File.open(@public_dir / test_file, 'w') { |f| f.write(test_string) }
|
628
674
|
get "/#{test_file}"
|
629
675
|
assert last_response.ok?
|
630
|
-
last_response.body.
|
676
|
+
last_response.body.must_equal test_string
|
631
677
|
end
|
632
678
|
|
633
|
-
|
679
|
+
it "pass far-future expires headers for media" do
|
634
680
|
test_string = "#{Time.now}\n"
|
635
681
|
test_file_url = "#{Time.now.to_i}.txt"
|
636
682
|
test_file = Spontaneous.media_dir / test_file_url
|
@@ -638,11 +684,12 @@ class FrontTest < MiniTest::Spec
|
|
638
684
|
File.open(test_file, 'w') { |f| f.write(test_string) }
|
639
685
|
get "/media/#{test_file_url}"
|
640
686
|
assert last_response.ok?
|
641
|
-
last_response.body.
|
687
|
+
last_response.body.must_equal test_string
|
642
688
|
expiry = DateTime.parse last_response.headers["Expires"]
|
643
|
-
expiry.year.
|
689
|
+
expiry.year.must_equal (Date.today.year) + 10
|
644
690
|
end
|
645
|
-
|
691
|
+
|
692
|
+
it "pass far-future expires headers for compiled assets" do
|
646
693
|
test_string = "#{Time.now}\n"
|
647
694
|
test_file_url = "/rev/#{Time.now.to_i}.txt"
|
648
695
|
test_file = @revision_dir / test_file_url
|
@@ -650,9 +697,9 @@ class FrontTest < MiniTest::Spec
|
|
650
697
|
File.open(test_file, 'w') { |f| f.write(test_string) }
|
651
698
|
get test_file_url
|
652
699
|
assert last_response.ok?
|
653
|
-
last_response.body.
|
700
|
+
last_response.body.must_equal test_string
|
654
701
|
expiry = DateTime.parse last_response.headers["Expires"]
|
655
|
-
expiry.year.
|
702
|
+
expiry.year.must_equal (Date.today.year) + 10
|
656
703
|
end
|
657
704
|
end
|
658
705
|
end
|