Sha256: 795502c1d3eb49b478e7d65c3c46c7aea21ba4670c57b00ea9839783ea1ef559

Contents?: true

Size: 1.9 KB

Versions: 65

Compression:

Stored size: 1.9 KB

Contents

require File.expand_path('../helper', __FILE__)

begin
  require 'asciidoctor'

  class AsciidoctorTest < Minitest::Test
    def asciidoc_app(&block)
      mock_app do
        set :views, File.dirname(__FILE__) + '/views'
        get('/', &block)
      end
      get '/'
    end

    it 'renders inline AsciiDoc strings' do
      asciidoc_app { asciidoc '== Hiya' }
      assert ok?
      assert_match %r{<h2.*?>Hiya</h2>}, body
    end

    it 'uses the correct engine' do
      engine = Tilt::AsciidoctorTemplate
      assert_equal engine, Tilt[:ad]
      assert_equal engine, Tilt[:adoc]
      assert_equal engine, Tilt[:asciidoc]
    end

    it 'renders .asciidoc files in views path' do
      asciidoc_app { asciidoc :hello }
      assert ok?
      assert_match %r{<h2.*?>Hello from AsciiDoc</h2>}, body
    end

    it 'raises error if template not found' do
      mock_app { get('/') { asciidoc :no_such_template } }
      assert_raises(Errno::ENOENT) { get('/') }
    end

    it 'renders with inline layouts' do
      mock_app do
        layout { 'THIS. IS. #{yield.upcase}!' }
        get('/') { asciidoc 'Sparta', :layout_engine => :str }
      end
      get '/'
      assert ok?
      assert_include body, 'THIS. IS.'
      assert_include body, '<P>SPARTA</P>'
    end

    it 'renders with file layouts' do
      asciidoc_app do
        asciidoc 'Hello World', :layout => :layout2, :layout_engine => :erb
      end
      assert ok?
      assert_include body, 'ERB Layout!'
      assert_include body, '<p>Hello World</p>'
    end

    it 'can be used in a nested fashion for partials and whatnot' do
      mock_app do
        template(:inner) { 'hi' }
        template(:outer) { '<outer><%= asciidoc :inner %></outer>' }
        get('/') { erb :outer }
      end
      get '/'
      assert ok?
      assert_match %r{<outer>.*<p.*?>hi</p>.*</outer>}m, body
    end
  end
rescue LoadError
  warn "#{$!.to_s}: skipping asciidoc tests"
end

Version data entries

65 entries across 62 versions & 18 rubygems

Version Path
logstash-filter-cache-redis-0.1.0 vendor/bundle/jruby/1.9/gems/sinatra-1.4.8/test/asciidoctor_test.rb
logstash-filter-csharp-0.1.0 vendor/bundle/jruby/2.3.0/gems/sinatra-1.4.8/test/asciidoctor_test.rb
logstash-filter-htmlentities-0.1.0 vendor/bundle/jruby/1.9/gems/sinatra-1.4.8/test/asciidoctor_test.rb
logstash-output-icinga-1.0.0 vendor/jruby/1.9/gems/sinatra-1.4.8/test/asciidoctor_test.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/sinatra-1.4.8/test/asciidoctor_test.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/sinatra-1.4.8/test/asciidoctor_test.rb
logstash-input-fifo-0.9.1 vendor/bundle/jruby/1.9/gems/sinatra-1.4.8/test/asciidoctor_test.rb
logstash-input-fifo-0.9.0 vendor/bundle/jruby/1.9/gems/sinatra-1.4.8/test/asciidoctor_test.rb
sinatra-1.4.8 test/asciidoctor_test.rb
logstash-input-salesforce-3.0.0 vendor/jruby/1.9/gems/sinatra-1.4.7/test/asciidoctor_test.rb
arcabouco-0.2.13 vendor/bundle/gems/sinatra-1.4.7/test/asciidoctor_test.rb
ivanvc-logstash-input-s3-3.1.1.4 vendor/local/gems/sinatra-1.4.7/test/asciidoctor_test.rb
ivanvc-logstash-input-s3-3.1.1.3 vendor/local/gems/sinatra-1.4.7/test/asciidoctor_test.rb
ivanvc-logstash-input-s3-3.1.1.2 vendor/local/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-delta-1.1.0 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-delta-1.0.1 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-base64-1.0.4 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-base64-1.0.3 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-delta-1.0.0 vendor/bundle/jruby/2.2.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb
logstash-filter-base64-1.0.2 vendor/bundle/jruby/2.3.0/gems/sinatra-1.4.7/test/asciidoctor_test.rb