Skip to content
admin_hooks_spec.rb 2.05 KiB
Newer Older
Valeriy Sizov's avatar
Valeriy Sizov committed
require 'spec_helper'

describe 'Admin::Hooks' do
Valeriy Sizov's avatar
Valeriy Sizov committed
  before do
    sign_in(create(:admin))
Valeriy Sizov's avatar
Valeriy Sizov committed

    @system_hook = create(:system_hook)
Valeriy Sizov's avatar
Valeriy Sizov committed
  end

  describe 'GET /admin/hooks' do
    it 'is ok' do
Valeriy Sizov's avatar
Valeriy Sizov committed
      visit admin_root_path
      page.within '.layout-nav' do
        click_on 'Hooks'
Valeriy Sizov's avatar
Valeriy Sizov committed
      end
      expect(current_path).to eq(admin_hooks_path)
Valeriy Sizov's avatar
Valeriy Sizov committed
    end

    it 'has hooks list' do
Valeriy Sizov's avatar
Valeriy Sizov committed
      visit admin_hooks_path
      expect(page).to have_content(@system_hook.url)
Valeriy Sizov's avatar
Valeriy Sizov committed
    end
  end

  describe 'New Hook' do
    let(:url) { generate(:url) }

    it 'adds new hook' do
Valeriy Sizov's avatar
Valeriy Sizov committed
      visit admin_hooks_path
      fill_in 'hook_url', with: url
      check 'Enable SSL verification'
Valeriy Sizov's avatar
Valeriy Sizov committed

      expect { click_button 'Add system hook' }.to change(SystemHook, :count).by(1)
      expect(page).to have_content 'SSL Verification: enabled'
      expect(current_path).to eq(admin_hooks_path)
      expect(page).to have_content(url)
Valeriy Sizov's avatar
Valeriy Sizov committed
    end
  end

  describe 'Update existing hook' do
    let(:new_url) { generate(:url) }

    it 'updates existing hook' do
      visit admin_hooks_path

      click_link 'Edit'
      fill_in 'hook_url', with: new_url
      check 'Enable SSL verification'
      click_button 'Save changes'

      expect(page).to have_content 'SSL Verification: enabled'
      expect(current_path).to eq(admin_hooks_path)
      expect(page).to have_content(new_url)
    end
  end

  describe 'Remove existing hook' do
    context 'removes existing hook' do
      it 'from hooks list page' do
        visit admin_hooks_path

        expect { click_link 'Remove' }.to change(SystemHook, :count).by(-1)
      end
      it 'from hook edit page' do
        visit admin_hooks_path
        click_link 'Edit'

        expect { click_link 'Remove' }.to change(SystemHook, :count).by(-1)
      end
  describe 'Test', js: true do
Valeriy Sizov's avatar
Valeriy Sizov committed
    before do
      WebMock.stub_request(:post, @system_hook.url)
      visit admin_hooks_path

      find('.hook-test-button.dropdown').click
      click_link 'Push events'
Valeriy Sizov's avatar
Valeriy Sizov committed
    end

    it { expect(current_path).to eq(admin_hooks_path) }
Valeriy Sizov's avatar
Valeriy Sizov committed
  end
end