File: randomized_suffix_path_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (37 lines) | stat: -rw-r--r-- 1,195 bytes parent folder | download
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