mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
e16bc71590
The exception handler was only catching RuntimeError, which probably should not be caught by the harness (so a test fails), when it should have been catching LoadError exceptions (module not present to test). Signed-off-by: Konstantin Haase <konstantin.mailinglists@googlemail.com>
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
require File.dirname(__FILE__) + '/helper'
|
|
|
|
begin
|
|
require 'nokogiri'
|
|
|
|
class NokogiriTest < Test::Unit::TestCase
|
|
def nokogiri_app(&block)
|
|
mock_app do
|
|
set :views, File.dirname(__FILE__) + '/views'
|
|
get '/', &block
|
|
end
|
|
get '/'
|
|
end
|
|
|
|
it 'renders inline Nokogiri strings' do
|
|
nokogiri_app { nokogiri 'xml' }
|
|
assert ok?
|
|
assert_body %{<?xml version="1.0"?>\n}
|
|
end
|
|
|
|
it 'renders inline blocks' do
|
|
nokogiri_app do
|
|
@name = "Frank & Mary"
|
|
nokogiri do |xml|
|
|
xml.couple @name
|
|
end
|
|
end
|
|
assert ok?
|
|
assert_body "<?xml version=\"1.0\"?>\n<couple>Frank & Mary</couple>\n"
|
|
end
|
|
|
|
it 'renders .nokogiri files in views path' do
|
|
nokogiri_app do
|
|
@name = "Blue"
|
|
nokogiri :hello
|
|
end
|
|
assert ok?
|
|
assert_body %(<?xml version="1.0"?>\n<exclaim>You're my boy, Blue!</exclaim>\n)
|
|
end
|
|
|
|
it "renders with inline layouts" do
|
|
next if Tilt::VERSION <= "1.1"
|
|
mock_app do
|
|
layout { %(xml.layout { xml << yield }) }
|
|
get('/') { nokogiri %(xml.em 'Hello World') }
|
|
end
|
|
get '/'
|
|
assert ok?
|
|
assert_body "<?xml version=\"1.0\"?>\n<layout>\n <em>Hello World</em>\n</layout>\n"
|
|
end
|
|
|
|
it "renders with file layouts" do
|
|
next if Tilt::VERSION <= "1.1"
|
|
nokogiri_app do
|
|
@name = "Blue"
|
|
nokogiri %(xml.em 'Hello World'), :layout => :layout2
|
|
end
|
|
assert ok?
|
|
assert_body "<?xml version=\"1.0\"?>\n<layout>\n <em>Hello World</em>\n</layout>\n"
|
|
end
|
|
|
|
it "raises error if template not found" do
|
|
mock_app { get('/') { nokogiri :no_such_template } }
|
|
assert_raise(Errno::ENOENT) { get('/') }
|
|
end
|
|
end
|
|
|
|
rescue LoadError
|
|
warn "#{$!.to_s}: skipping nokogiri tests"
|
|
end
|