98 lines
2.8 KiB
Ruby
98 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Packages::Debian::FileEntry, type: :model do
|
|
let_it_be(:package_file) { create(:debian_package_file, :dsc) }
|
|
|
|
let(:filename) { 'sample_1.2.3~alpha2.dsc' }
|
|
let(:size) { 671 }
|
|
let(:md5sum) { package_file.file_md5 }
|
|
let(:section) { 'libs' }
|
|
let(:priority) { 'optional' }
|
|
let(:sha1sum) { package_file.file_sha1 }
|
|
let(:sha256sum) { package_file.file_sha256 }
|
|
|
|
let(:file_entry) do
|
|
described_class.new(
|
|
filename: filename,
|
|
size: size,
|
|
md5sum: md5sum,
|
|
section: section,
|
|
priority: priority,
|
|
sha1sum: sha1sum,
|
|
sha256sum: sha256sum,
|
|
package_file: package_file
|
|
)
|
|
end
|
|
|
|
subject { file_entry }
|
|
|
|
describe 'validations' do
|
|
it { is_expected.to be_valid }
|
|
|
|
describe '#filename' do
|
|
it { is_expected.to validate_presence_of(:filename) }
|
|
it { is_expected.not_to allow_value('Hé').for(:filename) }
|
|
end
|
|
|
|
describe '#size' do
|
|
it { is_expected.to validate_presence_of(:size) }
|
|
end
|
|
|
|
describe '#md5sum' do
|
|
it { is_expected.to validate_presence_of(:md5sum) }
|
|
it { is_expected.not_to allow_value('12345678901234567890123456789012').for(:md5sum).with_message("mismatch for sample_1.2.3~alpha2.dsc: #{package_file.file_md5} != 12345678901234567890123456789012") }
|
|
end
|
|
|
|
describe '#section' do
|
|
it { is_expected.to validate_presence_of(:section) }
|
|
end
|
|
|
|
describe '#priority' do
|
|
it { is_expected.to validate_presence_of(:priority) }
|
|
end
|
|
|
|
describe '#sha1sum' do
|
|
it { is_expected.to validate_presence_of(:sha1sum) }
|
|
it { is_expected.not_to allow_value('1234567890123456789012345678901234567890').for(:sha1sum).with_message("mismatch for sample_1.2.3~alpha2.dsc: #{package_file.file_sha1} != 1234567890123456789012345678901234567890") }
|
|
end
|
|
|
|
describe '#sha256sum' do
|
|
it { is_expected.to validate_presence_of(:sha256sum) }
|
|
it { is_expected.not_to allow_value('1234567890123456789012345678901234567890123456789012345678901234').for(:sha256sum).with_message("mismatch for sample_1.2.3~alpha2.dsc: #{package_file.file_sha256} != 1234567890123456789012345678901234567890123456789012345678901234") }
|
|
end
|
|
|
|
describe '#package_file' do
|
|
it { is_expected.to validate_presence_of(:package_file) }
|
|
end
|
|
end
|
|
|
|
describe '#component' do
|
|
subject { file_entry.component }
|
|
|
|
context 'without section' do
|
|
let(:section) { nil }
|
|
|
|
it { is_expected.to eq 'main' }
|
|
end
|
|
|
|
context 'with empty section' do
|
|
let(:section) { '' }
|
|
|
|
it { is_expected.to eq 'main' }
|
|
end
|
|
|
|
context 'with ruby section' do
|
|
let(:section) { 'ruby' }
|
|
|
|
it { is_expected.to eq 'main' }
|
|
end
|
|
|
|
context 'with contrib/ruby section' do
|
|
let(:section) { 'contrib/ruby' }
|
|
|
|
it { is_expected.to eq 'contrib' }
|
|
end
|
|
end
|
|
end
|