post_agent_spec.rb 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. require 'rails_helper'
  2. require 'ostruct'
  3. describe Agents::PostAgent do
  4. before do
  5. @valid_options = {
  6. 'post_url' => "http://www.example.com",
  7. 'expected_receive_period_in_days' => 1,
  8. 'payload' => {
  9. 'default' => 'value'
  10. }
  11. }
  12. @valid_params = {
  13. name: "somename",
  14. options: @valid_options
  15. }
  16. @checker = Agents::PostAgent.new(@valid_params)
  17. @checker.user = users(:jane)
  18. @checker.save!
  19. @event = Event.new
  20. @event.agent = agents(:jane_weather_agent)
  21. @event.payload = {
  22. 'somekey' => 'somevalue',
  23. 'someotherkey' => {
  24. 'somekey' => 'value'
  25. }
  26. }
  27. @requests = 0
  28. @sent_requests = Hash.new { |hash, method| hash[method] = [] }
  29. stub_request(:any, /:/).to_return { |request|
  30. method = request.method
  31. @requests += 1
  32. @sent_requests[method] << req = OpenStruct.new(uri: request.uri, headers: request.headers)
  33. case method
  34. when :get, :delete
  35. req.data = request.uri.query
  36. else
  37. content_type = request.headers['Content-Type'][/\A[^;\s]+/]
  38. case content_type
  39. when 'application/x-www-form-urlencoded'
  40. req.data = request.body
  41. when 'application/json'
  42. req.data = ActiveSupport::JSON.decode(request.body)
  43. when 'text/xml'
  44. req.data = Hash.from_xml(request.body)
  45. when Agents::PostAgent::MIME_RE
  46. req.data = request.body
  47. else
  48. raise "unexpected Content-Type: #{content_type}"
  49. end
  50. end
  51. { status: 200, body: "<html>a webpage!</html>", headers: { 'Content-type' => 'text/html' } }
  52. }
  53. end
  54. it_behaves_like WebRequestConcern
  55. it_behaves_like 'FileHandlingConsumer'
  56. it 'renders the description markdown without errors' do
  57. expect { @checker.description }.not_to raise_error
  58. end
  59. describe "making requests" do
  60. it "can make requests of each type" do
  61. %w[get put post patch delete].each.with_index(1) do |verb, index|
  62. @checker.options['method'] = verb
  63. expect(@checker).to be_valid
  64. @checker.check
  65. expect(@requests).to eq(index)
  66. expect(@sent_requests[verb.to_sym].length).to eq(1)
  67. end
  68. end
  69. end
  70. describe "#receive" do
  71. it "can handle multiple events and merge the payloads with options['payload']" do
  72. event1 = Event.new
  73. event1.agent = agents(:bob_weather_agent)
  74. event1.payload = {
  75. 'xyz' => 'value1',
  76. 'message' => 'value2',
  77. 'default' => 'value2'
  78. }
  79. expect {
  80. expect {
  81. @checker.receive([@event, event1])
  82. }.to change { @sent_requests[:post].length }.by(2)
  83. }.not_to change { @sent_requests[:get].length }
  84. expect(@sent_requests[:post][0].data).to eq(@event.payload.merge('default' => 'value').to_query)
  85. expect(@sent_requests[:post][1].data).to eq(event1.payload.to_query)
  86. end
  87. it "can make GET requests" do
  88. @checker.options['method'] = 'get'
  89. expect {
  90. expect {
  91. @checker.receive([@event])
  92. }.to change { @sent_requests[:get].length }.by(1)
  93. }.not_to change { @sent_requests[:post].length }
  94. expect(@sent_requests[:get][0].data).to eq(@event.payload.merge('default' => 'value').to_query)
  95. end
  96. it "can make a GET request merging params in post_url, payload and event" do
  97. @checker.options['method'] = 'get'
  98. @checker.options['post_url'] = "http://example.com/a/path?existing_param=existing_value"
  99. @event.payload = {
  100. "some_param" => "some_value",
  101. "another_param" => "another_value"
  102. }
  103. @checker.receive([@event])
  104. uri = @sent_requests[:get].first.uri
  105. # parameters are alphabetically sorted by Faraday
  106. expect(uri.request_uri).to eq("/a/path?another_param=another_value&default=value&existing_param=existing_value&some_param=some_value")
  107. end
  108. it "can skip merging the incoming event when no_merge is set, but it still interpolates" do
  109. @checker.options['no_merge'] = 'true'
  110. @checker.options['payload'] = {
  111. 'key' => 'it said: {{ someotherkey.somekey }}'
  112. }
  113. @checker.receive([@event])
  114. expect(@sent_requests[:post].first.data).to eq({ 'key' => 'it said: value' }.to_query)
  115. end
  116. it "interpolates when receiving a payload" do
  117. @checker.options['post_url'] = "https://{{ domain }}/{{ variable }}?existing_param=existing_value"
  118. @event.payload = {
  119. 'domain' => 'google.com',
  120. 'variable' => 'a_variable'
  121. }
  122. @checker.receive([@event])
  123. uri = @sent_requests[:post].first.uri
  124. expect(uri.scheme).to eq('https')
  125. expect(uri.host).to eq('google.com')
  126. expect(uri.path).to eq('/a_variable')
  127. expect(uri.query).to eq("existing_param=existing_value")
  128. end
  129. it "interpolates outgoing headers with the event payload" do
  130. @checker.options['headers'] = {
  131. "Foo" => "{{ variable }}"
  132. }
  133. @event.payload = {
  134. 'variable' => 'a_variable'
  135. }
  136. @checker.receive([@event])
  137. headers = @sent_requests[:post].first.headers
  138. expect(headers["Foo"]).to eq("a_variable")
  139. end
  140. it 'makes a multipart request when receiving a file_pointer' do
  141. WebMock.reset!
  142. stub_request(:post, "http://www.example.com/").
  143. with(:body => "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"default\"\r\n\r\nvalue\r\n-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"file\"; filename=\"local.path\"\r\nContent-Length: 8\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\ntestdata\r\n-------------RubyMultipartPost--\r\n\r\n",
  144. :headers => {'Accept-Encoding'=>'gzip,deflate', 'Content-Length'=>'307', 'Content-Type'=>'multipart/form-data; boundary=-----------RubyMultipartPost', 'User-Agent'=>'Huginn - https://github.com/cantino/huginn'}).
  145. to_return(:status => 200, :body => "", :headers => {})
  146. event = Event.new(payload: {file_pointer: {agent_id: 111, file: 'test'}})
  147. io_mock = mock()
  148. mock(@checker).get_io(event) { StringIO.new("testdata") }
  149. @checker.options['no_merge'] = true
  150. @checker.receive([event])
  151. end
  152. end
  153. describe "#check" do
  154. it "sends options['payload'] as a POST request" do
  155. expect {
  156. @checker.check
  157. }.to change { @sent_requests[:post].length }.by(1)
  158. expect(@sent_requests[:post][0].data).to eq(@checker.options['payload'].to_query)
  159. end
  160. it "sends options['payload'] as JSON as a POST request" do
  161. @checker.options['content_type'] = 'json'
  162. expect {
  163. @checker.check
  164. }.to change { @sent_requests[:post].length }.by(1)
  165. expect(@sent_requests[:post][0].data).to eq(@checker.options['payload'])
  166. end
  167. it "sends options['payload'] as XML as a POST request" do
  168. @checker.options['content_type'] = 'xml'
  169. expect {
  170. @checker.check
  171. }.to change { @sent_requests[:post].length }.by(1)
  172. expect(@sent_requests[:post][0].data.keys).to eq([ 'post' ])
  173. expect(@sent_requests[:post][0].data['post']).to eq(@checker.options['payload'])
  174. end
  175. it "sends options['payload'] as XML with custom root element name, as a POST request" do
  176. @checker.options['content_type'] = 'xml'
  177. @checker.options['xml_root'] = 'foobar'
  178. expect {
  179. @checker.check
  180. }.to change { @sent_requests[:post].length }.by(1)
  181. expect(@sent_requests[:post][0].data.keys).to eq([ 'foobar' ])
  182. expect(@sent_requests[:post][0].data['foobar']).to eq(@checker.options['payload'])
  183. end
  184. it "sends options['payload'] as a GET request" do
  185. @checker.options['method'] = 'get'
  186. expect {
  187. expect {
  188. @checker.check
  189. }.to change { @sent_requests[:get].length }.by(1)
  190. }.not_to change { @sent_requests[:post].length }
  191. expect(@sent_requests[:get][0].data).to eq(@checker.options['payload'].to_query)
  192. end
  193. it "sends options['payload'] as a string POST request when content-type continas a MIME type" do
  194. @checker.options['payload'] = '<test>hello</test>'
  195. @checker.options['content_type'] = 'application/xml'
  196. expect {
  197. @checker.check
  198. }.to change { @sent_requests[:post].length }.by(1)
  199. expect(@sent_requests[:post][0].data).to eq('<test>hello</test>')
  200. end
  201. it "interpolates outgoing headers" do
  202. @checker.options['headers'] = {
  203. "Foo" => "{% credential aws_key %}"
  204. }
  205. @checker.check
  206. headers = @sent_requests[:post].first.headers
  207. expect(headers["Foo"]).to eq("2222222222-jane")
  208. end
  209. describe "emitting events" do
  210. context "when emit_events is not set to true" do
  211. it "does not emit events" do
  212. expect {
  213. @checker.check
  214. }.not_to change { @checker.events.count }
  215. end
  216. end
  217. context "when emit_events is set to true" do
  218. before do
  219. @checker.options['emit_events'] = 'true'
  220. @checker.save!
  221. end
  222. it "emits the response status" do
  223. expect {
  224. @checker.check
  225. }.to change { @checker.events.count }.by(1)
  226. expect(@checker.events.last.payload['status']).to eq 200
  227. end
  228. it "emits the body" do
  229. @checker.check
  230. expect(@checker.events.last.payload['body']).to eq '<html>a webpage!</html>'
  231. end
  232. it "emits the response headers capitalized by default" do
  233. @checker.check
  234. expect(@checker.events.last.payload['headers']).to eq({ 'Content-Type' => 'text/html' })
  235. end
  236. it "emits the response headers capitalized" do
  237. @checker.options['event_headers_style'] = 'capitalized'
  238. @checker.check
  239. expect(@checker.events.last.payload['headers']).to eq({ 'Content-Type' => 'text/html' })
  240. end
  241. it "emits the response headers downcased" do
  242. @checker.options['event_headers_style'] = 'downcased'
  243. @checker.check
  244. expect(@checker.events.last.payload['headers']).to eq({ 'content-type' => 'text/html' })
  245. end
  246. it "emits the response headers snakecased" do
  247. @checker.options['event_headers_style'] = 'snakecased'
  248. @checker.check
  249. expect(@checker.events.last.payload['headers']).to eq({ 'content_type' => 'text/html' })
  250. end
  251. end
  252. end
  253. end
  254. describe "#working?" do
  255. it "checks if events have been received within expected receive period" do
  256. expect(@checker).not_to be_working
  257. Agents::PostAgent.async_receive @checker.id, [@event.id]
  258. expect(@checker.reload).to be_working
  259. two_days_from_now = 2.days.from_now
  260. stub(Time).now { two_days_from_now }
  261. expect(@checker.reload).not_to be_working
  262. end
  263. end
  264. describe "validation" do
  265. before do
  266. expect(@checker).to be_valid
  267. end
  268. it "should validate presence of post_url" do
  269. @checker.options['post_url'] = ""
  270. expect(@checker).not_to be_valid
  271. end
  272. it "should validate presence of expected_receive_period_in_days" do
  273. @checker.options['expected_receive_period_in_days'] = ""
  274. expect(@checker).not_to be_valid
  275. end
  276. it "should validate method as post, get, put, patch, or delete, defaulting to post" do
  277. @checker.options['method'] = ""
  278. expect(@checker.method).to eq("post")
  279. expect(@checker).to be_valid
  280. @checker.options['method'] = "POST"
  281. expect(@checker.method).to eq("post")
  282. expect(@checker).to be_valid
  283. @checker.options['method'] = "get"
  284. expect(@checker.method).to eq("get")
  285. expect(@checker).to be_valid
  286. @checker.options['method'] = "patch"
  287. expect(@checker.method).to eq("patch")
  288. expect(@checker).to be_valid
  289. @checker.options['method'] = "wut"
  290. expect(@checker.method).to eq("wut")
  291. expect(@checker).not_to be_valid
  292. end
  293. it "should validate that no_merge is 'true' or 'false', if present" do
  294. @checker.options['no_merge'] = ""
  295. expect(@checker).to be_valid
  296. @checker.options['no_merge'] = "true"
  297. expect(@checker).to be_valid
  298. @checker.options['no_merge'] = "false"
  299. expect(@checker).to be_valid
  300. @checker.options['no_merge'] = false
  301. expect(@checker).to be_valid
  302. @checker.options['no_merge'] = true
  303. expect(@checker).to be_valid
  304. @checker.options['no_merge'] = 'blarg'
  305. expect(@checker).not_to be_valid
  306. end
  307. it "should validate payload as a hash, if present" do
  308. @checker.options['payload'] = ""
  309. expect(@checker).to be_valid
  310. @checker.options['payload'] = "hello"
  311. expect(@checker).not_to be_valid
  312. @checker.options['payload'] = ["foo", "bar"]
  313. expect(@checker).not_to be_valid
  314. @checker.options['payload'] = { 'this' => 'that' }
  315. expect(@checker).to be_valid
  316. end
  317. it "should not validate payload as a hash if content_type includes a MIME type and method is not get or delete" do
  318. @checker.options['no_merge'] = 'true'
  319. @checker.options['content_type'] = 'text/xml'
  320. @checker.options['payload'] = "test"
  321. expect(@checker).to be_valid
  322. @checker.options['method'] = 'get'
  323. expect(@checker).not_to be_valid
  324. @checker.options['method'] = 'delete'
  325. expect(@checker).not_to be_valid
  326. end
  327. it "requires `no_merge` to be set to true when content_type contains a MIME type" do
  328. @checker.options['content_type'] = 'text/xml'
  329. @checker.options['payload'] = "test"
  330. expect(@checker).not_to be_valid
  331. end
  332. it "requires headers to be a hash, if present" do
  333. @checker.options['headers'] = [1,2,3]
  334. expect(@checker).not_to be_valid
  335. @checker.options['headers'] = "hello world"
  336. expect(@checker).not_to be_valid
  337. @checker.options['headers'] = ""
  338. expect(@checker).to be_valid
  339. @checker.options['headers'] = {}
  340. expect(@checker).to be_valid
  341. @checker.options['headers'] = { "Authorization" => "foo bar" }
  342. expect(@checker).to be_valid
  343. end
  344. it "requires emit_events to be true or false" do
  345. @checker.options['emit_events'] = 'what?'
  346. expect(@checker).not_to be_valid
  347. @checker.options.delete('emit_events')
  348. expect(@checker).to be_valid
  349. @checker.options['emit_events'] = 'true'
  350. expect(@checker).to be_valid
  351. @checker.options['emit_events'] = 'false'
  352. expect(@checker).to be_valid
  353. @checker.options['emit_events'] = true
  354. expect(@checker).to be_valid
  355. end
  356. end
  357. end