gitlab-org--gitlab-foss/spec/features/admin/admin_hooks_spec.rb

52 lines
1.1 KiB
Ruby
Raw Normal View History

2012-07-18 17:24:37 -04:00
require 'spec_helper'
describe "Admin::Hooks", feature: true do
2012-07-18 17:24:37 -04:00
before do
@project = create(:project)
2012-07-18 17:24:37 -04:00
login_as :admin
@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
within ".sidebar-wrapper" do
2012-07-18 17:24:37 -04:00
click_on "Hooks"
end
current_path.should == admin_hooks_path
end
it "should have hooks list" do
visit admin_hooks_path
page.should have_content(@system_hook.url)
end
end
describe "New Hook" do
before do
@url = Faker::Internet.uri("http")
visit admin_hooks_path
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
2014-09-24 02:28:41 -04:00
current_path.should == admin_hooks_path
2012-07-18 17:24:37 -04:00
page.should have_content(@url)
end
end
describe "Test" do
before do
WebMock.stub_request(:post, @system_hook.url)
visit admin_hooks_path
click_link "Test Hook"
end
2014-09-24 02:28:41 -04:00
it { current_path.should == admin_hooks_path }
2012-07-18 17:24:37 -04:00
end
end