create_an_agent_spec.rb 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. require 'rails_helper'
  2. describe "Creating a new agent", js: true do
  3. before(:each) do
  4. login_as(users(:bob))
  5. end
  6. it "creates an agent" do
  7. visit "/"
  8. page.find("a", text: "Agents").trigger(:mouseover)
  9. click_on("New Agent")
  10. select2("Trigger Agent", from: "Type")
  11. fill_in(:agent_name, with: "Test Trigger Agent")
  12. click_on "Save"
  13. expect(page).to have_text("Test Trigger Agent")
  14. end
  15. it "creates an alert if a new agent with invalid json is submitted" do
  16. visit "/"
  17. page.find("a", text: "Agents").trigger(:mouseover)
  18. click_on("New Agent")
  19. select2("Trigger Agent", from: "Type")
  20. fill_in(:agent_name, with: "Test Trigger Agent")
  21. click_on("Toggle View")
  22. fill_in(:agent_options, with: '{
  23. "expected_receive_period_in_days": "2"
  24. "keep_event": "false"
  25. }')
  26. expect(get_alert_text_from { click_on "Save" }).to have_text("Sorry, there appears to be an error in your JSON input. Please fix it before continuing.")
  27. end
  28. context "displaying the correct information" do
  29. before(:each) do
  30. visit new_agent_path
  31. end
  32. it "shows all options for agents that can be scheduled, create and receive events" do
  33. select2("Website Agent", from: "Type")
  34. expect(page).not_to have_content('This type of Agent cannot create events.')
  35. end
  36. it "does not show the target select2 field when the agent can not create events" do
  37. select2("Growl Agent", from: "Type")
  38. expect(page).to have_content('This type of Agent cannot create events.')
  39. end
  40. end
  41. it "allows to click on on the agent name in select2 tags" do
  42. agent = agents(:bob_weather_agent)
  43. visit new_agent_path
  44. select2("Website Agent", from: "Type")
  45. select2("SF Weather", from: 'Sources')
  46. click_on "SF Weather"
  47. expect(page).to have_content "Editing your WeatherAgent"
  48. end
  49. context "clearing unsupported fields of agents" do
  50. before do
  51. visit new_agent_path
  52. end
  53. it "does not send previously configured sources when the current agent does not support them" do
  54. select2("Website Agent", from: "Type")
  55. select2("SF Weather", from: 'Sources')
  56. select2("Webhook Agent", from: "Type")
  57. fill_in(:agent_name, with: "No sources")
  58. click_on "Save"
  59. expect(page).to have_content("No sources")
  60. agent = Agent.find_by(name: "No sources")
  61. expect(agent.sources).to eq([])
  62. end
  63. it "does not send previously configured control targets when the current agent does not support them" do
  64. select2("Commander Agent", from: "Type")
  65. select2("SF Weather", from: 'Control targets')
  66. select2("Webhook Agent", from: "Type")
  67. fill_in(:agent_name, with: "No control targets")
  68. click_on "Save"
  69. expect(page).to have_content("No control targets")
  70. agent = Agent.find_by(name: "No control targets")
  71. expect(agent.control_targets).to eq([])
  72. end
  73. it "does not send previously configured receivers when the current agent does not support them" do
  74. select2("Website Agent", from: "Type")
  75. select2("ZKCD", from: 'Receivers')
  76. select2("Email Agent", from: "Type")
  77. fill_in(:agent_name, with: "No receivers")
  78. click_on "Save"
  79. expect(page).to have_content("No receivers")
  80. agent = Agent.find_by(name: "No receivers")
  81. expect(agent.receivers).to eq([])
  82. end
  83. end
  84. end