123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- require 'spec_helper'
- describe Agents::PostAgent do
- before do
- @valid_params = {
- :name => "somename",
- :options => {
- 'post_url' => "http://www.example.com",
- 'expected_receive_period_in_days' => 1,
- 'payload' => {
- 'default' => 'value'
- }
- }
- }
- @checker = Agents::PostAgent.new(@valid_params)
- @checker.user = users(:jane)
- @checker.save!
- @event = Event.new
- @event.agent = agents(:jane_weather_agent)
- @event.payload = {
- 'somekey' => 'somevalue',
- 'someotherkey' => {
- 'somekey' => 'value'
- }
- }
- @requests = 0
- @sent_requests = { Net::HTTP::Get => [], Net::HTTP::Post => [], Net::HTTP::Put => [], Net::HTTP::Delete => [], Net::HTTP::Patch => [] }
- stub.any_instance_of(Agents::PostAgent).post_data { |data, type| @requests += 1; @sent_requests[type] << data }
- stub.any_instance_of(Agents::PostAgent).get_data { |data| @requests += 1; @sent_requests[Net::HTTP::Get] << data }
- end
- describe "making requests" do
- it "can make requests of each type" do
- { 'get' => Net::HTTP::Get, 'put' => Net::HTTP::Put,
- 'post' => Net::HTTP::Post, 'patch' => Net::HTTP::Patch,
- 'delete' => Net::HTTP::Delete }.each.with_index do |(verb, type), index|
- @checker.options['method'] = verb
- @checker.should be_valid
- @checker.check
- @requests.should == index + 1
- @sent_requests[type].length.should == 1
- end
- end
- end
- describe "#receive" do
- it "can handle multiple events and merge the payloads with options['payload']" do
- event1 = Event.new
- event1.agent = agents(:bob_weather_agent)
- event1.payload = {
- 'xyz' => 'value1',
- 'message' => 'value2',
- 'default' => 'value2'
- }
- lambda {
- lambda {
- @checker.receive([@event, event1])
- }.should change { @sent_requests[Net::HTTP::Post].length }.by(2)
- }.should_not change { @sent_requests[Net::HTTP::Get].length }
- @sent_requests[Net::HTTP::Post][0].should == @event.payload.merge('default' => 'value')
- @sent_requests[Net::HTTP::Post][1].should == event1.payload
- end
- it "can make GET requests" do
- @checker.options['method'] = 'get'
- lambda {
- lambda {
- @checker.receive([@event])
- }.should change { @sent_requests[Net::HTTP::Get].length }.by(1)
- }.should_not change { @sent_requests[Net::HTTP::Post].length }
- @sent_requests[Net::HTTP::Get][0].should == @event.payload.merge('default' => 'value')
- end
- it "can skip merging the incoming event when no_merge is set, but it still interpolates" do
- @checker.options['no_merge'] = 'true'
- @checker.options['payload'] = {
- 'key' => 'it said: {{ someotherkey.somekey }}'
- }
- @checker.receive([@event])
- @sent_requests[Net::HTTP::Post].first.should == { 'key' => 'it said: value' }
- end
- end
- describe "#check" do
- it "sends options['payload'] as a POST request" do
- lambda {
- @checker.check
- }.should change { @sent_requests[Net::HTTP::Post].length }.by(1)
- @sent_requests[Net::HTTP::Post][0].should == @checker.options['payload']
- end
- it "sends options['payload'] as a GET request" do
- @checker.options['method'] = 'get'
- lambda {
- lambda {
- @checker.check
- }.should change { @sent_requests[Net::HTTP::Get].length }.by(1)
- }.should_not change { @sent_requests[Net::HTTP::Post].length }
- @sent_requests[Net::HTTP::Get][0].should == @checker.options['payload']
- end
- end
- describe "#working?" do
- it "checks if events have been received within expected receive period" do
- @checker.should_not be_working
- Agents::PostAgent.async_receive @checker.id, [@event.id]
- @checker.reload.should be_working
- two_days_from_now = 2.days.from_now
- stub(Time).now { two_days_from_now }
- @checker.reload.should_not be_working
- end
- end
- describe "validation" do
- before do
- @checker.should be_valid
- end
- it "should validate presence of post_url" do
- @checker.options['post_url'] = ""
- @checker.should_not be_valid
- end
- it "should validate presence of expected_receive_period_in_days" do
- @checker.options['expected_receive_period_in_days'] = ""
- @checker.should_not be_valid
- end
- it "should validate method as post, get, put, patch, or delete, defaulting to post" do
- @checker.options['method'] = ""
- @checker.method.should == "post"
- @checker.should be_valid
- @checker.options['method'] = "POST"
- @checker.method.should == "post"
- @checker.should be_valid
- @checker.options['method'] = "get"
- @checker.method.should == "get"
- @checker.should be_valid
- @checker.options['method'] = "patch"
- @checker.method.should == "patch"
- @checker.should be_valid
- @checker.options['method'] = "wut"
- @checker.method.should == "wut"
- @checker.should_not be_valid
- end
- it "should validate that no_merge is 'true' or 'false', if present" do
- @checker.options['no_merge'] = ""
- @checker.should be_valid
- @checker.options['no_merge'] = "true"
- @checker.should be_valid
- @checker.options['no_merge'] = "false"
- @checker.should be_valid
- @checker.options['no_merge'] = false
- @checker.should be_valid
- @checker.options['no_merge'] = true
- @checker.should be_valid
- @checker.options['no_merge'] = 'blarg'
- @checker.should_not be_valid
- end
- it "should validate payload as a hash, if present" do
- @checker.options['payload'] = ""
- @checker.should be_valid
- @checker.options['payload'] = "hello"
- @checker.should_not be_valid
- @checker.options['payload'] = ["foo", "bar"]
- @checker.should_not be_valid
- @checker.options['payload'] = { 'this' => 'that' }
- @checker.should be_valid
- end
- it "requires headers to be a hash, if present" do
- @checker.options['headers'] = [1,2,3]
- @checker.should_not be_valid
- @checker.options['headers'] = "hello world"
- @checker.should_not be_valid
- @checker.options['headers'] = ""
- @checker.should be_valid
- @checker.options['headers'] = {}
- @checker.should be_valid
- @checker.options['headers'] = { "Authorization" => "foo bar" }
- @checker.should be_valid
- end
- end
- describe "#generate_uri" do
- it "merges params with any in the post_url" do
- @checker.options['post_url'] = "http://example.com/a/path?existing_param=existing_value"
- uri = @checker.generate_uri("some_param" => "some_value", "another_param" => "another_value")
- uri.request_uri.should == "/a/path?existing_param=existing_value&some_param=some_value&another_param=another_value"
- end
- it "works fine with urls that do not have a query" do
- @checker.options['post_url'] = "http://example.com/a/path"
- uri = @checker.generate_uri("some_param" => "some_value", "another_param" => "another_value")
- uri.request_uri.should == "/a/path?some_param=some_value&another_param=another_value"
- end
- it "just returns the post_uri when no params are given" do
- @checker.options['post_url'] = "http://example.com/a/path?existing_param=existing_value"
- uri = @checker.generate_uri
- uri.request_uri.should == "/a/path?existing_param=existing_value"
- end
- end
- end
|