debian-mirror-gitlab/qa/spec/support/loglinking_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

134 lines
4.4 KiB
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
RSpec.describe QA::Support::Loglinking do
describe '.failure_metadata' do
context 'return nil string' do
it 'if correlation_id is empty' do
expect(QA::Support::Loglinking.failure_metadata('')).to eq(nil)
end
2022-08-27 11:52:29 +05:30
2022-05-07 20:08:51 +05:30
it 'if correlation_id is nil' do
expect(QA::Support::Loglinking.failure_metadata(nil)).to eq(nil)
end
end
context 'return error string' do
it 'with sentry URL' do
allow(QA::Support::Loglinking).to receive(:sentry_url).and_return('https://sentry.address/?environment=bar')
allow(QA::Support::Loglinking).to receive(:kibana_url).and_return(nil)
expect(QA::Support::Loglinking.failure_metadata('foo123')).to eql(<<~ERROR.chomp)
Correlation Id: foo123
Sentry Url: https://sentry.address/?environment=bar&query=correlation_id%3A%22foo123%22
ERROR
end
it 'with kibana URL' do
allow(QA::Support::Loglinking).to receive(:sentry_url).and_return(nil)
allow(QA::Support::Loglinking).to receive(:kibana_url).and_return('https://kibana.address/')
expect(QA::Support::Loglinking.failure_metadata('foo123')).to eql(<<~ERROR.chomp)
Correlation Id: foo123
2023-01-13 00:05:48 +05:30
Kibana Url: https://kibana.address/app/discover#/?_a=%28query%3A%28language%3Akuery%2Cquery%3A%27json.correlation_id%20%3A%20foo123%27%29%29&_g=%28time%3A%28from%3Anow-24h%2Cto%3Anow%29%29
2022-05-07 20:08:51 +05:30
ERROR
end
end
end
describe '.sentry_url' do
let(:url_hash) do
{
2022-08-27 11:52:29 +05:30
:staging => 'https://sentry.gitlab.net/gitlab/staginggitlabcom/?environment=gstg',
2023-01-13 00:05:48 +05:30
:staging_ref => 'https://sentry.gitlab.net/gitlab/staging-ref/?environment=all',
:pre => 'https://sentry.gitlab.net/gitlab/pregitlabcom/?environment=all',
:production => 'https://sentry.gitlab.net/gitlab/gitlabcom/?environment=gprd',
2022-08-27 11:52:29 +05:30
:foo => nil,
nil => nil
2022-05-07 20:08:51 +05:30
}
end
it 'returns sentry URL if environment found' do
url_hash.each do |environment, url|
allow(QA::Support::Loglinking).to receive(:logging_environment).and_return(environment)
expect(QA::Support::Loglinking.sentry_url).to eq(url)
end
end
end
describe '.kibana_url' do
let(:url_hash) do
{
2022-08-27 11:52:29 +05:30
:staging => 'https://nonprod-log.gitlab.net/',
:staging_ref => nil,
:production => 'https://log.gprd.gitlab.net/',
:foo => nil,
nil => nil
2022-05-07 20:08:51 +05:30
}
end
it 'returns kibana URL if environment found' do
url_hash.each do |environment, url|
allow(QA::Support::Loglinking).to receive(:logging_environment).and_return(environment)
expect(QA::Support::Loglinking.kibana_url).to eq(url)
end
end
end
describe '.logging_environment' do
let(:staging_address) { 'https://staging.gitlab.com' }
let(:staging_ref_address) { 'https://staging-ref.gitlab.com' }
2022-06-21 17:19:12 +05:30
let(:production_address) { 'https://gitlab.com' }
2022-05-07 20:08:51 +05:30
let(:pre_prod_address) { 'https://pre.gitlab.com' }
let(:logging_env_array) do
[
{
address: staging_address,
expected_env: :staging
},
{
address: staging_ref_address,
expected_env: :staging_ref
},
{
address: production_address,
expected_env: :production
},
{
address: pre_prod_address,
expected_env: :pre
},
{
address: 'https://foo.com',
expected_env: nil
}
]
end
it 'returns logging environment if environment found' do
logging_env_array.each do |logging_env_hash|
allow(QA::Runtime::Scenario).to receive(:attributes).and_return({ gitlab_address: logging_env_hash[:address] })
expect(QA::Support::Loglinking.logging_environment).to eq(logging_env_hash[:expected_env])
end
end
end
describe '.logging_environment?' do
context 'returns boolean' do
it 'returns true if logging_environment is not nil' do
allow(QA::Support::Loglinking).to receive(:logging_environment).and_return(:staging)
expect(QA::Support::Loglinking.logging_environment?).to eq(true)
end
it 'returns false if logging_environment is nil' do
allow(QA::Support::Loglinking).to receive(:logging_environment).and_return(nil)
expect(QA::Support::Loglinking.logging_environment?).to eq(false)
end
end
end
end