2012-07-18 17:24:37 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2014-04-12 04:56:37 -04:00
|
|
|
describe "Admin::Hooks", feature: true do
|
2012-07-18 17:24:37 -04:00
|
|
|
before do
|
2012-11-23 15:25:28 -05:00
|
|
|
@project = create(:project)
|
2012-07-18 17:24:37 -04:00
|
|
|
login_as :admin
|
|
|
|
|
2012-11-05 22:31:55 -05:00
|
|
|
@system_hook = create(:system_hook)
|
2012-07-18 17:24:37 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /admin/hooks" do
|
|
|
|
it "should be ok" do
|
|
|
|
visit admin_root_path
|
2015-06-13 18:30:09 -04:00
|
|
|
page.within ".sidebar-wrapper" do
|
2012-07-18 17:24:37 -04:00
|
|
|
click_on "Hooks"
|
|
|
|
end
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(admin_hooks_path)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should have hooks list" do
|
|
|
|
visit admin_hooks_path
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content(@system_hook.url)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "New Hook" do
|
|
|
|
before do
|
2015-05-20 19:22:00 -04:00
|
|
|
@url = FFaker::Internet.uri("http")
|
2012-07-18 17:24:37 -04:00
|
|
|
visit admin_hooks_path
|
2012-08-10 18:07:50 -04:00
|
|
|
fill_in "hook_url", with: @url
|
2012-07-18 17:24:37 -04:00
|
|
|
expect { click_button "Add System Hook" }.to change(SystemHook, :count).by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should open new hook popup" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(current_path).to eq(admin_hooks_path)
|
|
|
|
expect(page).to have_content(@url)
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Test" do
|
|
|
|
before do
|
|
|
|
WebMock.stub_request(:post, @system_hook.url)
|
|
|
|
visit admin_hooks_path
|
|
|
|
click_link "Test Hook"
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(current_path).to eq(admin_hooks_path) }
|
2012-07-18 17:24:37 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|