|
| 1 | +require 'test_helper' |
| 2 | + |
| 3 | +require 'rails/railtie' |
| 4 | +require 'active_support/log_subscriber/test_helper' |
| 5 | + |
| 6 | +require 'elasticsearch/rails/instrumentation' |
| 7 | + |
| 8 | +class Elasticsearch::Rails::InstrumentationTest < Test::Unit::TestCase |
| 9 | + include ActiveSupport::LogSubscriber::TestHelper |
| 10 | + |
| 11 | + context "ActiveSupport::Instrumentation integration" do |
| 12 | + class ::DummyInstrumentationModel |
| 13 | + extend Elasticsearch::Model::Searching::ClassMethods |
| 14 | + |
| 15 | + def self.index_name; 'foo'; end |
| 16 | + def self.document_type; 'bar'; end |
| 17 | + end |
| 18 | + |
| 19 | + RESPONSE = { 'took' => '5ms', 'hits' => { 'total' => 123, 'max_score' => 456, 'hits' => [] } } |
| 20 | + |
| 21 | + setup do |
| 22 | + @search = Elasticsearch::Model::Searching::SearchRequest.new ::DummyInstrumentationModel, '*' |
| 23 | + @response = Elasticsearch::Model::Response::Response.new ::DummyInstrumentationModel, @search |
| 24 | + |
| 25 | + @client = stub('client', search: @response) |
| 26 | + DummyInstrumentationModel.stubs(:client).returns(@client) |
| 27 | + |
| 28 | + Elasticsearch::Rails::Instrumentation::Railtie.run_initializers |
| 29 | + end |
| 30 | + |
| 31 | + should "wrap SearchRequest#execute! with instrumentation" do |
| 32 | + s = Elasticsearch::Model::Searching::SearchRequest.new ::DummyInstrumentationModel, 'foo' |
| 33 | + assert_respond_to s, :execute_without_instrumentation! |
| 34 | + assert_respond_to s, :execute_with_instrumentation! |
| 35 | + end |
| 36 | + |
| 37 | + should "publish the notification" do |
| 38 | + @query = { query: { match: { foo: 'bar' } } } |
| 39 | + |
| 40 | + ActiveSupport::Notifications.expects(:instrument).with do |name, payload| |
| 41 | + assert_equal "search.elasticsearch", name |
| 42 | + assert_equal 'DummyInstrumentationModel', payload[:klass] |
| 43 | + assert_equal @query, payload[:search][:body] |
| 44 | + end |
| 45 | + |
| 46 | + s = ::DummyInstrumentationModel.search @query |
| 47 | + s.response |
| 48 | + end |
| 49 | + |
| 50 | + should "print the debug information to the Rails log" do |
| 51 | + s = ::DummyInstrumentationModel.search query: { match: { moo: 'bam' } } |
| 52 | + s.response |
| 53 | + |
| 54 | + logged = @logger.logged(:debug).first |
| 55 | + |
| 56 | + assert_not_nil logged |
| 57 | + assert_match /DummyInstrumentationModel Search \(\d+\.\d+ms\)/, logged |
| 58 | + assert_match /body\: \{query\: \{match\: \{moo\: "bam"\}\}\}\}/, logged |
| 59 | + end |
| 60 | + end |
| 61 | +end |
0 commit comments