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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/commit_signatures/x509_commit_signature_spec.rb')
-rw-r--r--spec/models/commit_signatures/x509_commit_signature_spec.rb28
1 files changed, 4 insertions, 24 deletions
diff --git a/spec/models/commit_signatures/x509_commit_signature_spec.rb b/spec/models/commit_signatures/x509_commit_signature_spec.rb
index 076f209e1b7..beb101cdd89 100644
--- a/spec/models/commit_signatures/x509_commit_signature_spec.rb
+++ b/spec/models/commit_signatures/x509_commit_signature_spec.rb
@@ -3,11 +3,13 @@
require 'spec_helper'
RSpec.describe CommitSignatures::X509CommitSignature do
+ # This commit is seeded from https://gitlab.com/gitlab-org/gitlab-test
+ # For instructions on how to add more seed data, see the project README
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) }
+ let(:signature) { create(:x509_commit_signature, commit_sha: commit_sha) }
let(:attributes) do
{
@@ -19,38 +21,16 @@ RSpec.describe CommitSignatures::X509CommitSignature do
end
it_behaves_like 'having unique enum values'
+ it_behaves_like 'commit signature'
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
- 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
-
describe '#user' do
context 'if email is assigned to a user' do
let!(:user) { create(:user, email: X509Helpers::User1.certificate_email) }