2011-05-11 03:44:02 -04:00
|
|
|
require File.expand_path('../helper', __FILE__)
|
2010-09-12 09:14:45 -04:00
|
|
|
|
|
|
|
begin
|
|
|
|
require 'radius'
|
|
|
|
|
2015-01-10 14:30:47 -05:00
|
|
|
class RadiusTest < Minitest::Test
|
2010-09-12 09:14:45 -04:00
|
|
|
def radius_app(&block)
|
|
|
|
mock_app do
|
2020-03-13 17:20:04 -04:00
|
|
|
set :views, __dir__ + '/views'
|
2012-05-21 17:21:59 -04:00
|
|
|
get('/', &block)
|
2010-09-12 09:14:45 -04:00
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders inline radius strings' do
|
|
|
|
radius_app { radius '<h1>Hiya</h1>' }
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Hiya</h1>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders .radius files in views path' do
|
|
|
|
radius_app { radius :hello }
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Hello From Radius</h1>\n", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with inline layouts" do
|
|
|
|
mock_app do
|
|
|
|
layout { "<h1>THIS. IS. <r:yield /></h1>" }
|
|
|
|
get('/') { radius '<EM>SPARTA</EM>' }
|
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>THIS. IS. <EM>SPARTA</EM></h1>", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with file layouts" do
|
|
|
|
radius_app { radius 'Hello World', :layout => :layout2 }
|
|
|
|
assert ok?
|
|
|
|
assert_equal "<h1>Radius Layout!</h1>\n<p>Hello World</p>\n", body
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises error if template not found" do
|
|
|
|
mock_app { get('/') { radius :no_such_template } }
|
2015-01-10 14:30:47 -05:00
|
|
|
assert_raises(Errno::ENOENT) { get('/') }
|
2010-09-12 09:14:45 -04:00
|
|
|
end
|
2012-07-18 15:07:24 -04:00
|
|
|
|
2010-09-12 09:14:45 -04:00
|
|
|
it "allows passing locals" do
|
2012-05-21 17:21:59 -04:00
|
|
|
radius_app {
|
2010-09-12 09:14:45 -04:00
|
|
|
radius '<r:value />', :locals => { :value => 'foo' }
|
2012-05-21 17:21:59 -04:00
|
|
|
}
|
2010-09-12 09:14:45 -04:00
|
|
|
assert ok?
|
|
|
|
assert_equal 'foo', body
|
|
|
|
end
|
|
|
|
end
|
2011-01-25 03:27:15 -05:00
|
|
|
|
|
|
|
rescue LoadError
|
2017-06-25 05:19:22 -04:00
|
|
|
warn "#{$!}: skipping radius tests"
|
2010-09-12 09:14:45 -04:00
|
|
|
end
|