File: instrumentation_test.rb

package info (click to toggle)
ruby-faraday 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 508 kB
  • ctags: 836
  • sloc: ruby: 4,882; sh: 138; makefile: 5
file content (88 lines) | stat: -rw-r--r-- 2,123 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
require File.expand_path("../../helper", __FILE__)

module Middleware
  class InstrumentationTest < Faraday::TestCase
    def setup
      @instrumenter = FakeInstrumenter.new
    end

    def test_default_name
      assert_equal 'request.faraday', options.name
    end

    def test_default_instrumenter
      begin
        instrumenter = options.instrumenter
      rescue NameError => err
        assert_match 'ActiveSupport', err.to_s
      else
        assert_equal ActiveSupport::Notifications, instrumenter
      end
    end

    def test_name
      assert_equal 'booya', options(:name => 'booya').name
    end

    def test_instrumenter
      assert_equal :boom, options(:instrumenter => :boom).instrumenter
    end

    def test_instrumentation_with_default_name
      assert_equal 0, @instrumenter.instrumentations.size

      faraday = conn
      res = faraday.get '/'
      assert_equal 'ok', res.body

      assert_equal 1, @instrumenter.instrumentations.size
      name, env = @instrumenter.instrumentations.first
      assert_equal 'request.faraday', name
      assert_equal '/', env[:url].path
    end

    def test_instrumentation
      assert_equal 0, @instrumenter.instrumentations.size

      faraday = conn :name => 'booya'
      res = faraday.get '/'
      assert_equal 'ok', res.body

      assert_equal 1, @instrumenter.instrumentations.size
      name, env = @instrumenter.instrumentations.first
      assert_equal 'booya', name
      assert_equal '/', env[:url].path
    end

    class FakeInstrumenter
      attr_reader :instrumentations

      def initialize
        @instrumentations = []
      end

      def instrument(name, env)
        @instrumentations << [name, env]
        yield
      end
    end

    def options(hash = nil)
      Faraday::Request::Instrumentation::Options.from hash
    end

    def conn(hash = nil)
      hash ||= {}
      hash[:instrumenter] = @instrumenter

      Faraday.new do |f|
        f.request :instrumentation, hash
        f.adapter :test do |stub|
          stub.get '/' do
            [200, {}, 'ok']
          end
        end
      end
    end
  end
end