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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-15 09:09:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-15 09:09:49 +0300
commit00a8c64ffd18e74df4b1cdeda7776b5221fddafe (patch)
tree3a5262df3df89455384809bbd45dfb696c48ecde /spec/tasks
parentb71a496c7a3e109f7c85ad7ac453e6f7bf7cda45 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/tasks')
-rw-r--r--spec/tasks/gitlab/x509/update_rake_spec.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/tasks/gitlab/x509/update_rake_spec.rb b/spec/tasks/gitlab/x509/update_rake_spec.rb
new file mode 100644
index 00000000000..8c62c6c1728
--- /dev/null
+++ b/spec/tasks/gitlab/x509/update_rake_spec.rb
@@ -0,0 +1,42 @@
+# frozen_string_literal: true
+
+require 'rake_helper'
+
+describe 'gitlab:x509 namespace rake task' do
+ before :all do
+ Rake.application.rake_require 'tasks/gitlab/x509/update'
+ end
+
+ describe 'update_signatures' do
+ subject { run_rake_task('gitlab:x509:update_signatures') }
+
+ let(:project) { create :project, :repository, path: X509Helpers::User1.path }
+ let(:x509_signed_commit) { project.commit_by(oid: '189a6c924013fc3fe40d6f1ec1dc20214183bc97') }
+ let(:x509_commit) { Gitlab::X509::Commit.new(x509_signed_commit).signature }
+
+ it 'changes from unverified to verified if the certificate store contains the root certificate' do
+ x509_commit
+
+ store = OpenSSL::X509::Store.new
+ certificate = OpenSSL::X509::Certificate.new X509Helpers::User1.trust_cert
+ store.add_cert(certificate)
+ allow(OpenSSL::X509::Store).to receive(:new).and_return(store)
+
+ expect(x509_commit.verification_status).to eq('unverified')
+ expect_any_instance_of(Gitlab::X509::Commit).to receive(:update_signature!).and_call_original
+
+ subject
+
+ x509_commit.reload
+ expect(x509_commit.verification_status).to eq('verified')
+ end
+
+ it 'returns if no signature is available' do
+ expect_any_instance_of(Gitlab::X509::Commit) do |x509_commit|
+ expect(x509_commit).not_to receive(:update_signature!)
+
+ subject
+ end
+ end
+ end
+end