summaryrefslogtreecommitdiff
path: root/spec/models/x509_commit_signature_spec.rb
blob: a2f72228a86d587f40c6fe4d4b855fe995ab1b7b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe X509CommitSignature do
  let(:commit_sha) { '189a6c924013fc3fe40d6f1ec1dc20214183bc97' }
  let(:project) { create(:project, :public, :repository) }
  let!(:commit) { create(:commit, project: project, sha: commit_sha) }
  let(:x509_certificate) { create(:x509_certificate) }
  let(:x509_signature) { create(:x509_commit_signature, commit_sha: commit_sha) }

  it_behaves_like 'having unique enum values'

  describe 'validation' do
    it { is_expected.to validate_presence_of(:commit_sha) }
    it { is_expected.to validate_presence_of(:project_id) }
    it { is_expected.to validate_presence_of(:x509_certificate_id) }
  end

  describe 'associations' do
    it { is_expected.to belong_to(:project).required }
    it { is_expected.to belong_to(:x509_certificate).required }
  end

  describe '.safe_create!' do
    let(:attributes) do
      {
        commit_sha: commit_sha,
        project: project,
        x509_certificate_id: x509_certificate.id,
        verification_status: "verified"
      }
    end

    it 'finds a signature by commit sha if it existed' do
      x509_signature

      expect(described_class.safe_create!(commit_sha: commit_sha)).to eq(x509_signature)
    end

    it 'creates a new signature if it was not found' do
      expect { described_class.safe_create!(attributes) }.to change { described_class.count }.by(1)
    end

    it 'assigns the correct attributes when creating' do
      signature = described_class.safe_create!(attributes)

      expect(signature.project).to eq(project)
      expect(signature.commit_sha).to eq(commit_sha)
      expect(signature.x509_certificate_id).to eq(x509_certificate.id)
    end
  end
end