summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/concerns/sanitizable_shared_examples.rb
blob: 9bfa4ace05c9ef61c39e27eacb417421ee0e8713 (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
# frozen_string_literal: true

RSpec.shared_examples 'sanitizable' do |factory, fields|
  let(:attributes) { fields.index_with { input } }

  it 'includes Sanitizable' do
    expect(described_class).to include(Sanitizable)
  end

  fields.each do |field|
    subject do
      record = build(factory, attributes)
      record.valid?

      record.public_send(field)
    end

    describe "##{field}" do
      context 'when input includes javascript tags' do
        let(:input) { 'hello<script>alert(1)</script>' }

        it 'gets sanitized' do
          expect(subject).to eq('hello')
        end
      end
    end

    describe "##{field} validation" do
      context 'when input contains pre-escaped html entities' do
        let_it_be(:input) { '&lt;script&gt;alert(1)&lt;/script&gt;' }

        subject { build(factory, attributes) }

        it 'is not valid', :aggregate_failures do
          error = 'cannot contain escaped HTML entities'

          expect(subject).not_to be_valid
          expect(subject.errors.details[field].flat_map(&:values)).to contain_exactly(error)
        end
      end

      context 'when it contains a path component' do
        let_it_be(:input) do
          'main../../../../../../api/v4/projects/1/import_project_members/2'
        end

        subject { build(factory, attributes) }

        it 'is not valid', :aggregate_failures do
          error = 'cannot contain a path traversal component'

          expect(subject).not_to be_valid
          expect(subject.errors.details[field].flat_map(&:values)).to contain_exactly(error)
        end
      end
    end
  end
end