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

google_play_spec.rb « integrations « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5b0c0588092f0f83d2adc61b79958863a893cf5 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integrations::GooglePlay, feature_category: :mobile_devops do
  describe 'Validations' do
    context 'when active' do
      before do
        subject.active = true
      end

      it { is_expected.to validate_presence_of :service_account_key_file_name }
      it { is_expected.to validate_presence_of :service_account_key }
      it { is_expected.to validate_presence_of :package_name }
      it { is_expected.to allow_value(File.read('spec/fixtures/service_account.json')).for(:service_account_key) }
      it { is_expected.not_to allow_value(File.read('spec/fixtures/group.json')).for(:service_account_key) }
      it { is_expected.to allow_value('com.example.myapp').for(:package_name) }
      it { is_expected.to allow_value('com.example.myorg.myapp').for(:package_name) }
      it { is_expected.to allow_value('com_us.example.my_org.my_app').for(:package_name) }
      it { is_expected.to allow_value('a.a.a').for(:package_name) }
      it { is_expected.to allow_value('com.example').for(:package_name) }
      it { is_expected.not_to allow_value('com').for(:package_name) }
      it { is_expected.to validate_inclusion_of(:google_play_protected_refs).in_array([true, false]) }
      it { is_expected.not_to allow_value('com.example.my app').for(:package_name) }
      it { is_expected.not_to allow_value('1com.example.myapp').for(:package_name) }
      it { is_expected.not_to allow_value('com.1example.myapp').for(:package_name) }
      it { is_expected.not_to allow_value('com.example._myapp').for(:package_name) }
    end
  end

  context 'when integration is enabled' do
    let(:google_play_integration) { build(:google_play_integration) }

    describe '#fields' do
      it 'returns custom fields' do
        expect(google_play_integration.fields.pluck(:name)).to match_array(%w[package_name service_account_key
          service_account_key_file_name google_play_protected_refs])
      end
    end

    describe '#test' do
      it 'returns true for a successful request' do
        allow_next_instance_of(Google::Apis::AndroidpublisherV3::AndroidPublisherService) do |instance|
          allow(instance).to receive(:list_reviews)
        end
        expect(google_play_integration.test[:success]).to be true
      end

      it 'returns false for an invalid request' do
        allow_next_instance_of(Google::Apis::AndroidpublisherV3::AndroidPublisherService) do |instance|
          allow(instance).to receive(:list_reviews).and_raise(Google::Apis::ClientError.new('error'))
        end
        expect(google_play_integration.test[:success]).to be false
      end
    end

    describe '#help' do
      it 'renders prompt information' do
        expect(google_play_integration.help).not_to be_empty
      end
    end

    describe '.to_param' do
      it 'returns the name of the integration' do
        expect(described_class.to_param).to eq('google_play')
      end
    end

    describe '#ci_variables' do
      let(:google_play_integration) { build_stubbed(:google_play_integration) }
      let(:ci_vars) do
        [
          {
            key: 'SUPPLY_PACKAGE_NAME',
            value: google_play_integration.package_name,
            masked: false,
            public: false
          },
          {
            key: 'SUPPLY_JSON_KEY_DATA',
            value: google_play_integration.service_account_key,
            masked: true,
            public: false
          }
        ]
      end

      it 'returns the vars for protected branch' do
        expect(google_play_integration.ci_variables(protected_ref: true)).to match_array(ci_vars)
      end

      it "doesn't return vars for unproteced branch" do
        expect(google_play_integration.ci_variables(protected_ref: false)).to be_empty
      end
    end

    describe '#initialize_properties' do
      context 'when google_play_protected_refs is nil' do
        let(:google_play_integration) { described_class.new(google_play_protected_refs: nil) }

        it 'sets google_play_protected_refs to true' do
          expect(google_play_integration.google_play_protected_refs).to be(true)
        end
      end

      context 'when google_play_protected_refs is false' do
        let(:google_play_integration) { build(:google_play_integration, google_play_protected_refs: false) }

        it 'sets google_play_protected_refs to false' do
          expect(google_play_integration.google_play_protected_refs).to be(false)
        end

        it "returns vars for unprotected ref when google_play_protected_refs is false" do
          expect(google_play_integration.ci_variables(protected_ref: false)).not_to be_empty
        end
      end
    end
  end

  context 'when integration is disabled' do
    let(:google_play_integration) { build_stubbed(:google_play_integration, active: false) }

    describe '#ci_variables' do
      it 'returns an empty array' do
        expect(google_play_integration.ci_variables(protected_ref: true)).to be_empty
      end
    end
  end
end