summaryrefslogtreecommitdiff
path: root/spec/services/packages/debian/extract_deb_metadata_service_spec.rb
blob: ee3f3d179dcd8bebd78801763cb29cb0fe5a9cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe Packages::Debian::ExtractDebMetadataService do
  subject { described_class.new(file_path) }

  let(:file_name) { 'libsample0_1.2.3~alpha2_amd64.deb' }
  let(:file_path) { "spec/fixtures/packages/debian/#{file_name}" }

  context 'with correct file' do
    it 'return as expected' do
      expected = {
        'Package' => 'libsample0',
        'Source' => 'sample',
        'Version' => '1.2.3~alpha2',
        'Architecture' => 'amd64',
        'Maintainer' => 'John Doe <john.doe@example.com>',
        'Installed-Size' => '7',
        'Section' => 'libs',
        'Priority' => 'optional',
        'Multi-Arch' => 'same',
        'Homepage' => 'https://gitlab.com/',
        'Description' => "Some mostly empty lib\nUsed in GitLab tests.\n\nTesting another paragraph."
      }

      expect(subject.execute).to eq expected
    end
  end

  context 'with incorrect file' do
    let(:file_name) { 'README.md' }

    it 'raise error' do
      expect {subject.execute}.to raise_error(described_class::CommandFailedError, /is not a Debian format archive/i)
    end
  end
end