ac86b2043d
Add find key by base64 key or fingerprint to the internal API See merge request !250 Squashed changes: Add unique index to fingerprint Add new index to schema Add internal api to get ssh key by fingerprint Change API endpoint to authorized_keys Add InsecureKeyFingerprint that calculates the fingerprint without shelling out Add require for gitlab key fingerprint Remove uniqueness of fingerprint index Remove unique option from migration Fix spec style in fingerprint test Fix rubocop complain Extract insecure key fingerprint to separate file Change migration to support building index concurrently Remove those hideous tabs
18 lines
575 B
Ruby
18 lines
575 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::InsecureKeyFingerprint do
|
|
let(:key) do
|
|
'ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAiPWx6WM4lhHNedGfBpPJNPpZ7yKu+dnn' \
|
|
'1SJejgt4596k6YjzGGphH2TUxwKzxcKDKKezwkpfnxPkSMkuEspGRt/aZZ9wa++Oi7Qk' \
|
|
'r8prgHc4soW6NUlfDzpvZK2H5E7eQaSeP3SAwGmQKUFHCddNaP0L+hM7zhFNzjFvpaMg' \
|
|
'Jw0='
|
|
end
|
|
|
|
let(:fingerprint) { "3f:a2:ee:de:b5:de:53:c3:aa:2f:9c:45:24:4c:47:7b" }
|
|
|
|
describe "#fingerprint" do
|
|
it "generates the key's fingerprint" do
|
|
expect(described_class.new(key.split[1]).fingerprint).to eq(fingerprint)
|
|
end
|
|
end
|
|
end
|