Sha256: 95d2a50a068f05568e37f99c9c07be014bbff3837dfb22d99f06b54b61f5aba8

Contents?: true

Size: 1.56 KB

Versions: 8

Compression:

Stored size: 1.56 KB

Contents

# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information

require 'spec_helper'

describe 'client#create_document' do

  let(:expected_args) do
    [
        'PUT',
        'foo/bar/123',
        { op_type: 'create' },
        { foo: 'bar' }
    ]
  end

  it 'performs the request' do
    expect(client_double.create(index: 'foo', type: 'bar', id: '123', body: { foo: 'bar'})).to eq({})
  end

  context 'when the request needs to be URL-escaped' do

    let(:expected_args) do
      [
          'PUT',
          'foo/bar%2Fbam/123',
          { op_type: 'create' },
          { }
      ]
    end

    it 'performs the request' do
      expect(client_double.create(index: 'foo', type: 'bar/bam', id: '123', body: {})).to eq({})
    end
  end

  context 'when an id is provided as an integer' do

    let(:expected_args) do
      [
          'PUT',
          'foo/bar/1',
          { op_type: 'create' },
          { foo: 'bar' }
      ]
    end

    it 'updates the arguments with the `op_type`' do
      expect(client_double.create(index: 'foo', type: 'bar', id: 1, body: { foo: 'bar' })).to eq({})
    end
  end

  context 'when an id is not provided' do

    let(:expected_args) do
      [
          'POST',
          'foo/bar',
          { },
          { foo: 'bar' }
      ]
    end

    it 'updates the arguments with the `op_type`' do
      expect(client_double.create(index: 'foo', type: 'bar', body: { foo: 'bar' })).to eq({})
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
elasticsearch-api-6.8.3 spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-6.8.2 spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.6.0 spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.6.0.pre spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.5.0 spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.5.0.pre.pre spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.4.0 spec/elasticsearch/api/actions/create_document_spec.rb
elasticsearch-api-7.3.0 spec/elasticsearch/api/actions/create_document_spec.rb