summaryrefslogtreecommitdiff
path: root/spec/services/protected_tags/create_service_spec.rb
blob: 3d06cc9fb6c0a98e2c7496c807c6e211b61cd2fe (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ProtectedTags::CreateService do
  let(:project) { create(:project) }
  let(:user) { project.owner }
  let(:params) do
    {
      name: name,
      create_access_levels_attributes: [{ access_level: Gitlab::Access::MAINTAINER }]
    }
  end

  describe '#execute' do
    let(:name) { 'tag' }

    subject(:service) { described_class.new(project, user, params) }

    it 'creates a new protected tag' do
      expect { service.execute }.to change(ProtectedTag, :count).by(1)
      expect(project.protected_tags.last.create_access_levels.map(&:access_level)).to eq([Gitlab::Access::MAINTAINER])
    end

    context 'when name has escaped HTML' do
      let(:name) { 'tag->test' }

      it 'creates the new protected tag matching the unescaped version' do
        expect { service.execute }.to change(ProtectedTag, :count).by(1)
        expect(project.protected_tags.last.name).to eq('tag->test')
      end

      context 'and name contains HTML tags' do
        let(:name) { '<b>tag</b>' }

        it 'creates the new protected tag with sanitized name' do
          expect { service.execute }.to change(ProtectedTag, :count).by(1)
          expect(project.protected_tags.last.name).to eq('tag')
        end

        context 'and contains unsafe HTML' do
          let(:name) { '<script>alert('foo');</script>' }

          it 'does not create the new protected tag' do
            expect { service.execute }.not_to change(ProtectedTag, :count)
          end
        end
      end

      context 'when name contains unescaped HTML tags' do
        let(:name) { '<b>tag</b>' }

        it 'creates the new protected tag with sanitized name' do
          expect { service.execute }.to change(ProtectedTag, :count).by(1)
          expect(project.protected_tags.last.name).to eq('tag')
        end
      end
    end
  end
end