summaryrefslogtreecommitdiff
path: root/spec/models/packages/conan/metadatum_spec.rb
blob: d00723e8e431a0f0dc6cf12ed15a17664e047d64 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Packages::Conan::Metadatum, type: :model do
  using RSpec::Parameterized::TableSyntax

  describe 'relationships' do
    it { is_expected.to belong_to(:package) }
  end

  describe 'validations' do
    let(:fifty_one_characters) { 'f_a' * 17}

    it { is_expected.to validate_presence_of(:package) }
    it { is_expected.to validate_presence_of(:package_username) }
    it { is_expected.to validate_presence_of(:package_channel) }

    describe '#package_username' do
      it { is_expected.to allow_value("my-package+username").for(:package_username) }
      it { is_expected.to allow_value("my_package.username").for(:package_username) }
      it { is_expected.to allow_value("_my-package.username123").for(:package_username) }
      it { is_expected.to allow_value("my").for(:package_username) }
      it { is_expected.not_to allow_value('+my_package').for(:package_username) }
      it { is_expected.not_to allow_value('.my_package').for(:package_username) }
      it { is_expected.not_to allow_value('-my_package').for(:package_username) }
      it { is_expected.not_to allow_value('m').for(:package_username) }
      it { is_expected.not_to allow_value(fifty_one_characters).for(:package_username) }
      it { is_expected.not_to allow_value("my/package").for(:package_username) }
      it { is_expected.not_to allow_value("my(package)").for(:package_username) }
      it { is_expected.not_to allow_value("my@package").for(:package_username) }
    end

    describe '#package_channel' do
      it { is_expected.to allow_value("beta").for(:package_channel) }
      it { is_expected.to allow_value("stable+1.0").for(:package_channel) }
      it { is_expected.to allow_value("my").for(:package_channel) }
      it { is_expected.to allow_value("my_channel.beta").for(:package_channel) }
      it { is_expected.to allow_value("_my-channel.beta123").for(:package_channel) }
      it { is_expected.not_to allow_value('+my_channel').for(:package_channel) }
      it { is_expected.not_to allow_value('.my_channel').for(:package_channel) }
      it { is_expected.not_to allow_value('-my_channel').for(:package_channel) }
      it { is_expected.not_to allow_value('m').for(:package_channel) }
      it { is_expected.not_to allow_value(fifty_one_characters).for(:package_channel) }
      it { is_expected.not_to allow_value("my/channel").for(:package_channel) }
      it { is_expected.not_to allow_value("my(channel)").for(:package_channel) }
      it { is_expected.not_to allow_value("my@channel").for(:package_channel) }
    end

    describe '#username_channel_none_values' do
      let_it_be(:package) { create(:conan_package) }

      let(:metadatum) { package.conan_metadatum }

      subject { metadatum.valid? }

      where(:username, :channel, :valid) do
        'username' | 'channel' | true
        'username' | '_'       | false
        '_'        | 'channel' | false
        '_'        | '_'       | true
      end

      with_them do
        before do
          metadatum.package_username = username
          metadatum.package_channel = channel
        end

        it { is_expected.to eq(valid) }
      end
    end

    describe '#conan_package_type' do
      it 'will not allow a package with a different package_type' do
        package = build('package')
        conan_metadatum = build('conan_metadatum', package: package)

        expect(conan_metadatum).not_to be_valid
        expect(conan_metadatum.errors.to_a).to include('Package type must be Conan')
      end
    end
  end

  describe '#recipe' do
    let(:package) { create(:conan_package) }

    it 'returns the recipe' do
      expect(package.conan_recipe).to eq("#{package.name}/#{package.version}@#{package.conan_metadatum.package_username}/#{package.conan_metadatum.package_channel}")
    end
  end

  describe '#recipe_url' do
    let(:package) { create(:conan_package) }

    it 'returns the recipe url' do
      expect(package.conan_recipe_path).to eq("#{package.name}/#{package.version}/#{package.conan_metadatum.package_username}/#{package.conan_metadatum.package_channel}")
    end
  end

  describe '.package_username_from' do
    let(:full_path) { 'foo/bar/baz-buz' }

    it 'returns the username formatted package path' do
      expect(described_class.package_username_from(full_path: full_path)).to eq('foo+bar+baz-buz')
    end
  end

  describe '.full_path_from' do
    let(:username) { 'foo+bar+baz-buz' }

    it 'returns the username formatted package path' do
      expect(described_class.full_path_from(package_username: username)).to eq('foo/bar/baz-buz')
    end
  end

  describe '.validate_username_and_channel' do
    where(:username, :channel, :error_field) do
      'username' | 'channel' | nil
      'username' | '_'       | :channel
      '_'        | 'channel' | :username
      '_'        | '_'       | nil
    end

    with_them do
      if params[:error_field]
        it 'yields the block when there is an error' do
          described_class.validate_username_and_channel(username, channel) do |none_field|
            expect(none_field).to eq(error_field)
          end
        end
      else
        it 'does not yield the block when there is no error' do
          expect { |b| described_class.validate_username_and_channel(username, channel, &b) }.not_to yield_control
        end
      end
    end
  end
end