Sha256: 2a8e1a695022d2a76e1b65941848215c435ccb3ed3754bc7eb89fa774b06241f

Contents?: true

Size: 1.92 KB

Versions: 8

Compression:

Stored size: 1.92 KB

Contents

# SPDX-License-Identifier: Apache-2.0
#
#  The OpenSearch Contributors require contributions made to
#  this file be licensed under the Apache-2.0 license or a
#  compatible open source license.
#
#  Modifications Copyright OpenSearch Contributors. See
#  GitHub history for details.

require_relative "../../../spec/opensearch_spec_helper"

shared_examples "a routing indexer" do
    let(:index) { 10.times.collect { rand(10).to_s }.join("") }
    let(:type) { 10.times.collect { rand(10).to_s }.join("") }
    let(:event_count) { 10000 + rand(500) }
    let(:routing) { "not_implemented" }
    let(:config) { "not_implemented" }
    subject { LogStash::Outputs::OpenSearch.new(config) }

    before do
      subject.register
      event_count.times do
        subject.multi_receive([LogStash::Event.new("message" => "test", "type" => type)])
      end
    end


    it "ships events" do
      index_url = "http://#{get_host_port()}/#{index}"

      client = Manticore::Client.new
      client.post("#{index_url}/_refresh").call

      # Wait until all events are available.
      Stud::try(10.times) do
        data = ""

        response = client.get("#{index_url}/_count?q=*&routing=#{routing}").call
        result = LogStash::Json.load(response.body)
        cur_count = result["count"]
        expect(cur_count).to eq(event_count)
      end
    end
end

describe "(http protocol) index events with static routing", :integration => true do
  it_behaves_like 'a routing indexer' do
    let(:routing) { "test" }
    let(:config) {
      {
        "hosts" => get_host_port,
        "index" => index,
        "routing" => routing
      }
    }
  end
end

describe "(http_protocol) index events with fieldref in routing value", :integration => true do
  it_behaves_like 'a routing indexer' do
    let(:routing) { "test" }
    let(:config) {
      {
        "hosts" => get_host_port,
        "index" => index,
        "routing" => "%{message}"
      }
    }
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
logstash-output-opensearch-2.0.3-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-2.0.2-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-2.0.1-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-2.0.0-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-1.3.0-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-1.2.0-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-1.1.0-java spec/integration/outputs/routing_spec.rb
logstash-output-opensearch-1.0.0-java spec/integration/outputs/routing_spec.rb