summaryrefslogtreecommitdiff
path: root/spec/models/clusters/agents/authorizations/ci_access/project_authorization_spec.rb
blob: fe5f3cb10ea6f588ecf997ef3c76dffc34294df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Agents::Authorizations::CiAccess::ProjectAuthorization, feature_category: :deployment_management do
  it { is_expected.to belong_to(:agent).class_name('Clusters::Agent').required }
  it { is_expected.to belong_to(:project).class_name('Project').required }

  it { expect(described_class).to validate_jsonb_schema(['config']) }

  describe '#config_project' do
    let(:record) { create(:agent_ci_access_project_authorization) }

    it { expect(record.config_project).to eq(record.agent.project) }
  end
end