118 lines
2.6 KiB
Ruby
118 lines
2.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe SourcegraphGon do
|
|
let_it_be(:enabled_user) { create(:user, sourcegraph_enabled: true) }
|
|
let_it_be(:disabled_user) { create(:user, sourcegraph_enabled: false) }
|
|
let_it_be(:public_project) { create(:project, :public) }
|
|
let_it_be(:internal_project) { create(:project, :internal) }
|
|
|
|
let(:sourcegraph_url) { 'http://sourcegraph.gitlab.com' }
|
|
let(:feature_enabled) { true }
|
|
let(:sourcegraph_enabled) { true }
|
|
let(:sourcegraph_public_only) { false }
|
|
let(:format) { :html }
|
|
let(:user) { enabled_user }
|
|
let(:project) { internal_project }
|
|
|
|
controller(ApplicationController) do
|
|
include SourcegraphGon # rubocop:disable RSpec/DescribedClass
|
|
|
|
def index
|
|
head :ok
|
|
end
|
|
end
|
|
|
|
before do
|
|
Feature.get(:sourcegraph).enable(feature_enabled)
|
|
|
|
stub_application_setting(sourcegraph_url: sourcegraph_url, sourcegraph_enabled: sourcegraph_enabled, sourcegraph_public_only: sourcegraph_public_only)
|
|
|
|
allow(controller).to receive(:project).and_return(project)
|
|
|
|
Gon.clear
|
|
|
|
sign_in user if user
|
|
end
|
|
|
|
after do
|
|
Feature.get(:sourcegraph).disable
|
|
end
|
|
|
|
subject do
|
|
get :index, format: format
|
|
|
|
Gon.sourcegraph
|
|
end
|
|
|
|
shared_examples 'enabled' do
|
|
it { is_expected.to eq({ url: sourcegraph_url }) }
|
|
end
|
|
|
|
shared_examples 'disabled' do
|
|
it { is_expected.to be_nil }
|
|
end
|
|
|
|
context 'with feature enabled, application enabled, and user enabled' do
|
|
it_behaves_like 'enabled'
|
|
end
|
|
|
|
context 'with feature enabled for specific project' do
|
|
let(:feature_enabled) { project }
|
|
|
|
it_behaves_like 'enabled'
|
|
end
|
|
|
|
context 'with feature enabled for different project' do
|
|
let(:feature_enabled) { create(:project) }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with feature disabled' do
|
|
let(:feature_enabled) { false }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with admin settings disabled' do
|
|
let(:sourcegraph_enabled) { false }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with public only' do
|
|
let(:sourcegraph_public_only) { true }
|
|
|
|
context 'with internal project' do
|
|
let(:project) { internal_project }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with public project' do
|
|
let(:project) { public_project }
|
|
|
|
it_behaves_like 'enabled'
|
|
end
|
|
end
|
|
|
|
context 'with user disabled' do
|
|
let(:user) { disabled_user }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with no user' do
|
|
let(:user) { nil }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
|
|
context 'with non-html format' do
|
|
let(:format) { :json }
|
|
|
|
it_behaves_like 'disabled'
|
|
end
|
|
end
|