2018-10-02 14:31:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-08 07:44:32 -05:00
|
|
|
describe QA::Runtime::Env do
|
2018-01-23 05:23:23 -05:00
|
|
|
include Support::StubENV
|
2018-01-08 07:44:32 -05:00
|
|
|
|
2018-10-23 14:54:00 -04:00
|
|
|
shared_examples 'boolean method' do |**kwargs|
|
|
|
|
it_behaves_like 'boolean method with parameter', kwargs
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'boolean method with parameter' do |method:, param: nil, env_key:, default:|
|
2018-01-08 07:44:32 -05:00
|
|
|
context 'when there is an env variable set' do
|
|
|
|
it 'returns false when falsey values specified' do
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, 'false')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_falsey
|
2018-01-08 07:44:32 -05:00
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, 'no')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_falsey
|
2018-01-08 07:44:32 -05:00
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, '0')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_falsey
|
2018-01-08 07:44:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true when anything else specified' do
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, 'true')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_truthy
|
2018-01-08 07:44:32 -05:00
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, '1')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_truthy
|
2018-01-08 07:44:32 -05:00
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
stub_env(env_key, 'anything')
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be_truthy
|
2018-01-08 07:44:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is no env variable set' do
|
2018-10-08 14:56:32 -04:00
|
|
|
it "returns the default, #{default}" do
|
|
|
|
stub_env(env_key, nil)
|
2018-10-23 14:54:00 -04:00
|
|
|
expect(described_class.public_send(method, *param)).to be(default)
|
2018-01-08 07:44:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
describe '.signup_disabled?' do
|
2018-10-23 14:54:00 -04:00
|
|
|
it_behaves_like 'boolean method',
|
|
|
|
method: :signup_disabled?,
|
|
|
|
env_key: 'SIGNUP_DISABLED',
|
|
|
|
default: false
|
2018-10-08 14:56:32 -04:00
|
|
|
end
|
|
|
|
|
2018-10-02 14:31:39 -04:00
|
|
|
describe '.debug?' do
|
2018-10-23 14:54:00 -04:00
|
|
|
it_behaves_like 'boolean method',
|
|
|
|
method: :debug?,
|
|
|
|
env_key: 'QA_DEBUG',
|
|
|
|
default: false
|
2018-10-02 14:31:39 -04:00
|
|
|
end
|
|
|
|
|
2018-10-08 14:56:32 -04:00
|
|
|
describe '.chrome_headless?' do
|
2018-10-23 14:54:00 -04:00
|
|
|
it_behaves_like 'boolean method',
|
|
|
|
method: :chrome_headless?,
|
|
|
|
env_key: 'CHROME_HEADLESS',
|
|
|
|
default: true
|
2018-10-08 14:56:32 -04:00
|
|
|
end
|
|
|
|
|
2018-01-08 07:44:32 -05:00
|
|
|
describe '.running_in_ci?' do
|
|
|
|
context 'when there is an env variable set' do
|
|
|
|
it 'returns true if CI' do
|
|
|
|
stub_env('CI', 'anything')
|
|
|
|
expect(described_class.running_in_ci?).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if CI_SERVER' do
|
|
|
|
stub_env('CI_SERVER', 'anything')
|
|
|
|
expect(described_class.running_in_ci?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is no env variable set' do
|
|
|
|
it 'returns true' do
|
|
|
|
stub_env('CI', nil)
|
|
|
|
stub_env('CI_SERVER', nil)
|
|
|
|
expect(described_class.running_in_ci?).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-02-10 17:20:44 -05:00
|
|
|
|
2018-10-17 14:08:20 -04:00
|
|
|
describe '.personal_access_token' do
|
|
|
|
around do |example|
|
|
|
|
described_class.instance_variable_set(:@personal_access_token, nil)
|
|
|
|
example.run
|
|
|
|
described_class.instance_variable_set(:@personal_access_token, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when PERSONAL_ACCESS_TOKEN is set' do
|
|
|
|
before do
|
|
|
|
stub_env('PERSONAL_ACCESS_TOKEN', 'a_token')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns specified token from env' do
|
|
|
|
expect(described_class.personal_access_token).to eq 'a_token'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when @personal_access_token is set' do
|
|
|
|
before do
|
|
|
|
described_class.personal_access_token = 'another_token'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the instance variable value' do
|
|
|
|
expect(described_class.personal_access_token).to eq 'another_token'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.personal_access_token=' do
|
|
|
|
around do |example|
|
|
|
|
described_class.instance_variable_set(:@personal_access_token, nil)
|
|
|
|
example.run
|
|
|
|
described_class.instance_variable_set(:@personal_access_token, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'saves the token' do
|
|
|
|
described_class.personal_access_token = 'a_token'
|
|
|
|
|
|
|
|
expect(described_class.personal_access_token).to eq 'a_token'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-08 13:05:13 -04:00
|
|
|
describe '.forker?' do
|
2018-10-17 14:08:20 -04:00
|
|
|
before do
|
|
|
|
stub_env('GITLAB_FORKER_USERNAME', nil)
|
|
|
|
stub_env('GITLAB_FORKER_PASSWORD', nil)
|
|
|
|
end
|
|
|
|
|
2018-08-08 13:05:13 -04:00
|
|
|
it 'returns false if no forker credentials are defined' do
|
|
|
|
expect(described_class).not_to be_forker
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if only forker username is defined' do
|
|
|
|
stub_env('GITLAB_FORKER_USERNAME', 'foo')
|
|
|
|
|
|
|
|
expect(described_class).not_to be_forker
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if only forker password is defined' do
|
|
|
|
stub_env('GITLAB_FORKER_PASSWORD', 'bar')
|
|
|
|
|
|
|
|
expect(described_class).not_to be_forker
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if forker username and password are defined' do
|
|
|
|
stub_env('GITLAB_FORKER_USERNAME', 'foo')
|
|
|
|
stub_env('GITLAB_FORKER_PASSWORD', 'bar')
|
|
|
|
|
|
|
|
expect(described_class).to be_forker
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-18 11:05:42 -04:00
|
|
|
describe '.github_access_token' do
|
|
|
|
it 'returns "" if GITHUB_ACCESS_TOKEN is not defined' do
|
2018-08-03 07:25:14 -04:00
|
|
|
stub_env('GITHUB_ACCESS_TOKEN', nil)
|
|
|
|
|
2018-06-18 11:05:42 -04:00
|
|
|
expect(described_class.github_access_token).to eq('')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns stripped string if GITHUB_ACCESS_TOKEN is defined' do
|
|
|
|
stub_env('GITHUB_ACCESS_TOKEN', ' abc123 ')
|
|
|
|
expect(described_class.github_access_token).to eq('abc123')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.require_github_access_token!' do
|
|
|
|
it 'raises ArgumentError if GITHUB_ACCESS_TOKEN is not defined' do
|
2018-08-03 07:25:14 -04:00
|
|
|
stub_env('GITHUB_ACCESS_TOKEN', nil)
|
|
|
|
|
2018-06-18 11:05:42 -04:00
|
|
|
expect { described_class.require_github_access_token! }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise if GITHUB_ACCESS_TOKEN is defined' do
|
|
|
|
stub_env('GITHUB_ACCESS_TOKEN', ' abc123 ')
|
|
|
|
|
|
|
|
expect { described_class.require_github_access_token! }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
2018-10-02 14:31:39 -04:00
|
|
|
|
|
|
|
describe '.log_destination' do
|
|
|
|
it 'returns $stdout if QA_LOG_PATH is not defined' do
|
|
|
|
stub_env('QA_LOG_PATH', nil)
|
|
|
|
|
|
|
|
expect(described_class.log_destination).to eq($stdout)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the path if QA_LOG_PATH is defined' do
|
|
|
|
stub_env('QA_LOG_PATH', 'path/to_file')
|
|
|
|
|
|
|
|
expect(described_class.log_destination).to eq('path/to_file')
|
|
|
|
end
|
|
|
|
end
|
2018-10-23 14:54:00 -04:00
|
|
|
|
|
|
|
describe '.can_test?' do
|
|
|
|
it_behaves_like 'boolean method with parameter',
|
|
|
|
method: :can_test?,
|
|
|
|
param: :git_protocol_v2,
|
|
|
|
env_key: 'QA_CAN_TEST_GIT_PROTOCOL_V2',
|
|
|
|
default: true
|
|
|
|
|
|
|
|
it 'raises ArgumentError if feature is unknown' do
|
|
|
|
expect { described_class.can_test? :foo }.to raise_error(ArgumentError, 'Unknown feature "foo"')
|
|
|
|
end
|
|
|
|
end
|
2018-01-08 07:44:32 -05:00
|
|
|
end
|