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/models/namespaces/randomized_suffix_path_spec.rb')
-rw-r--r--spec/models/namespaces/randomized_suffix_path_spec.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/spec/models/namespaces/randomized_suffix_path_spec.rb b/spec/models/namespaces/randomized_suffix_path_spec.rb
new file mode 100644
index 00000000000..a2484030f3c
--- /dev/null
+++ b/spec/models/namespaces/randomized_suffix_path_spec.rb
@@ -0,0 +1,37 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Namespaces::RandomizedSuffixPath, feature_category: :not_owned do
+ let(:path) { 'backintime' }
+
+ subject(:suffixed_path) { described_class.new(path) }
+
+ describe '#to_s' do
+ it 'represents with given path' do
+ expect(suffixed_path.to_s).to eq('backintime')
+ end
+ end
+
+ describe '#call' do
+ it 'returns path without count when count is 0' do
+ expect(suffixed_path.call(0)).to eq('backintime')
+ end
+
+ it "returns path suffixed with count when between 0 and #{described_class::MAX_TRIES}" do
+ (1..described_class::MAX_TRIES).each do |count|
+ expect(suffixed_path.call(count)).to eq("backintime#{count}")
+ end
+ end
+
+ it 'adds a "randomized" suffix when MAX_TRIES is exhausted', time_travel_to: '1955-11-12 06:38' do
+ count = described_class::MAX_TRIES + 1
+ expect(suffixed_path.call(count)).to eq("backintime3845")
+ end
+
+ it 'adds an offset to the "randomized" suffix when MAX_TRIES is exhausted', time_travel_to: '1955-11-12 06:38' do
+ count = described_class::MAX_TRIES + 2
+ expect(suffixed_path.call(count)).to eq("backintime3846")
+ end
+ end
+end