Sha256: fec3d53bfca21a775a1e46084f76cfca9bf8c55e26bd7fd7cc903a12b4878fb8
Contents?: true
Size: 1.72 KB
Versions: 63
Compression:
Stored size: 1.72 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 should "URL-escape the parts (including document id)" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/bar%2Fbam/some%2Fid/_percolate', url true end.returns(FakeResponse.new) subject.percolate :index => 'foo^bar', :type => 'bar/bam', :id => 'some/id' end end end end end
Version data entries
63 entries across 63 versions & 6 rubygems