Sha256: bef289ab8cc2e9f8d14e2e60900c76aeee4aa3db32cd16b73a50aed43723f29a
Contents?: true
Size: 1.35 KB
Versions: 14
Compression:
Stored size: 1.35 KB
Contents
require 'test_helper' module Elasticsearch module Test class PercolateTest < ::Test::Unit::TestCase context "Percolate" do subject { FakeClient.new } should "require the :index argument" do assert_raise ArgumentError do subject.percolate :type => 'bar', :body => {} end end should "require the :type argument" do assert_raise ArgumentError do subject.percolate :index => 'bar', :body => {} end end should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal 'foo/bar/_percolate', url assert_equal Hash.new, params assert_equal 'bar', body[:doc][:foo] true end.returns(FakeResponse.new) subject.percolate :index => 'foo', :type => 'bar', :body => { :doc => { :foo => 'bar' } } end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/bar%2Fbam/_percolate', url true end.returns(FakeResponse.new) subject.percolate :index => 'foo^bar', :type => 'bar/bam', :body => { :doc => { :foo => 'bar' } } end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems