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

redactable_spec.rb « concerns « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d320edd492a13fbc566ab5f4c6a0d5de759678c (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
require 'spec_helper'

describe Redactable do
  shared_examples 'model with redactable field' do
    it 'redacts unsubscribe token' do
      model[field] = 'some text /sent_notifications/00000000000000000000000000000000/unsubscribe more text'

      model.save!

      expect(model[field]).to eq 'some text /sent_notifications/REDACTED/unsubscribe more text'
    end

    it 'ignores not hexadecimal tokens' do
      text = 'some text /sent_notifications/token/unsubscribe more text'
      model[field] = text

      model.save!

      expect(model[field]).to eq text
    end

    it 'ignores not matching texts' do
      text = 'some text /sent_notifications/.*/unsubscribe more text'
      model[field] = text

      model.save!

      expect(model[field]).to eq text
    end

    it 'redacts the field when saving the model before creating markdown cache' do
      model[field] = 'some text /sent_notifications/00000000000000000000000000000000/unsubscribe more text'

      model.save!

      expected = 'some text /sent_notifications/REDACTED/unsubscribe more text'
      expect(model[field]).to eq expected
      expect(model["#{field}_html"]).to eq "<p dir=\"auto\">#{expected}</p>"
    end
  end

  context 'when model is an issue' do
    it_behaves_like 'model with redactable field' do
      let(:model) { create(:issue) }
      let(:field) { :description }
    end
  end

  context 'when model is a merge request' do
    it_behaves_like 'model with redactable field' do
      let(:model) { create(:merge_request) }
      let(:field) { :description }
    end
  end

  context 'when model is a note' do
    it_behaves_like 'model with redactable field' do
      let(:model) { create(:note) }
      let(:field) { :note }
    end
  end

  context 'when model is a snippet' do
    it_behaves_like 'model with redactable field' do
      let(:model) { create(:snippet) }
      let(:field) { :description }
    end
  end
end