gitlab-org--gitlab-foss/spec/lib/gitlab/database/sha_attribute_spec.rb
Andreas Brandl 988dc80585
Further remove code branches by database type
We dropped MySQL support and a lot of mysql specific code has been
removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608.

This comes in from the other direction and removes any `if postgresql?`
branches.
2019-07-29 12:47:06 +02:00

31 lines
619 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Gitlab::Database::ShaAttribute do
let(:sha) do
'9a573a369a5bfbb9a4a36e98852c21af8a44ea8b'
end
let(:binary_sha) do
[sha].pack('H*')
end
let(:binary_from_db) do
"\\x#{sha}"
end
let(:attribute) { described_class.new }
describe '#deserialize' do
it 'converts the binary SHA to a String' do
expect(attribute.deserialize(binary_from_db)).to eq(sha)
end
end
describe '#serialize' do
it 'converts a SHA String to binary data' do
expect(attribute.serialize(sha).to_s).to eq(binary_sha)
end
end
end