Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/specs/helpers/context_selector_spec.rb')
-rw-r--r--qa/spec/specs/helpers/context_selector_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/qa/spec/specs/helpers/context_selector_spec.rb b/qa/spec/specs/helpers/context_selector_spec.rb
index 5a320cde71f..7541bb45d82 100644
--- a/qa/spec/specs/helpers/context_selector_spec.rb
+++ b/qa/spec/specs/helpers/context_selector_spec.rb
@@ -57,6 +57,26 @@ RSpec.describe QA::Specs::Helpers::ContextSelector do
expect(described_class.context_matches?(:production)).to be_truthy
end
+ it 'matches domain' do
+ QA::Runtime::Scenario.define(:gitlab_address, 'https://jihulab.com')
+
+ aggregate_failures do
+ expect(described_class.context_matches?(:production)).to be_falsey
+ expect(described_class.context_matches?(domain: 'gitlab')).to be_falsey
+ expect(described_class.context_matches?(domain: 'jihulab')).to be_truthy
+ end
+ end
+
+ it 'matches tld' do
+ QA::Runtime::Scenario.define(:gitlab_address, 'https://gitlab.cn')
+
+ aggregate_failures do
+ expect(described_class.context_matches?).to be_falsey
+ expect(described_class.context_matches?(tld: 'net')).to be_falsey
+ expect(described_class.context_matches?(tld: 'cn')).to be_truthy
+ end
+ end
+
it 'doesnt match with mismatching switches' do
QA::Runtime::Scenario.define(:gitlab_address, 'https://gitlab.test')