Sha256: a9eb659651445a4d3928b741390366b0eb08a7f1154e2ceea28a740afaaf57fd

Contents?: true

Size: 1.74 KB

Versions: 82

Compression:

Stored size: 1.74 KB

Contents

require 'test_helper'

require 'jbuilder' if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
require 'jsonify'

module Elasticsearch
  module Test
    class JsonBuildersTest < ::Test::Unit::TestCase

      context "JBuilder" do
        subject { FakeClient.new }

        should "build a JSON" do
          subject.expects(:perform_request).with do |method, url, params, body|
            json = MultiJson.load(body)

            assert_instance_of String, body
            assert_equal       'test', json['query']['match']['title']['query']
            true
          end.returns(FakeResponse.new)

          json = Jbuilder.encode do |json|
                   json.query do
                     json.match do
                       json.title do
                         json.query    'test'
                       end
                     end
                   end
                 end

          subject.search :body => json
        end
      end if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'

      context "Jsonify" do
        subject { FakeClient.new }

        should "build a JSON" do
          subject.expects(:perform_request).with do |method, url, params, body|
            json = MultiJson.load(body)

            assert_instance_of String, body
            assert_equal       'test', json['query']['match']['title']['query']
            true
          end.returns(FakeResponse.new)

          json = Jsonify::Builder.compile do |json|
                   json.query do
                     json.match do
                       json.title do
                         json.query    'test'
                       end
                     end
                   end
                 end

          subject.search :body => json
        end
      end

    end
  end
end

Version data entries

82 entries across 82 versions & 6 rubygems

Version Path
logstash-output-scalyr-0.2.1.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.2.0 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.2.0.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.26.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.25.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.24.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.23.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.22.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.21.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.20.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.19.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.18.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.17.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.16.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.15.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.14.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.13 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.12 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.11.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb
logstash-output-scalyr-0.1.10.beta vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/json_builders_test.rb