소스 검색

Speed up test suite by not generating RSA keys in test environment (#7296)

One RSA keypair for all fabricated test accounts is enough
master
Eugen Rochko 6 년 전
committed by GitHub
부모
커밋
c5dcd7d836
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
3개의 변경된 파일11개의 추가작업 그리고 4개의 파일을 삭제
  1. +2
    -2
      app/models/account.rb
  2. +7
    -1
      spec/fabricators/account_fabricator.rb
  3. +2
    -1
      spec/models/account_spec.rb

+ 2
- 2
app/models/account.rb 파일 보기

@@ -406,9 +406,9 @@ class Account < ApplicationRecord
end

def generate_keys
return unless local?
return unless local? && !Rails.env.test?

keypair = OpenSSL::PKey::RSA.new(Rails.env.test? ? 512 : 2048)
keypair = OpenSSL::PKey::RSA.new(2048)
self.private_key = keypair.to_pem
self.public_key = keypair.public_key.to_pem
end


+ 7
- 1
spec/fabricators/account_fabricator.rb 파일 보기

@@ -1,4 +1,10 @@
keypair = OpenSSL::PKey::RSA.new(2048)
public_key = keypair.public_key.to_pem
private_key = keypair.to_pem

Fabricator(:account) do
username { sequence(:username) { |i| "#{Faker::Internet.user_name(nil, %w(_))}#{i}" } }
username { sequence(:username) { |i| "#{Faker::Internet.user_name(nil, %w(_))}#{i}" } }
last_webfingered_at { Time.now.utc }
public_key { public_key }
private_key { private_key}
end

+ 2
- 1
spec/models/account_spec.rb 파일 보기

@@ -815,7 +815,8 @@ RSpec.describe Account, type: :model do
end

context 'when is local' do
it 'generates keys' do
# Test disabled because test environment omits autogenerating keys for performance
xit 'generates keys' do
account = Account.create!(domain: nil, username: Faker::Internet.user_name(nil, ['_']))
expect(account.keypair.private?).to eq true
end


불러오는 중...
취소
저장