liquid_output_agent_spec.rb 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. # encoding: utf-8
  2. require 'rails_helper'
  3. describe Agents::LiquidOutputAgent do
  4. let(:agent) do
  5. _agent = Agents::LiquidOutputAgent.new(:name => 'My Data Output Agent')
  6. _agent.options = _agent.default_options.merge('secret' => 'secret1', 'events_to_show' => 3)
  7. _agent.options['secret'] = "a secret"
  8. _agent.user = users(:bob)
  9. _agent.sources << agents(:bob_website_agent)
  10. _agent.save!
  11. _agent
  12. end
  13. describe "#working?" do
  14. it "checks if events have been received within expected receive period" do
  15. expect(agent).not_to be_working
  16. Agents::LiquidOutputAgent.async_receive agent.id, [events(:bob_website_agent_event).id]
  17. expect(agent.reload).to be_working
  18. two_days_from_now = 2.days.from_now
  19. stub(Time).now { two_days_from_now }
  20. expect(agent.reload).not_to be_working
  21. end
  22. end
  23. describe "validation" do
  24. before do
  25. expect(agent).to be_valid
  26. end
  27. it "should validate presence and length of secret" do
  28. agent.options[:secret] = ""
  29. expect(agent).not_to be_valid
  30. agent.options[:secret] = "foo"
  31. expect(agent).to be_valid
  32. agent.options[:secret] = "foo/bar"
  33. expect(agent).not_to be_valid
  34. agent.options[:secret] = "foo.xml"
  35. expect(agent).not_to be_valid
  36. agent.options[:secret] = false
  37. expect(agent).not_to be_valid
  38. agent.options[:secret] = []
  39. expect(agent).not_to be_valid
  40. agent.options[:secret] = ["foo.xml"]
  41. expect(agent).not_to be_valid
  42. agent.options[:secret] = ["hello", true]
  43. expect(agent).not_to be_valid
  44. agent.options[:secret] = ["hello"]
  45. expect(agent).not_to be_valid
  46. agent.options[:secret] = ["hello", "world"]
  47. expect(agent).not_to be_valid
  48. end
  49. it "should validate presence of expected_receive_period_in_days" do
  50. agent.options[:expected_receive_period_in_days] = ""
  51. expect(agent).not_to be_valid
  52. agent.options[:expected_receive_period_in_days] = 0
  53. expect(agent).not_to be_valid
  54. agent.options[:expected_receive_period_in_days] = -1
  55. expect(agent).not_to be_valid
  56. end
  57. it "should validate the event_limit" do
  58. agent.options[:event_limit] = ""
  59. expect(agent).to be_valid
  60. agent.options[:event_limit] = "1"
  61. expect(agent).to be_valid
  62. agent.options[:event_limit] = "1001"
  63. expect(agent).not_to be_valid
  64. agent.options[:event_limit] = "10000"
  65. expect(agent).not_to be_valid
  66. end
  67. it "should should not allow non-integer event limits" do
  68. agent.options[:event_limit] = "abc1234"
  69. expect(agent).not_to be_valid
  70. end
  71. end
  72. describe "#receive?" do
  73. let(:key) { SecureRandom.uuid }
  74. let(:value) { SecureRandom.uuid }
  75. let(:incoming_events) do
  76. last_payload = { key => value }
  77. [Struct.new(:payload).new( { key => SecureRandom.uuid } ),
  78. Struct.new(:payload).new( { key => SecureRandom.uuid } ),
  79. Struct.new(:payload).new(last_payload)]
  80. end
  81. describe "and the mode is last event in" do
  82. before { agent.options['mode'] = 'Last event in' }
  83. it "stores the last event in memory" do
  84. agent.receive incoming_events
  85. expect(agent.memory['last_event'][key]).to equal(value)
  86. end
  87. describe "but the casing is wrong" do
  88. before { agent.options['mode'] = 'LAST EVENT IN' }
  89. it "stores the last event in memory" do
  90. agent.receive incoming_events
  91. expect(agent.memory['last_event'][key]).to equal(value)
  92. end
  93. end
  94. end
  95. describe "but the mode is merge" do
  96. let(:second_key) { SecureRandom.uuid }
  97. let(:second_value) { SecureRandom.uuid }
  98. before { agent.options['mode'] = 'Merge events' }
  99. let(:incoming_events) do
  100. last_payload = { key => value }
  101. [Struct.new(:payload).new( { key => SecureRandom.uuid, second_key => second_value } ),
  102. Struct.new(:payload).new(last_payload)]
  103. end
  104. it "should merge all of the events passed to it" do
  105. agent.receive incoming_events
  106. expect(agent.memory['last_event'][key]).to equal(value)
  107. expect(agent.memory['last_event'][second_key]).to equal(second_value)
  108. end
  109. describe "but the casing on the mode is wrong" do
  110. before { agent.options['mode'] = 'MERGE EVENTS' }
  111. it "should merge all of the events passed to it" do
  112. agent.receive incoming_events
  113. expect(agent.memory['last_event'][key]).to equal(value)
  114. expect(agent.memory['last_event'][second_key]).to equal(second_value)
  115. end
  116. end
  117. end
  118. describe "but the mode is anything else" do
  119. before { agent.options['mode'] = SecureRandom.uuid }
  120. let(:incoming_events) do
  121. last_payload = { key => value }
  122. [Struct.new(:payload).new(last_payload)]
  123. end
  124. it "should do nothing" do
  125. agent.receive incoming_events
  126. expect(agent.memory.keys.count).to equal(0)
  127. end
  128. end
  129. end
  130. describe "#count_limit" do
  131. it "should have a default of 1000" do
  132. agent.options['event_limit'] = nil
  133. expect(agent.send(:count_limit)).to eq(1000)
  134. agent.options['event_limit'] = ''
  135. expect(agent.send(:count_limit)).to eq(1000)
  136. agent.options['event_limit'] = ' '
  137. expect(agent.send(:count_limit)).to eq(1000)
  138. end
  139. it "should convert string count limits to integers" do
  140. agent.options['event_limit'] = '1'
  141. expect(agent.send(:count_limit)).to eq(1)
  142. agent.options['event_limit'] = '2'
  143. expect(agent.send(:count_limit)).to eq(2)
  144. agent.options['event_limit'] = 3
  145. expect(agent.send(:count_limit)).to eq(3)
  146. end
  147. it "should default to 1000 with invalid values" do
  148. agent.options['event_limit'] = SecureRandom.uuid
  149. expect(agent.send(:count_limit)).to eq(1000)
  150. agent.options['event_limit'] = 'John Galt'
  151. expect(agent.send(:count_limit)).to eq(1000)
  152. end
  153. it "should not allow event limits above 1000" do
  154. agent.options['event_limit'] = '1001'
  155. expect(agent.send(:count_limit)).to eq(1000)
  156. agent.options['event_limit'] = '5000'
  157. expect(agent.send(:count_limit)).to eq(1000)
  158. end
  159. end
  160. describe "#receive_web_request?" do
  161. let(:secret) { SecureRandom.uuid }
  162. let(:params) { { 'secret' => secret } }
  163. let(:method) { nil }
  164. let(:format) { nil }
  165. let(:mime_type) { SecureRandom.uuid }
  166. let(:content) { "The key is {{#{key}}}." }
  167. let(:key) { SecureRandom.uuid }
  168. let(:value) { SecureRandom.uuid }
  169. before do
  170. agent.options['secret'] = secret
  171. agent.options['mime_type'] = mime_type
  172. agent.options['content'] = content
  173. agent.memory['last_event'] = { key => value }
  174. agents(:bob_website_agent).events.destroy_all
  175. end
  176. describe "and the mode is last event in" do
  177. before { agent.options['mode'] = 'Last event in' }
  178. it "should render the results as a liquid template from the last event in" do
  179. result = agent.receive_web_request params, method, format
  180. expect(result[0]).to eq("The key is #{value}.")
  181. expect(result[1]).to eq(200)
  182. expect(result[2]).to eq(mime_type)
  183. end
  184. describe "but the casing is wrong" do
  185. before { agent.options['mode'] = 'last event in' }
  186. it "should render the results as a liquid template from the last event in" do
  187. result = agent.receive_web_request params, method, format
  188. expect(result[0]).to eq("The key is #{value}.")
  189. expect(result[1]).to eq(200)
  190. expect(result[2]).to eq(mime_type)
  191. end
  192. end
  193. end
  194. describe "and the mode is merge events" do
  195. before { agent.options['mode'] = 'Merge events' }
  196. it "should render the results as a liquid template from the last event in" do
  197. result = agent.receive_web_request params, method, format
  198. expect(result[0]).to eq("The key is #{value}.")
  199. expect(result[1]).to eq(200)
  200. expect(result[2]).to eq(mime_type)
  201. end
  202. end
  203. describe "and the mode is last X events" do
  204. before do
  205. agent.options['mode'] = 'Last X events'
  206. agents(:bob_website_agent).create_event payload: {
  207. "name" => "Dagny Taggart",
  208. "book" => "Atlas Shrugged"
  209. }
  210. agents(:bob_website_agent).create_event payload: {
  211. "name" => "John Galt",
  212. "book" => "Atlas Shrugged"
  213. }
  214. agents(:bob_website_agent).create_event payload: {
  215. "name" => "Howard Roark",
  216. "book" => "The Fountainhead"
  217. }
  218. agent.options['content'] = <<EOF
  219. <table>
  220. {% for event in events %}
  221. <tr>
  222. <td>{{ event.name }}</td>
  223. <td>{{ event.book }}</td>
  224. </tr>
  225. {% endfor %}
  226. </table>
  227. EOF
  228. end
  229. it "should render the results as a liquid template from the last event in, limiting to 2" do
  230. agent.options['event_limit'] = 2
  231. result = agent.receive_web_request params, method, format
  232. expect(result[0]).to eq <<EOF
  233. <table>
  234. <tr>
  235. <td>Howard Roark</td>
  236. <td>The Fountainhead</td>
  237. </tr>
  238. <tr>
  239. <td>John Galt</td>
  240. <td>Atlas Shrugged</td>
  241. </tr>
  242. </table>
  243. EOF
  244. end
  245. it "should render the results as a liquid template from the last event in, limiting to 1" do
  246. agent.options['event_limit'] = 1
  247. result = agent.receive_web_request params, method, format
  248. expect(result[0]).to eq <<EOF
  249. <table>
  250. <tr>
  251. <td>Howard Roark</td>
  252. <td>The Fountainhead</td>
  253. </tr>
  254. </table>
  255. EOF
  256. end
  257. it "should render the results as a liquid template from the last event in, allowing no limit" do
  258. agent.options['event_limit'] = ''
  259. result = agent.receive_web_request params, method, format
  260. expect(result[0]).to eq <<EOF
  261. <table>
  262. <tr>
  263. <td>Howard Roark</td>
  264. <td>The Fountainhead</td>
  265. </tr>
  266. <tr>
  267. <td>John Galt</td>
  268. <td>Atlas Shrugged</td>
  269. </tr>
  270. <tr>
  271. <td>Dagny Taggart</td>
  272. <td>Atlas Shrugged</td>
  273. </tr>
  274. </table>
  275. EOF
  276. end
  277. it "should allow the limiting by time, as well" do
  278. one_event = agent.received_events.select { |x| x.payload['name'] == 'John Galt' }.first
  279. one_event.created_at = 2.days.ago
  280. one_event.save!
  281. agent.options['event_limit'] = '1 day'
  282. result = agent.receive_web_request params, method, format
  283. expect(result[0]).to eq <<EOF
  284. <table>
  285. <tr>
  286. <td>Howard Roark</td>
  287. <td>The Fountainhead</td>
  288. </tr>
  289. <tr>
  290. <td>Dagny Taggart</td>
  291. <td>Atlas Shrugged</td>
  292. </tr>
  293. </table>
  294. EOF
  295. end
  296. it "should not be case sensitive when limiting on time" do
  297. one_event = agent.received_events.select { |x| x.payload['name'] == 'John Galt' }.first
  298. one_event.created_at = 2.days.ago
  299. one_event.save!
  300. agent.options['event_limit'] = '1 DaY'
  301. result = agent.receive_web_request params, method, format
  302. expect(result[0]).to eq <<EOF
  303. <table>
  304. <tr>
  305. <td>Howard Roark</td>
  306. <td>The Fountainhead</td>
  307. </tr>
  308. <tr>
  309. <td>Dagny Taggart</td>
  310. <td>Atlas Shrugged</td>
  311. </tr>
  312. </table>
  313. EOF
  314. end
  315. it "it should continue to work when the event limit is wrong" do
  316. agent.options['event_limit'] = 'five days'
  317. result = agent.receive_web_request params, method, format
  318. expect(result[0].include?("Howard Roark")).to eq(true)
  319. expect(result[0].include?("Dagny Taggart")).to eq(true)
  320. expect(result[0].include?("John Galt")).to eq(true)
  321. agent.options['event_limit'] = '5 quibblequarks'
  322. result = agent.receive_web_request params, method, format
  323. expect(result[0].include?("Howard Roark")).to eq(true)
  324. expect(result[0].include?("Dagny Taggart")).to eq(true)
  325. expect(result[0].include?("John Galt")).to eq(true)
  326. end
  327. describe "but the mode was set to last X events with the wrong casing" do
  328. before { agent.options['mode'] = 'LAST X EVENTS' }
  329. it "should still work as last x events" do
  330. result = agent.receive_web_request params, method, format
  331. expect(result[0].include?("Howard Roark")).to eq(true)
  332. expect(result[0].include?("Dagny Taggart")).to eq(true)
  333. expect(result[0].include?("John Galt")).to eq(true)
  334. end
  335. end
  336. end
  337. describe "but the secret provided does not match" do
  338. before { params['secret'] = SecureRandom.uuid }
  339. it "should return a 401 response" do
  340. result = agent.receive_web_request params, method, format
  341. expect(result[0]).to eq("Not Authorized")
  342. expect(result[1]).to eq(401)
  343. end
  344. it "should return a 401 json response if the format is json" do
  345. result = agent.receive_web_request params, method, 'json'
  346. expect(result[0][:error]).to eq("Not Authorized")
  347. expect(result[1]).to eq(401)
  348. end
  349. end
  350. end
  351. end