Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package_metadata_catalog_entry_spec.rb « nuget « entities « api « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b39456973eafc234c40d608f08b7d7e147abe215 (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
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::Nuget::PackageMetadataCatalogEntry, feature_category: :package_registry do
  let(:entry) do
    {
      json_url: 'http://sandbox.com/json/package',
      dependency_groups: [],
      package_name: 'PackageTest',
      package_version: '1.2.3',
      tags: 'tag1 tag2 tag3',
      archive_url: 'http://sandbox.com/archive/package',
      published: '2022-10-05T18:40:32.43+00:00',
      metadatum: {
        authors: 'Authors',
        description: 'Summary',
        project_url: 'http://sandbox.com/project',
        license_url: 'http://sandbox.com/license',
        icon_url: 'http://sandbox.com/icon'
      }
    }
  end

  let(:expected) do
    {
      '@id': 'http://sandbox.com/json/package',
      'id': 'PackageTest',
      'version': '1.2.3',
      'authors': 'Authors',
      'dependencyGroups': [],
      'tags': 'tag1 tag2 tag3',
      'packageContent': 'http://sandbox.com/archive/package',
      'description': 'Summary',
      'summary': 'Summary',
      'projectUrl': 'http://sandbox.com/project',
      'licenseUrl': 'http://sandbox.com/license',
      'iconUrl': 'http://sandbox.com/icon',
      'published': '2022-10-05T18:40:32.43+00:00'
    }
  end

  subject { described_class.new(entry).as_json }

  it { is_expected.to eq(expected) }
end