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_assets.rb
CHANGED
@@ -2,188 +2,518 @@
|
|
2
2
|
|
3
3
|
require File.expand_path('../../test_helper', __FILE__)
|
4
4
|
require 'ostruct'
|
5
|
-
require 'shine'
|
6
5
|
|
7
|
-
|
6
|
+
describe "Assets" do
|
7
|
+
include RackTestMethods
|
8
|
+
|
9
|
+
def app
|
10
|
+
Spontaneous::Rack::Back.application
|
11
|
+
end
|
8
12
|
|
9
13
|
module LiveSimulation
|
10
14
|
# simulate a production + publishing environment
|
11
15
|
def live?
|
12
16
|
true
|
13
17
|
end
|
18
|
+
|
14
19
|
# usually set as part of the render process
|
15
20
|
def revision
|
16
21
|
99
|
17
22
|
end
|
18
23
|
end
|
19
24
|
|
20
|
-
def new_context(content = @page, format = :html, params = {})
|
21
|
-
renderer =
|
25
|
+
def new_context(live, content = @page, format = :html, params = {})
|
26
|
+
renderer = if live
|
27
|
+
Spontaneous::Output::Template::PublishRenderer.new
|
28
|
+
else
|
29
|
+
Spontaneous::Output::Template::PreviewRenderer.new
|
30
|
+
end
|
22
31
|
output = content.output(format)
|
23
32
|
context = renderer.context(output, params)
|
24
|
-
context.extend LiveSimulation
|
33
|
+
context.extend LiveSimulation if live
|
34
|
+
context.class_eval do
|
35
|
+
# Force us into production environment
|
36
|
+
# which is where most of the magic has to happen
|
37
|
+
def development?
|
38
|
+
false
|
39
|
+
end
|
40
|
+
end
|
25
41
|
context
|
26
42
|
end
|
27
43
|
|
28
|
-
def
|
29
|
-
|
30
|
-
|
31
|
-
|
44
|
+
def live_context(content = @page, format = :html, params = {})
|
45
|
+
new_context(true, content, format, params)
|
46
|
+
end
|
47
|
+
|
48
|
+
def preview_context(content = @page, format = :html, params = {})
|
49
|
+
new_context(false, content, format, params)
|
50
|
+
end
|
51
|
+
|
52
|
+
def development_context(content = @page, format = :html, params = {})
|
53
|
+
new_context(false, content, format, params).tap do |context|
|
54
|
+
context.class_eval do
|
55
|
+
def development?
|
56
|
+
true
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
|
63
|
+
start do
|
64
|
+
fixture_root = File.expand_path("../../fixtures/assets", __FILE__)
|
65
|
+
site = setup_site
|
66
|
+
site.paths.add :assets, fixture_root / "public1", fixture_root / "public2"
|
67
|
+
site.config.tap do |c|
|
68
|
+
c.auto_login = 'root'
|
69
|
+
end
|
70
|
+
Spontaneous::Permissions::User.delete
|
71
|
+
user = Spontaneous::Permissions::User.create(:email => "root@example.com", :login => "root", :name => "root name", :password => "rootpass")
|
72
|
+
user.update(:level => Spontaneous::Permissions[:editor])
|
73
|
+
user.save.reload
|
74
|
+
key = user.generate_access_key("127.0.0.1")
|
75
|
+
|
76
|
+
Spontaneous::Permissions::User.stubs(:[]).with(:login => 'root').returns(user)
|
77
|
+
Spontaneous::Permissions::User.stubs(:[]).with(user.id).returns(user)
|
78
|
+
Spontaneous::Permissions::AccessKey.stubs(:authenticate).with(key.key_id).returns(key)
|
79
|
+
|
80
|
+
let(:site) { site }
|
81
|
+
let(:fixture_root) { fixture_root }
|
82
|
+
let(:user) { user }
|
83
|
+
let(:key) { key }
|
84
|
+
end
|
85
|
+
|
86
|
+
finish do
|
87
|
+
teardown_site
|
88
|
+
end
|
89
|
+
|
90
|
+
before do
|
32
91
|
@page = Page.create
|
33
92
|
end
|
34
93
|
|
35
|
-
|
94
|
+
after do
|
36
95
|
Content.delete
|
37
|
-
teardown_site
|
38
96
|
end
|
39
97
|
|
40
|
-
|
41
|
-
should
|
98
|
+
describe "Preview context" do
|
99
|
+
it "should not be flagged as publishing" do
|
100
|
+
refute preview_context.publishing?
|
101
|
+
end
|
102
|
+
it "should not have the development? flag set" do
|
103
|
+
refute preview_context.development?
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe "Development context" do
|
108
|
+
it "should not be flagged as publishing" do
|
109
|
+
refute development_context.publishing?
|
110
|
+
end
|
111
|
+
|
112
|
+
it "should have the development? flag set" do
|
113
|
+
assert development_context.development?
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
describe "Publishing context" do
|
118
|
+
it "be flagged as publishing" do
|
42
119
|
Spontaneous.stubs(:production?).returns(true)
|
43
|
-
|
120
|
+
assert live_context.publishing?
|
121
|
+
end
|
122
|
+
|
123
|
+
it "be flagged as live" do
|
124
|
+
Spontaneous.stubs(:production?).returns(true)
|
125
|
+
assert live_context.live?
|
126
|
+
end
|
127
|
+
|
128
|
+
it "be flagged as publishing" do
|
129
|
+
assert live_context.publishing?
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
describe "development" do
|
134
|
+
let(:context) { development_context }
|
135
|
+
|
136
|
+
it "includes all js dependencies" do
|
137
|
+
result = context.scripts('js/all', 'js/m', 'js/c', 'x')
|
138
|
+
result.must_equal [
|
139
|
+
'<script type="text/javascript" src="/assets/js/a.js?body=1"></script>',
|
140
|
+
'<script type="text/javascript" src="/assets/js/b.js?body=1"></script>',
|
141
|
+
'<script type="text/javascript" src="/assets/js/n.js?body=1"></script>',
|
142
|
+
'<script type="text/javascript" src="/assets/js/all.js?body=1"></script>',
|
143
|
+
'<script type="text/javascript" src="/assets/js/m.js?body=1"></script>',
|
144
|
+
'<script type="text/javascript" src="/assets/js/c.js?body=1"></script>',
|
145
|
+
'<script type="text/javascript" src="/assets/x.js?body=1"></script>'
|
146
|
+
].join("\n")
|
147
|
+
end
|
148
|
+
|
149
|
+
it "doesn't bundle js files" do
|
150
|
+
get "/assets/js/all.js?body=1"
|
151
|
+
result = last_response.body
|
152
|
+
result.wont_match /elvis/
|
153
|
+
end
|
154
|
+
|
155
|
+
it "includes all css dependencies" do
|
156
|
+
result = context.stylesheets('css/all', 'css/c', 'x')
|
157
|
+
result.must_equal [
|
158
|
+
'<link rel="stylesheet" href="/assets/css/b.css?body=1" />',
|
159
|
+
'<link rel="stylesheet" href="/assets/css/a.css?body=1" />',
|
160
|
+
'<link rel="stylesheet" href="/assets/css/all.css?body=1" />',
|
161
|
+
'<link rel="stylesheet" href="/assets/css/c.css?body=1" />',
|
162
|
+
'<link rel="stylesheet" href="/assets/x.css?body=1" />'
|
163
|
+
].join("\n")
|
164
|
+
end
|
165
|
+
|
166
|
+
it "doesn't bundle js files" do
|
167
|
+
get "/assets/css/all.css?body=1"
|
168
|
+
result = last_response.body
|
169
|
+
result.must_match %r(/\*\s+\*/)
|
170
|
+
end
|
171
|
+
|
172
|
+
it "allows for protocol agnostic absolute script urls" do
|
173
|
+
result = context.scripts('//use.typekit.com/abcde')
|
174
|
+
result.must_equal '<script type="text/javascript" src="//use.typekit.com/abcde"></script>'
|
175
|
+
end
|
176
|
+
|
177
|
+
end
|
178
|
+
|
179
|
+
describe "preview" do
|
180
|
+
let(:app) { Spontaneous::Rack::Back.application }
|
181
|
+
let(:context) { preview_context }
|
182
|
+
|
183
|
+
describe "javascript" do
|
184
|
+
it "include scripts as separate files" do
|
185
|
+
result = context.scripts('js/all', 'js/m.js', 'js/c.js', 'x')
|
186
|
+
result.must_equal [
|
187
|
+
'<script type="text/javascript" src="/assets/js/all.js"></script>',
|
188
|
+
'<script type="text/javascript" src="/assets/js/m.js"></script>',
|
189
|
+
'<script type="text/javascript" src="/assets/js/c.js"></script>',
|
190
|
+
'<script type="text/javascript" src="/assets/x.js"></script>'
|
191
|
+
].join("\n")
|
192
|
+
end
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
it "handles urls passed as an array" do
|
197
|
+
result = context.scripts(['js/all', 'js/m.js'])
|
198
|
+
result.must_equal [
|
199
|
+
'<script type="text/javascript" src="/assets/js/all.js"></script>',
|
200
|
+
'<script type="text/javascript" src="/assets/js/m.js"></script>'
|
201
|
+
].join("\n")
|
202
|
+
end
|
203
|
+
|
204
|
+
it "should ignore missing files" do
|
205
|
+
result = context.scripts('js/all', 'js/missing')
|
206
|
+
result.must_equal [
|
207
|
+
'<script type="text/javascript" src="/assets/js/all.js"></script>',
|
208
|
+
'<script type="text/javascript" src="js/missing.js"></script>'
|
209
|
+
].join("\n")
|
210
|
+
end
|
211
|
+
|
212
|
+
it "should pass through absolute urls" do
|
213
|
+
result = context.scripts('/js/all.js')
|
214
|
+
result.must_equal '<script type="text/javascript" src="/js/all.js"></script>'
|
215
|
+
end
|
216
|
+
|
217
|
+
it "should bundle assets" do
|
218
|
+
get "/assets/js/all.js"
|
219
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
220
|
+
result = last_response.body
|
221
|
+
result.must_match /var a = 1/
|
222
|
+
result.must_match /var b = 2/
|
223
|
+
result.must_match /alert\("I knew it!"\);/
|
224
|
+
end
|
225
|
+
|
226
|
+
it "should preprocess coffeescript" do
|
227
|
+
get "/assets/js/m.js"
|
228
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
229
|
+
result = last_response.body
|
230
|
+
result.must_match /square = function\(x\)/
|
231
|
+
end
|
232
|
+
|
233
|
+
it "should allow access to straight js" do
|
234
|
+
get "/assets/x.js"
|
235
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
236
|
+
result = last_response.body
|
237
|
+
result.must_match /var x = 1;/
|
238
|
+
end
|
239
|
+
|
240
|
+
it "should use absolute URLs when encountered" do
|
241
|
+
context = preview_context
|
242
|
+
result = context.scripts('js/all', '//use.typekit.com/abcde', 'http://cdn.google.com/jquery.js', 'https://cdn.google.com/jquery.js')
|
243
|
+
result.must_equal [
|
244
|
+
'<script type="text/javascript" src="/assets/js/all.js"></script>',
|
245
|
+
'<script type="text/javascript" src="//use.typekit.com/abcde"></script>',
|
246
|
+
'<script type="text/javascript" src="http://cdn.google.com/jquery.js"></script>',
|
247
|
+
'<script type="text/javascript" src="https://cdn.google.com/jquery.js"></script>'
|
248
|
+
].join("\n")
|
249
|
+
end
|
44
250
|
end
|
45
251
|
|
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
|
-
|
252
|
+
describe "css" do
|
253
|
+
it "include css files as separate links" do
|
254
|
+
result = context.stylesheets('css/all', 'css/c', 'x')
|
255
|
+
result.must_equal [
|
256
|
+
'<link rel="stylesheet" href="/assets/css/all.css" />',
|
257
|
+
'<link rel="stylesheet" href="/assets/css/c.css" />',
|
258
|
+
'<link rel="stylesheet" href="/assets/x.css" />'
|
259
|
+
].join("\n")
|
260
|
+
end
|
261
|
+
|
262
|
+
it "allows passing scripts as an array" do
|
263
|
+
result = context.stylesheets(['css/all', 'css/c', 'x'])
|
264
|
+
result.must_equal [
|
265
|
+
'<link rel="stylesheet" href="/assets/css/all.css" />',
|
266
|
+
'<link rel="stylesheet" href="/assets/css/c.css" />',
|
267
|
+
'<link rel="stylesheet" href="/assets/x.css" />'
|
268
|
+
].join("\n")
|
269
|
+
end
|
270
|
+
|
271
|
+
it "should bundle dependencies" do
|
272
|
+
get "/assets/css/all.css"
|
273
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
274
|
+
result = last_response.body
|
275
|
+
result.must_match /height: 42px;/
|
276
|
+
result.must_match /width: 8px;/
|
277
|
+
end
|
278
|
+
|
279
|
+
it "should compile sass" do
|
280
|
+
get "/assets/css/b.css"
|
281
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
282
|
+
result = last_response.body
|
283
|
+
result.must_match /height: 42px;/
|
284
|
+
end
|
285
|
+
|
286
|
+
it "links to images" do
|
287
|
+
get "/assets/css/image1.css"
|
288
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
289
|
+
result = last_response.body
|
290
|
+
result.must_match %r{background: url\(/assets/i/y\.png\)}
|
291
|
+
end
|
292
|
+
|
293
|
+
it "passes through non-existant images" do
|
294
|
+
get "/assets/css/missing.css"
|
295
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
296
|
+
result = last_response.body
|
297
|
+
result.must_match /background: url\(i\/missing\.png\)/
|
298
|
+
end
|
299
|
+
|
300
|
+
it "can understand urls with hashes" do
|
301
|
+
get "/assets/css/urlhash.css"
|
302
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
303
|
+
result = last_response.body
|
304
|
+
result.must_match %r{background: url\(/assets/i/y\.png\?query=true#hash\)}
|
305
|
+
end
|
306
|
+
|
307
|
+
it "embeds image data" do
|
308
|
+
get "/assets/css/data.css"
|
309
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
310
|
+
result = last_response.body
|
311
|
+
result.must_match /background-image: url\(data:image\/png;base64,/
|
312
|
+
end
|
313
|
+
|
314
|
+
it "can include other assets" do
|
315
|
+
get "/assets/css/import.css"
|
316
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
317
|
+
result = last_response.body
|
318
|
+
result.must_match /width: 8px;/
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
describe "templates" do
|
323
|
+
let(:renderer) { Spontaneous::Output::Template::PreviewRenderer.new }
|
324
|
+
|
325
|
+
it "should allow for embedding asset images into templates" do
|
326
|
+
result = renderer.render_string("${ asset_path 'i/y.png' }", @page.output(:html))
|
327
|
+
result.must_equal "/assets/i/y.png"
|
328
|
+
end
|
329
|
+
it "should allow for embedding asset urls into templates" do
|
330
|
+
result = renderer.render_string("${ asset_url 'i/y.png' }", @page.output(:html))
|
331
|
+
result.must_equal "url(/assets/i/y.png)"
|
332
|
+
end
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
describe "publishing" do
|
337
|
+
let(:app) { Spontaneous::Rack::Front.application }
|
338
|
+
let(:context) { live_context }
|
339
|
+
let(:revision) { S::Revision.new(context.revision) }
|
340
|
+
|
341
|
+
before do
|
342
|
+
FileUtils.rm_f(Spontaneous.revision_dir) if File.exist?(Spontaneous.revision_dir)
|
343
|
+
system "ln -nfs #{revision.root} #{Spontaneous.revision_dir}"
|
344
|
+
# FileUtils.ln_s(revision.root, Spontaneous.revision_dir)
|
345
|
+
end
|
346
|
+
|
347
|
+
after do
|
348
|
+
revision.path("assets").rmtree if revision.path("assets").exist?
|
349
|
+
end
|
350
|
+
|
351
|
+
describe "javascript" do
|
352
|
+
it "bundles & fingerprints local scripts" do
|
353
|
+
result = context.scripts('js/all', 'js/m.js', 'js/c.js', 'x')
|
354
|
+
result.must_equal [
|
355
|
+
'<script type="text/javascript" src="/assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js"></script>',
|
356
|
+
'<script type="text/javascript" src="/assets/js/m-13002c7b4bf04e2e9ab087632f91e008.js"></script>',
|
357
|
+
'<script type="text/javascript" src="/assets/js/c-27c1b15107f5e860c78f41cc6f382e71.js"></script>',
|
358
|
+
'<script type="text/javascript" src="/assets/x-2eef76c5977a151671b9e202e75f7fc4.js"></script>'
|
359
|
+
].join("\n")
|
360
|
+
end
|
361
|
+
|
362
|
+
it "writes bundled assets to the revision directory" do
|
363
|
+
result = context.scripts('js/all')
|
364
|
+
asset_path = revision.path("assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js")
|
365
|
+
assert asset_path.exist?
|
366
|
+
end
|
367
|
+
|
368
|
+
it "compresses local scripts" do
|
369
|
+
result = context.scripts('js/all')
|
370
|
+
asset_path = revision.path("assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js")
|
371
|
+
js = asset_path.read
|
372
|
+
js.index("\n").must_be_nil
|
373
|
+
end
|
374
|
+
|
375
|
+
it "bundles locals scripts and includes remote ones" do
|
376
|
+
result = context.scripts('js/all', '//use.typekit.com/abcde', 'http://cdn.google.com/jquery.js', 'x')
|
377
|
+
result.must_equal [
|
378
|
+
'<script type="text/javascript" src="/assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js"></script>',
|
379
|
+
'<script type="text/javascript" src="//use.typekit.com/abcde"></script>',
|
380
|
+
'<script type="text/javascript" src="http://cdn.google.com/jquery.js"></script>',
|
381
|
+
'<script type="text/javascript" src="/assets/x-2eef76c5977a151671b9e202e75f7fc4.js"></script>'
|
382
|
+
].join("\n")
|
383
|
+
end
|
384
|
+
|
385
|
+
it "makes bundled scripts available under /assets" do
|
386
|
+
context.scripts('js/all')
|
387
|
+
get "/assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js"
|
388
|
+
asset_path = revision.path("assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js")
|
389
|
+
last_response.body.must_equal asset_path.read
|
390
|
+
end
|
391
|
+
|
392
|
+
it "only bundles & compresses once" do
|
393
|
+
context.scripts('js/all')
|
394
|
+
asset_path = revision.path("assets/js/all-41bda6efdd3c1871f11cac5d32a92884.js")
|
395
|
+
assert asset_path.exist?
|
396
|
+
asset_path.open("w") do |file|
|
397
|
+
file.write("var cached = true;")
|
398
|
+
end
|
399
|
+
context.scripts('js/all')
|
400
|
+
asset_path.read.must_equal "var cached = true;"
|
401
|
+
end
|
402
|
+
end
|
403
|
+
|
404
|
+
describe "css" do
|
405
|
+
it "bundles & fingerprints local stylesheets" do
|
406
|
+
result = context.stylesheets('css/all', 'css/a.css', 'x')
|
407
|
+
result.must_equal [
|
408
|
+
'<link rel="stylesheet" href="/assets/css/all-1025f1a33ab09fa179fa17e59003c540.css" />',
|
409
|
+
'<link rel="stylesheet" href="/assets/css/a-8722cd5f8622cb619f4359ef2b61ff68.css" />',
|
410
|
+
'<link rel="stylesheet" href="/assets/x-a5f93540463324ea08e956befded6cbf.css" />'
|
411
|
+
].join("\n")
|
412
|
+
end
|
413
|
+
|
414
|
+
it "ignores missing stylesheets" do
|
415
|
+
result = context.stylesheets('css/all', '/css/notfound', 'css/notfound')
|
416
|
+
result.must_equal [
|
417
|
+
'<link rel="stylesheet" href="/assets/css/all-1025f1a33ab09fa179fa17e59003c540.css" />',
|
418
|
+
'<link rel="stylesheet" href="/css/notfound" />',
|
419
|
+
'<link rel="stylesheet" href="css/notfound" />'
|
420
|
+
].join("\n")
|
421
|
+
end
|
422
|
+
|
423
|
+
it "bundles locals scripts and includes remote ones" do
|
424
|
+
result = context.stylesheets('css/all.css', '//stylesheet.com/responsive', 'http://cdn.google.com/normalize.css', 'x')
|
425
|
+
result.must_equal [
|
426
|
+
'<link rel="stylesheet" href="/assets/css/all-1025f1a33ab09fa179fa17e59003c540.css" />',
|
427
|
+
'<link rel="stylesheet" href="//stylesheet.com/responsive" />',
|
428
|
+
'<link rel="stylesheet" href="http://cdn.google.com/normalize.css" />',
|
429
|
+
'<link rel="stylesheet" href="/assets/x-a5f93540463324ea08e956befded6cbf.css" />'
|
430
|
+
].join("\n")
|
431
|
+
end
|
432
|
+
|
433
|
+
it "makes bundled scripts available under /assets" do
|
434
|
+
path = context.stylesheet_urls('css/all').first
|
435
|
+
get path
|
436
|
+
asset_path = revision.path(path)
|
437
|
+
last_response.body.must_equal asset_path.read
|
438
|
+
end
|
439
|
+
|
440
|
+
it "compresses local styles" do
|
441
|
+
path = context.stylesheet_urls('css/all').first
|
442
|
+
asset_path = revision.path(path)
|
443
|
+
css = asset_path.read
|
444
|
+
css.index(" ").must_be_nil
|
445
|
+
end
|
446
|
+
|
447
|
+
it "only bundles & compresses once" do
|
448
|
+
path = context.stylesheet_urls('css/all').first
|
449
|
+
asset_path = revision.path(path)
|
450
|
+
assert asset_path.exist?
|
451
|
+
asset_path.open("w") do |file|
|
452
|
+
file.write(".cached { }")
|
453
|
+
end
|
454
|
+
context.stylesheets('css/all')
|
455
|
+
asset_path.read.must_equal ".cached { }"
|
456
|
+
end
|
457
|
+
|
458
|
+
it "passes through non-existant images" do
|
459
|
+
path = context.stylesheet_urls('css/missing.css').first
|
460
|
+
get path
|
461
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
462
|
+
result = last_response.body
|
463
|
+
result.must_match /background:url\(i\/missing\.png\)/
|
464
|
+
end
|
465
|
+
|
466
|
+
it "can include other assets" do
|
467
|
+
path = context.stylesheet_urls('css/import').first
|
468
|
+
get path
|
469
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
470
|
+
result = last_response.body
|
471
|
+
result.must_match /width:8px/
|
472
|
+
end
|
473
|
+
end
|
474
|
+
|
475
|
+
describe "images" do
|
476
|
+
it "bundles images and links using fingerprinted asset url" do
|
477
|
+
path = context.stylesheet_urls('css/image1').first
|
478
|
+
get path
|
479
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
480
|
+
result = last_response.body
|
481
|
+
result.must_match %r{background:url\(/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91\.png\)}
|
482
|
+
|
483
|
+
asset_path = revision.path("/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91.png")
|
484
|
+
assert asset_path.exist?
|
485
|
+
end
|
486
|
+
|
487
|
+
it "can insert data urls for assets" do
|
488
|
+
path = context.stylesheet_urls('css/data').first
|
489
|
+
get path
|
490
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
491
|
+
result = last_response.body
|
492
|
+
result.must_match %r{background-image:url\(data:image/png;base64}
|
493
|
+
end
|
494
|
+
|
495
|
+
it "can understand urls with hashes" do
|
496
|
+
path = context.stylesheet_urls('css/urlhash').first
|
497
|
+
get path
|
498
|
+
assert last_response.ok?, "Recieved #{last_response.status} not 200"
|
499
|
+
result = last_response.body
|
500
|
+
result.must_match %r{background:url\(/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91\.png\?query=true#hash\)}
|
501
|
+
asset_path = revision.path("/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91.png")
|
502
|
+
assert asset_path.exist?
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
506
|
+
describe "templates" do
|
507
|
+
let(:renderer) { Spontaneous::Output::Template::PublishRenderer.new }
|
508
|
+
|
509
|
+
it "should allow for embedding asset images into templates" do
|
510
|
+
result = renderer.render_string("${ asset_path 'i/y.png' }", @page.output(:html))
|
511
|
+
result.must_equal "/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91.png"
|
512
|
+
end
|
513
|
+
it "should allow for embedding asset urls into templates" do
|
514
|
+
result = renderer.render_string("${ asset_url 'i/y.png' }", @page.output(:html))
|
515
|
+
result.must_equal "url(/assets/i/y-d5ca7c01801a5a9985b92aa2d6a81c91.png)"
|
516
|
+
end
|
187
517
|
end
|
188
518
|
end
|
189
519
|
end
|