# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/ require 'rails_helper' RSpec.describe 'Manage > Settings > System > Network', type: :system do before { visit 'settings/system' } let(:proxy) { ENV['ZAMMAD_PROXY'] } let(:proxy_username) { ENV['ZAMMAD_PROXY_USERNAME'] } let(:proxy_password) { ENV['ZAMMAD_PROXY_PASSWORD'] } describe 'configure proxy setting' do it 'test proxy settings with correct config' do within(:active_content) do click(:href, '#network') fill_in 'proxy', with: proxy fill_in 'proxy_username', with: proxy_username fill_in 'proxy_password', with: proxy_password click_on 'Test Connection' expect(page).to have_button('Test Connection', visible: :hidden, wait: 5) expect(page).to have_button('Submit', visible: :visible, wait: 5) find('.js-submit:not(.hide)').click expect(page).to have_button('Submit', visible: :hidden, wait: 5) expect(page).to have_button('Test Connection', visible: :visible, wait: 5) end end context 'test proxy settings when invalid config is used' do it 'with invalid proxy' do within(:active_content) do click(:href, '#network') fill_in 'proxy', with: 'invalid_proxy' fill_in 'proxy_username', with: proxy_username fill_in 'proxy_password', with: proxy_password click_on 'Test Connection' expect(page).to have_css('h1.modal-title', text: 'Error', wait: 5) expect(page).to have_css('div.modal-body', text: %r{Invalid proxy address}, wait: 5) expect(page).to have_button('Test Connection', visible: :visible, wait: 5) expect(page).to have_button('Submit', visible: :hidden, wait: 5) end end it 'with unknown proxy' do within(:active_content) do click(:href, '#network') fill_in 'proxy', with: 'proxy.example.com:3128' fill_in 'proxy_username', with: proxy_username fill_in 'proxy_password', with: proxy_password click_on 'Test Connection' expect(page).to have_css('h1.modal-title', text: 'Error', wait: 5) expect(page).to have_css('div.modal-body', text: %r{Failed to open TCP connection}, wait: 5) expect(page).to have_button('Test Connection', visible: :visible, wait: 5) expect(page).to have_button('Submit', visible: :hidden, wait: 5) end end it 'with invalid proxy username' do within(:active_content) do click(:href, '#network') fill_in 'proxy', with: proxy fill_in 'proxy_username', with: 'invalid_username' fill_in 'proxy_password', with: proxy_password click_on 'Test Connection' expect(page).to have_css('h1.modal-title', text: 'Error', wait: 5) expect(page).to have_css('div.modal-body', text: %r{Access Denied}, wait: 5) expect(page).to have_button('Test Connection', visible: :visible, wait: 5) expect(page).to have_button('Submit', visible: :hidden, wait: 5) end end it 'with invalid proxy password' do within(:active_content) do click(:href, '#network') fill_in 'proxy', with: proxy fill_in 'proxy_username', with: proxy_username fill_in 'proxy_password', with: 'invalid_password' click_on 'Test Connection' expect(page).to have_css('h1.modal-title', text: 'Error', wait: 5) expect(page).to have_css('div.modal-body', text: %r{Access Denied}, wait: 5) expect(page).to have_button('Test Connection', visible: :visible, wait: 5) expect(page).to have_button('Submit', visible: :hidden, wait: 5) end end end end end