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

randomized_suffix_path_spec.rb « namespaces « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc5ccd95ce6c8b1b4d5454e73c70d211510d0de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Namespaces::RandomizedSuffixPath, feature_category: :shared 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