You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							174 lines
						
					
					
						
							6.0 KiB
						
					
					
				
			
		
		
	
	
							174 lines
						
					
					
						
							6.0 KiB
						
					
					
				require "rails_helper" | 
						|
 | 
						|
RSpec.describe OrganisationPolicy do | 
						|
  subject(:policy) { described_class } | 
						|
 | 
						|
  let(:organisation) { FactoryBot.create(:organisation) } | 
						|
  let(:data_provider) { FactoryBot.create(:user, :data_provider) } | 
						|
  let(:data_coordinator) { FactoryBot.create(:user, :data_coordinator) } | 
						|
  let(:support) { FactoryBot.create(:user, :support) } | 
						|
 | 
						|
  permissions :deactivate? do | 
						|
    it "does not permit data providers to deactivate an organisation" do | 
						|
      organisation.active = true | 
						|
      expect(policy).not_to permit(data_provider, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit data coordinators to deactivate an organisation" do | 
						|
      organisation.active = true | 
						|
      expect(policy).not_to permit(data_coordinator, organisation) | 
						|
    end | 
						|
 | 
						|
    it "permits support users to deactivate an active organisation" do | 
						|
      organisation.active = true | 
						|
      expect(policy).to permit(support, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit support users to deactivate an inactive organisation" do | 
						|
      organisation.active = false | 
						|
      expect(policy).not_to permit(support, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit support users to deactivate a merged organisation" do | 
						|
      organisation.active = true | 
						|
      organisation.merge_date = Time.zone.local(2023, 8, 2) | 
						|
      expect(policy).not_to permit(support, organisation) | 
						|
    end | 
						|
  end | 
						|
 | 
						|
  permissions :reactivate? do | 
						|
    it "does not permit data providers to reactivate an organisation" do | 
						|
      organisation.active = false | 
						|
      expect(policy).not_to permit(data_provider, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit data coordinators to reactivate an organisation" do | 
						|
      organisation.active = false | 
						|
      expect(policy).not_to permit(data_coordinator, organisation) | 
						|
    end | 
						|
 | 
						|
    it "permits support users to reactivate an inactive organisation" do | 
						|
      organisation.active = false | 
						|
      expect(policy).to permit(support, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit support users to reactivate an active organisation" do | 
						|
      organisation.active = true | 
						|
      expect(policy).not_to permit(support, organisation) | 
						|
    end | 
						|
 | 
						|
    it "does not permit support users to reactivate a merged organisation" do | 
						|
      organisation.active = false | 
						|
      organisation.merge_date = Time.zone.local(2023, 8, 2) | 
						|
      expect(policy).not_to permit(support, organisation) | 
						|
    end | 
						|
  end | 
						|
 | 
						|
  permissions :delete? do | 
						|
    let(:organisation) { FactoryBot.create(:organisation) } | 
						|
 | 
						|
    context "with active organisation" do | 
						|
      it "does not allow deleting a organisation as a provider" do | 
						|
        expect(policy).not_to permit(data_provider, organisation) | 
						|
      end | 
						|
 | 
						|
      it "does not allow allows deleting a organisation as a coordinator" do | 
						|
        expect(policy).not_to permit(data_coordinator, organisation) | 
						|
      end | 
						|
 | 
						|
      it "does not allow deleting a organisation as a support user" do | 
						|
        expect(policy).not_to permit(support, organisation) | 
						|
      end | 
						|
    end | 
						|
 | 
						|
    context "with deactivated organisation" do | 
						|
      before do | 
						|
        organisation.update!(active: false) | 
						|
      end | 
						|
 | 
						|
      it "does not allow deleting a organisation as a provider" do | 
						|
        expect(policy).not_to permit(data_provider, organisation) | 
						|
      end | 
						|
 | 
						|
      it "does not allow allows deleting a organisation as a coordinator" do | 
						|
        expect(policy).not_to permit(data_coordinator, organisation) | 
						|
      end | 
						|
 | 
						|
      it "allows deleting a organisation as a support user" do | 
						|
        expect(policy).to permit(support, organisation) | 
						|
      end | 
						|
 | 
						|
      context "and associated lettings logs in editable collection period" do | 
						|
        before do | 
						|
          create(:lettings_log, owning_organisation: organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a provider" do | 
						|
          expect(policy).not_to permit(data_provider, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow allows deleting a organisation as a coordinator" do | 
						|
          expect(policy).not_to permit(data_coordinator, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a support user" do | 
						|
          expect(policy).not_to permit(support, organisation) | 
						|
        end | 
						|
      end | 
						|
 | 
						|
      context "and deleted associated lettings logs in editable collection period" do | 
						|
        before do | 
						|
          create(:lettings_log, owning_organisation: organisation, discarded_at: Time.zone.yesterday) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a provider" do | 
						|
          expect(policy).not_to permit(data_provider, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow allows deleting a organisation as a coordinator" do | 
						|
          expect(policy).not_to permit(data_coordinator, organisation) | 
						|
        end | 
						|
 | 
						|
        it "allows deleting a organisation as a support user" do | 
						|
          expect(policy).to permit(support, organisation) | 
						|
        end | 
						|
      end | 
						|
 | 
						|
      context "and associated sales logs in editable collection period" do | 
						|
        before do | 
						|
          create(:sales_log, owning_organisation: organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a provider" do | 
						|
          expect(policy).not_to permit(data_provider, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow allows deleting a organisation as a coordinator" do | 
						|
          expect(policy).not_to permit(data_coordinator, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a support user" do | 
						|
          expect(policy).not_to permit(support, organisation) | 
						|
        end | 
						|
      end | 
						|
 | 
						|
      context "and deleted associated sales logs in editable collection period" do | 
						|
        before do | 
						|
          create(:sales_log, owning_organisation: organisation, discarded_at: Time.zone.yesterday) | 
						|
        end | 
						|
 | 
						|
        it "does not allow deleting a organisation as a provider" do | 
						|
          expect(policy).not_to permit(data_provider, organisation) | 
						|
        end | 
						|
 | 
						|
        it "does not allow allows deleting a organisation as a coordinator" do | 
						|
          expect(policy).not_to permit(data_coordinator, organisation) | 
						|
        end | 
						|
 | 
						|
        it "allows deleting a organisation as a support user" do | 
						|
          expect(policy).to permit(support, organisation) | 
						|
        end | 
						|
      end | 
						|
    end | 
						|
  end | 
						|
end
 | 
						|
 |