Sha256: f68373adff653e6fbfe66af47c0316d0edb055f6064c29b57aa672996f6a3220

Contents?: true

Size: 742 Bytes

Versions: 6

Compression:

Stored size: 742 Bytes

Contents

if RUBY_VERSION >= '1.9.3'
  require "minitest_helper"
  require File.expand_path(File.dirname(__FILE__) + '/apps/padrino_simple')

  describe Padrino do
    before do
      clear_all_traces
    end

    it "should trace a request to a simple padrino stack" do
      @app = SimpleDemo

      r = get "/render"

      traces = get_all_traces
      traces.count.must_equal 8

      validate_outer_layers(traces, 'rack')

      traces[1]['Layer'].must_equal "padrino"
      traces[6]['Controller'].must_equal "SimpleDemo"
      traces[7]['Label'].must_equal "exit"

      # Validate the existence of the response header
      r.headers.key?('X-Trace').must_equal true
      r.headers['X-Trace'].must_equal traces[7]['X-Trace']
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
oboe-2.7.11.1 test/frameworks/padrino_test.rb
oboe-2.7.11.1-java test/frameworks/padrino_test.rb
oboe-2.7.10.1-java test/frameworks/padrino_test.rb
oboe-2.7.10.1 test/frameworks/padrino_test.rb
oboe-2.7.9.6-java test/frameworks/padrino_test.rb
oboe-2.7.9.6 test/frameworks/padrino_test.rb