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

database_spec.rb « build_trace_chunks « ci « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d99aede853cdbaed178a60b590c9a1b7d475537f (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::BuildTraceChunks::Database do
  let(:data_store) { described_class.new }

  describe '#data' do
    subject { data_store.data(model) }

    context 'when data exists' do
      let(:model) { create(:ci_build_trace_chunk, :database_with_data, initial_data: 'sample data in database') }

      it 'returns the data' do
        is_expected.to eq('sample data in database')
      end
    end

    context 'when data does not exist' do
      let(:model) { create(:ci_build_trace_chunk, :database_without_data) }

      it 'returns nil' do
        is_expected.to be_nil
      end
    end
  end

  describe '#set_data' do
    subject { data_store.set_data(model, data) }

    let(:data) { 'abc123' }

    context 'when data exists' do
      let(:model) { create(:ci_build_trace_chunk, :database_with_data, initial_data: 'sample data in database') }

      it 'overwrites data' do
        expect(data_store.data(model)).to eq('sample data in database')

        subject

        expect(data_store.data(model)).to eq('abc123')
      end
    end

    context 'when data does not exist' do
      let(:model) { create(:ci_build_trace_chunk, :database_without_data) }

      it 'sets new data' do
        expect(data_store.data(model)).to be_nil

        subject

        expect(data_store.data(model)).to eq('abc123')
      end
    end
  end

  describe '#delete_data' do
    subject { data_store.delete_data(model) }

    context 'when data exists' do
      let(:model) { create(:ci_build_trace_chunk, :database_with_data, initial_data: 'sample data in database') }

      it 'deletes data' do
        expect(data_store.data(model)).to eq('sample data in database')

        subject

        expect(data_store.data(model)).to be_nil
      end
    end

    context 'when data does not exist' do
      let(:model) { create(:ci_build_trace_chunk, :database_without_data) }

      it 'does nothing' do
        expect(data_store.data(model)).to be_nil

        subject

        expect(data_store.data(model)).to be_nil
      end
    end
  end

  describe '#size' do
    context 'when data exists' do
      let(:model) { create(:ci_build_trace_chunk, :database_with_data, initial_data: 'üabcdef') }

      it 'returns data bytesize correctly' do
        expect(data_store.size(model)).to eq 8
      end
    end

    context 'when data does not exist' do
      let(:model) { create(:ci_build_trace_chunk, :database_without_data) }

      it 'returns zero' do
        expect(data_store.size(model)).to be_zero
      end
    end
  end

  describe '#keys' do
    subject { data_store.keys(relation) }

    let(:build) { create(:ci_build) }
    let(:relation) { build.trace_chunks }

    before do
      create(:ci_build_trace_chunk, :database_with_data, chunk_index: 0, build: build)
      create(:ci_build_trace_chunk, :database_with_data, chunk_index: 1, build: build)
    end

    it 'returns empty array' do
      is_expected.to eq([])
    end
  end
end