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 'spec/support/shared_examples/tasks/gitlab/import_export/measurable_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/tasks/gitlab/import_export/measurable_shared_examples.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/support/shared_examples/tasks/gitlab/import_export/measurable_shared_examples.rb b/spec/support/shared_examples/tasks/gitlab/import_export/measurable_shared_examples.rb
new file mode 100644
index 00000000000..4df81478639
--- /dev/null
+++ b/spec/support/shared_examples/tasks/gitlab/import_export/measurable_shared_examples.rb
@@ -0,0 +1,31 @@
+# frozen_string_literal: true
+
+RSpec.shared_examples 'measurable' do
+ context 'when measurement is enabled' do
+ let(:measurement_enabled) { true }
+
+ it 'prints measurement results' do
+ expect { subject }.to output(including('Measuring enabled...', 'Number of sql calls:', 'Total GC count:', 'Total GC count:')).to_stdout
+ end
+ end
+
+ context 'when measurement is not enabled' do
+ let(:measurement_enabled) { false }
+
+ it 'does not output measurement results' do
+ expect { subject }.not_to output(/Measuring enabled.../).to_stdout
+ end
+ end
+
+ context 'when measurement is not provided' do
+ let(:task_params) { [username, namespace_path, project_name, archive_path] }
+
+ it 'does not output measurement results' do
+ expect { subject }.not_to output(/Measuring enabled.../).to_stdout
+ end
+
+ it 'does not raise any exception' do
+ expect { subject }.not_to raise_error
+ end
+ end
+end