Нет описания http://j1x-huginn.herokuapp.com

agents_controller_spec.rb 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. require 'rails_helper'
  2. describe AgentsController do
  3. def valid_attributes(options = {})
  4. {
  5. :type => "Agents::WebsiteAgent",
  6. :name => "Something",
  7. :options => agents(:bob_website_agent).options,
  8. :source_ids => [agents(:bob_weather_agent).id, ""]
  9. }.merge(options)
  10. end
  11. describe "GET index" do
  12. it "only returns Agents for the current user" do
  13. sign_in users(:bob)
  14. get :index
  15. expect(assigns(:agents).all? {|i| expect(i.user).to eq(users(:bob)) }).to be_truthy
  16. end
  17. end
  18. describe "POST handle_details_post" do
  19. it "passes control to handle_details_post on the agent" do
  20. sign_in users(:bob)
  21. post :handle_details_post, :id => agents(:bob_manual_event_agent).to_param, :payload => { :foo => "bar" }.to_json
  22. expect(JSON.parse(response.body)).to eq({ "success" => true })
  23. expect(agents(:bob_manual_event_agent).events.last.payload).to eq({ 'foo' => "bar" })
  24. end
  25. it "can only be accessed by the Agent's owner" do
  26. sign_in users(:jane)
  27. expect {
  28. post :handle_details_post, :id => agents(:bob_manual_event_agent).to_param, :payload => { :foo => :bar }.to_json
  29. }.to raise_error(ActiveRecord::RecordNotFound)
  30. end
  31. end
  32. describe "POST run" do
  33. it "triggers Agent.async_check with the Agent's ID" do
  34. sign_in users(:bob)
  35. mock(Agent).async_check(agents(:bob_manual_event_agent).id)
  36. post :run, :id => agents(:bob_manual_event_agent).to_param
  37. end
  38. it "can only be accessed by the Agent's owner" do
  39. sign_in users(:jane)
  40. expect {
  41. post :run, :id => agents(:bob_manual_event_agent).to_param
  42. }.to raise_error(ActiveRecord::RecordNotFound)
  43. end
  44. end
  45. describe "POST remove_events" do
  46. it "deletes all events created by the given Agent" do
  47. sign_in users(:bob)
  48. agent_event = events(:bob_website_agent_event).id
  49. other_event = events(:jane_website_agent_event).id
  50. post :remove_events, :id => agents(:bob_website_agent).to_param
  51. expect(Event.where(:id => agent_event).count).to eq(0)
  52. expect(Event.where(:id => other_event).count).to eq(1)
  53. end
  54. it "can only be accessed by the Agent's owner" do
  55. sign_in users(:jane)
  56. expect {
  57. post :remove_events, :id => agents(:bob_website_agent).to_param
  58. }.to raise_error(ActiveRecord::RecordNotFound)
  59. end
  60. end
  61. describe "POST propagate" do
  62. before(:each) do
  63. sign_in users(:bob)
  64. end
  65. it "runs event propagation for all Agents" do
  66. mock.proxy(Agent).receive!
  67. post :propagate
  68. end
  69. it "does not run the propagation when a job is already enqueued" do
  70. mock(AgentPropagateJob).can_enqueue? { false }
  71. post :propagate
  72. expect(flash[:notice]).to eq('Event propagation is already scheduled to run.')
  73. end
  74. end
  75. describe "GET show" do
  76. it "only shows Agents for the current user" do
  77. sign_in users(:bob)
  78. get :show, :id => agents(:bob_website_agent).to_param
  79. expect(assigns(:agent)).to eq(agents(:bob_website_agent))
  80. expect {
  81. get :show, :id => agents(:jane_website_agent).to_param
  82. }.to raise_error(ActiveRecord::RecordNotFound)
  83. end
  84. end
  85. describe "GET new" do
  86. describe "with :id" do
  87. it "opens a clone of a given Agent" do
  88. sign_in users(:bob)
  89. get :new, :id => agents(:bob_website_agent).to_param
  90. expect(assigns(:agent).attributes).to eq(users(:bob).agents.build_clone(agents(:bob_website_agent)).attributes)
  91. end
  92. it "only allows the current user to clone his own Agent" do
  93. sign_in users(:bob)
  94. expect {
  95. get :new, :id => agents(:jane_website_agent).to_param
  96. }.to raise_error(ActiveRecord::RecordNotFound)
  97. end
  98. end
  99. describe "with a scenario_id" do
  100. it 'populates the assigned agent with the scenario' do
  101. sign_in users(:bob)
  102. get :new, :scenario_id => scenarios(:bob_weather).id
  103. expect(assigns(:agent).scenario_ids).to eq([scenarios(:bob_weather).id])
  104. end
  105. it "does not see other user's scenarios" do
  106. sign_in users(:bob)
  107. get :new, :scenario_id => scenarios(:jane_weather).id
  108. expect(assigns(:agent).scenario_ids).to eq([])
  109. end
  110. end
  111. end
  112. describe "GET edit" do
  113. it "only shows Agents for the current user" do
  114. sign_in users(:bob)
  115. get :edit, :id => agents(:bob_website_agent).to_param
  116. expect(assigns(:agent)).to eq(agents(:bob_website_agent))
  117. expect {
  118. get :edit, :id => agents(:jane_website_agent).to_param
  119. }.to raise_error(ActiveRecord::RecordNotFound)
  120. end
  121. end
  122. describe "POST create" do
  123. it "errors on bad types" do
  124. sign_in users(:bob)
  125. expect {
  126. post :create, :agent => valid_attributes(:type => "Agents::ThisIsFake")
  127. }.not_to change { users(:bob).agents.count }
  128. expect(assigns(:agent)).to be_a(Agent)
  129. expect(assigns(:agent)).to have(1).error_on(:type)
  130. sign_in users(:bob)
  131. expect {
  132. post :create, :agent => valid_attributes(:type => "Object")
  133. }.not_to change { users(:bob).agents.count }
  134. expect(assigns(:agent)).to be_a(Agent)
  135. expect(assigns(:agent)).to have(1).error_on(:type)
  136. sign_in users(:bob)
  137. expect {
  138. post :create, :agent => valid_attributes(:type => "Agent")
  139. }.not_to change { users(:bob).agents.count }
  140. expect(assigns(:agent)).to be_a(Agent)
  141. expect(assigns(:agent)).to have(1).error_on(:type)
  142. expect {
  143. post :create, :agent => valid_attributes(:type => "User")
  144. }.not_to change { users(:bob).agents.count }
  145. expect(assigns(:agent)).to be_a(Agent)
  146. expect(assigns(:agent)).to have(1).error_on(:type)
  147. end
  148. it "creates Agents for the current user" do
  149. sign_in users(:bob)
  150. expect {
  151. expect {
  152. post :create, :agent => valid_attributes
  153. }.to change { users(:bob).agents.count }.by(1)
  154. }.to change { Link.count }.by(1)
  155. expect(assigns(:agent)).to be_a(Agents::WebsiteAgent)
  156. end
  157. it "shows errors" do
  158. sign_in users(:bob)
  159. expect {
  160. post :create, :agent => valid_attributes(:name => "")
  161. }.not_to change { users(:bob).agents.count }
  162. expect(assigns(:agent)).to have(1).errors_on(:name)
  163. expect(response).to render_template("new")
  164. end
  165. it "will not accept Agent sources owned by other users" do
  166. sign_in users(:bob)
  167. expect {
  168. expect {
  169. post :create, :agent => valid_attributes(:source_ids => [agents(:jane_weather_agent).id])
  170. }.not_to change { users(:bob).agents.count }
  171. }.not_to change { Link.count }
  172. end
  173. end
  174. describe "PUT update" do
  175. it "does not allow changing types" do
  176. sign_in users(:bob)
  177. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:type => "Agents::WeatherAgent")
  178. expect(assigns(:agent)).to have(1).errors_on(:type)
  179. expect(response).to render_template("edit")
  180. end
  181. it "updates attributes on Agents for the current user" do
  182. sign_in users(:bob)
  183. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name")
  184. expect(response).to redirect_to(agents_path)
  185. expect(agents(:bob_website_agent).reload.name).to eq("New name")
  186. expect {
  187. post :update, :id => agents(:jane_website_agent).to_param, :agent => valid_attributes(:name => "New name")
  188. }.to raise_error(ActiveRecord::RecordNotFound)
  189. end
  190. it "accepts JSON requests" do
  191. sign_in users(:bob)
  192. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :format => :json
  193. expect(agents(:bob_website_agent).reload.name).to eq("New name")
  194. expect(JSON.parse(response.body)['name']).to eq("New name")
  195. expect(response).to be_success
  196. end
  197. it "will not accept Agent sources owned by other users" do
  198. sign_in users(:bob)
  199. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:source_ids => [agents(:jane_weather_agent).id])
  200. expect(assigns(:agent)).to have(1).errors_on(:sources)
  201. end
  202. it "will not accept Scenarios owned by other users" do
  203. sign_in users(:bob)
  204. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:scenario_ids => [scenarios(:jane_weather).id])
  205. expect(assigns(:agent)).to have(1).errors_on(:scenarios)
  206. end
  207. it "shows errors" do
  208. sign_in users(:bob)
  209. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "")
  210. expect(assigns(:agent)).to have(1).errors_on(:name)
  211. expect(response).to render_template("edit")
  212. end
  213. describe "redirecting back" do
  214. before do
  215. sign_in users(:bob)
  216. end
  217. it "can redirect back to the show path" do
  218. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :return => "show"
  219. expect(response).to redirect_to(agent_path(agents(:bob_website_agent)))
  220. end
  221. it "redirect back to the index path by default" do
  222. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name")
  223. expect(response).to redirect_to(agents_path)
  224. end
  225. it "accepts return paths to scenarios" do
  226. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :return => "/scenarios/2"
  227. expect(response).to redirect_to("/scenarios/2")
  228. end
  229. it "sanitizes return paths" do
  230. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :return => "/scenar"
  231. expect(response).to redirect_to(agents_path)
  232. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :return => "http://google.com"
  233. expect(response).to redirect_to(agents_path)
  234. post :update, :id => agents(:bob_website_agent).to_param, :agent => valid_attributes(:name => "New name"), :return => "javascript:alert(1)"
  235. expect(response).to redirect_to(agents_path)
  236. end
  237. end
  238. it "updates last_checked_event_id when drop_pending_events is given" do
  239. sign_in users(:bob)
  240. agent = agents(:bob_website_agent)
  241. agent.disabled = true
  242. agent.last_checked_event_id = nil
  243. agent.save!
  244. post :update, id: agents(:bob_website_agent).to_param, agent: { disabled: 'false', drop_pending_events: 'true' }
  245. agent.reload
  246. expect(agent.disabled).to eq(false)
  247. expect(agent.last_checked_event_id).to eq(Event.maximum(:id))
  248. end
  249. end
  250. describe "PUT leave_scenario" do
  251. it "removes an Agent from the given Scenario for the current user" do
  252. sign_in users(:bob)
  253. expect(agents(:bob_weather_agent).scenarios).to include(scenarios(:bob_weather))
  254. put :leave_scenario, :id => agents(:bob_weather_agent).to_param, :scenario_id => scenarios(:bob_weather).to_param
  255. expect(agents(:bob_weather_agent).scenarios).not_to include(scenarios(:bob_weather))
  256. expect(Scenario.where(:id => scenarios(:bob_weather).id)).to exist
  257. expect {
  258. put :leave_scenario, :id => agents(:jane_weather_agent).to_param, :scenario_id => scenarios(:jane_weather).to_param
  259. }.to raise_error(ActiveRecord::RecordNotFound)
  260. end
  261. end
  262. describe "DELETE destroy" do
  263. it "destroys only Agents owned by the current user" do
  264. sign_in users(:bob)
  265. expect {
  266. delete :destroy, :id => agents(:bob_website_agent).to_param
  267. }.to change(Agent, :count).by(-1)
  268. expect {
  269. delete :destroy, :id => agents(:jane_website_agent).to_param
  270. }.to raise_error(ActiveRecord::RecordNotFound)
  271. end
  272. it "redirects correctly when the Agent is deleted from the Agent itself" do
  273. sign_in users(:bob)
  274. delete :destroy, :id => agents(:bob_website_agent).to_param
  275. expect(response).to redirect_to agents_path
  276. end
  277. it "redirects correctly when the Agent is deleted from a Scenario" do
  278. sign_in users(:bob)
  279. delete :destroy, :id => agents(:bob_weather_agent).to_param, :return => scenario_path(scenarios(:bob_weather)).to_param
  280. expect(response).to redirect_to scenario_path(scenarios(:bob_weather))
  281. end
  282. end
  283. describe "#form_configurable actions" do
  284. before(:each) do
  285. @params = {attribute: 'auth_token', agent: valid_attributes(:type => "Agents::HipchatAgent", options: {auth_token: '12345'})}
  286. sign_in users(:bob)
  287. end
  288. describe "POST validate" do
  289. it "returns with status 200 when called with a valid option" do
  290. any_instance_of(Agents::HipchatAgent) do |klass|
  291. stub(klass).validate_option { true }
  292. end
  293. post :validate, @params
  294. expect(response.status).to eq 200
  295. end
  296. it "returns with status 403 when called with an invalid option" do
  297. any_instance_of(Agents::HipchatAgent) do |klass|
  298. stub(klass).validate_option { false }
  299. end
  300. post :validate, @params
  301. expect(response.status).to eq 403
  302. end
  303. end
  304. describe "POST complete" do
  305. it "callsAgent#complete_option and renders json" do
  306. any_instance_of(Agents::HipchatAgent) do |klass|
  307. stub(klass).complete_option { [{name: 'test', value: 1}] }
  308. end
  309. post :complete, @params
  310. expect(response.status).to eq 200
  311. expect(response.header['Content-Type']).to include('application/json')
  312. end
  313. end
  314. end
  315. describe "POST dry_run" do
  316. before do
  317. stub_request(:any, /xkcd/).to_return(body: File.read(Rails.root.join("spec/data_fixtures/xkcd.html")), status: 200)
  318. end
  319. it "does not actually create any agent, event or log" do
  320. sign_in users(:bob)
  321. expect {
  322. post :dry_run, agent: valid_attributes()
  323. }.not_to change {
  324. [users(:bob).agents.count, users(:bob).events.count, users(:bob).logs.count]
  325. }
  326. json = JSON.parse(response.body)
  327. expect(json['log']).to be_a(String)
  328. expect(json['events']).to be_a(String)
  329. expect(JSON.parse(json['events']).map(&:class)).to eq([Hash])
  330. expect(json['memory']).to be_a(String)
  331. expect(JSON.parse(json['memory'])).to be_a(Hash)
  332. end
  333. it "does not actually update an agent" do
  334. sign_in users(:bob)
  335. agent = agents(:bob_weather_agent)
  336. expect {
  337. post :dry_run, id: agent, agent: valid_attributes(name: 'New Name')
  338. }.not_to change {
  339. [users(:bob).agents.count, users(:bob).events.count, users(:bob).logs.count, agent.name, agent.updated_at]
  340. }
  341. end
  342. it "accepts an event" do
  343. sign_in users(:bob)
  344. agent = agents(:bob_website_agent)
  345. agent.options['url_from_event'] = '{{ url }}'
  346. agent.save!
  347. url_from_event = "http://xkcd.com/?from_event=1".freeze
  348. expect {
  349. post :dry_run, id: agent, event: { url: url_from_event }
  350. }.not_to change {
  351. [users(:bob).agents.count, users(:bob).events.count, users(:bob).logs.count, agent.name, agent.updated_at]
  352. }
  353. json = JSON.parse(response.body)
  354. expect(json['log']).to match(/^\[\d\d:\d\d:\d\d\] INFO -- : Fetching #{Regexp.quote(url_from_event)}$/)
  355. end
  356. end
  357. describe "DELETE memory" do
  358. it "clears memory of the agent" do
  359. agent = agents(:bob_website_agent)
  360. agent.update!(memory: { "test" => 42 })
  361. sign_in users(:bob)
  362. delete :destroy_memory, id: agent.to_param
  363. expect(agent.reload.memory).to eq({})
  364. end
  365. it "does not clear memory of an agent not owned by the current user" do
  366. agent = agents(:jane_website_agent)
  367. agent.update!(memory: { "test" => 42 })
  368. sign_in users(:bob)
  369. expect {
  370. delete :destroy_memory, id: agent.to_param
  371. }.to raise_error(ActiveRecord::RecordNotFound)
  372. expect(agent.reload.memory).to eq({ "test" => 42})
  373. end
  374. end
  375. end