debian-mirror-gitlab/spec/models/integrations/google_play_spec.rb
2023-05-27 22:25:52 +05:30

81 lines
2.6 KiB
Ruby

# 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 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) }
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[service_account_key
service_account_key_file_name])
end
end
describe '#test' do
it 'returns true for a successful request' do
allow(Google::Auth::ServiceAccountCredentials).to receive_message_chain(:make_creds, :fetch_access_token!)
expect(google_play_integration.test[:success]).to be true
end
it 'returns false for an invalid request' do
allow(Google::Auth::ServiceAccountCredentials).to receive_message_chain(:make_creds,
:fetch_access_token!).and_raise(Signet::AuthorizationError.new('error'))
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) }
it 'returns vars when the integration is activated' do
ci_vars = [
{
key: 'SUPPLY_JSON_KEY_DATA',
value: google_play_integration.service_account_key,
masked: true,
public: false
}
]
expect(google_play_integration.ci_variables).to match_array(ci_vars)
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).to match_array([])
end
end
end
end