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: c422b51bf3bcbc094063ac962d12efea6205be6b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::Nuget::PackageMetadataCatalogEntry do
  let(:entry) do
    {
      json_url: 'http://sandbox.com/json/package',
      authors: 'Authors',
      dependency_groups: [],
      package_name: 'PackageTest',
      package_version: '1.2.3',
      tags: 'tag1 tag2 tag3',
      archive_url: 'http://sandbox.com/archive/package',
      summary: 'Summary',
      metadatum: {
        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',
      'summary': 'Summary',
      'projectUrl': 'http://sandbox.com/project',
      'licenseUrl': 'http://sandbox.com/license',
      'iconUrl': 'http://sandbox.com/icon'
    }
  end

  subject { described_class.new(entry).as_json }

  it { is_expected.to eq(expected) }
end