BigW Consortium Gitlab

admin_hooks_spec.rb 1.11 KB
Newer Older
Valeriy Sizov committed
1 2
require 'spec_helper'

3
describe "Admin::Hooks", feature: true do
Valeriy Sizov committed
4
  before do
5
    @project = create(:project)
Valeriy Sizov committed
6 7
    login_as :admin

8
    @system_hook = create(:system_hook)
Valeriy Sizov committed
9 10 11 12 13 14

  end

  describe "GET /admin/hooks" do
    it "should be ok" do
      visit admin_root_path
15
      page.within ".sidebar-wrapper" do
Valeriy Sizov committed
16 17
        click_on "Hooks"
      end
18
      expect(current_path).to eq(admin_hooks_path)
Valeriy Sizov committed
19 20 21 22
    end

    it "should have hooks list" do
      visit admin_hooks_path
23
      expect(page).to have_content(@system_hook.url)
Valeriy Sizov committed
24 25 26 27 28
    end
  end

  describe "New Hook" do
    before do
Robert Speicher committed
29
      @url = FFaker::Internet.uri("http")
Valeriy Sizov committed
30
      visit admin_hooks_path
31
      fill_in "hook_url", with: @url
Valeriy Sizov committed
32 33 34 35
      expect { click_button "Add System Hook" }.to change(SystemHook, :count).by(1)
    end

    it "should open new hook popup" do
36 37
      expect(current_path).to eq(admin_hooks_path)
      expect(page).to have_content(@url)
Valeriy Sizov committed
38 39 40 41 42 43 44 45 46 47
    end
  end

  describe "Test" do
    before do
      WebMock.stub_request(:post, @system_hook.url)
      visit admin_hooks_path
      click_link "Test Hook"
    end

48
    it { expect(current_path).to eq(admin_hooks_path) }
Valeriy Sizov committed
49 50 51
  end

end