test/test_vitrine.rb in vitrine-0.0.13 vs test/test_vitrine.rb in vitrine-0.0.14
- old
+ new
@@ -75,75 +75,14 @@
write_public 'nice.coffee' do | f |
f.puts 'alert "rockage!"'
end
get '/nice.js'
-
- assert_not_nil last_response.headers['ETag'], 'Should set ETag for the compiled version'
- assert_equal 200, last_response.status
- assert_equal 'text/javascript;charset=utf-8', last_response.content_type
-
- assert last_response.body.include?( 'alert("rockage!")'), 'Should include the compiled function'
- assert last_response.body.include?( '//# sourceMappingURL=/nice.js.map'),
- 'Should include the reference to the source map'
+ assert_include last_response.body, 'alert("rockage!")', 'Should include the compiled function'
end
- def test_compiles_coffeescript_sourcemap
-
- FileUtils.mkdir_p File.join(@tempdir, 'public', 'js')
-
- write_public 'js/nice.coffee' do | f |
- f.puts 'alert "rockage!"'
- end
-
- # Sourcemap will only ever get requested AFTER the corresponding JS file
- get '/js/nice.js'
- assert last_response.ok?
-
- get '/js/nice.js.map'
- ref = {"version"=>3, "file"=>"", "sourceRoot"=>"", "sources"=>["/js/nice.coffee"],
- "names"=>[], "mappings"=>"AAAA;CAAA,CAAA,GAAA,KAAA;CAAA"}
- assert_equal ref, JSON.parse(last_response.body)
- end
- def test_sends_vanilla_js_if_its_present
- write_public 'vanilla.js' do | f |
- f.puts 'vanilla();'
- end
-
- get '/vanilla.js'
- assert_equal 200, last_response.status
- assert_equal "vanilla();\n", last_response.body
- end
-
- def test_invalid_coffeescript_creates_decent_error_alerts
- write_public 'faulty.coffee' do | f |
- f.puts 'function() { junked up }'
- end
-
- get '/faulty.js'
-
- assert_equal 500, last_response.status
- assert_equal 'text/javascript;charset=utf-8', last_response.content_type
- err = 'console.error("ExecJS::RuntimeError\n--> SyntaxError: reserved word \"function\"")'
- assert_equal err, last_response.body
- end
-
- def test_caches_compiled_js_by_etag_and_responds_with_304_when_requested_again
- write_public 'nice.coffee' do | f |
- f.puts 'alert "rockage!"'
- end
-
- get '/nice.js'
- assert_equal 200, last_response.status
- assert_not_nil last_response.headers['ETag']
-
- etag = last_response.headers['ETag']
- get '/nice.js', {}, rack_env = {'HTTP_IF_NONE_MATCH' => etag}
- assert_equal 304, last_response.status
- end
-
def test_sends_vanilla_css_if_present
write_public 'vanilla.css' do | f |
f.write '/* vanilla CSS kode */'
end
@@ -151,31 +90,16 @@
assert last_response.ok?
assert_equal '/* vanilla CSS kode */', last_response.body
end
- def test_compiles_scss_when_requested_as_css
- write_public 'styles.scss' do | f |
- f.puts '.foo {'
- f.puts '.bar { font-size: 10px; }'
- f.puts '}'
- end
-
- get '/styles.css'
-
- assert last_response.ok?
- assert_not_nil last_response.headers['ETag'], 'Should set ETag for the compiled version'
- assert last_response.body.include?('.foo .bar {'), 'Should have compiled the CSS rule'
- end
- def test_displays_decent_alerts_for_scss_errors
- write_public 'faulty.scss' do | f |
- f.puts '.foo {{ junkiness-factor: 24pem; }'
+ def test_sends_vanilla_js_if_its_present
+ write_public 'vanilla.js' do | f |
+ f.puts 'vanilla();'
end
- get '/faulty.css'
-
+ get '/vanilla.js'
assert_equal 200, last_response.status
- assert last_response.body.include?('body:before {'), 'Should include the generated element selector'
- assert last_response.body.include?('Sass::SyntaxError'), 'Should include the syntax error class'
+ assert_equal "vanilla();\n", last_response.body
end
end