push_check_spec.rb 745 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Checks::PushCheck do
  include_context 'change access checks context'

  describe '#validate!' do
    it 'does not raise any error' do
      expect { subject.validate! }.not_to raise_error
    end

    context 'when the user is not allowed to push to the repo' do
      it 'raises an error' do
        expect(user_access).to receive(:can_do_action?).with(:push_code).and_return(false)
16
        expect(project).to receive(:branch_allows_collaboration?).with(user_access.user, 'master').and_return(false)
17 18 19 20 21 22

        expect { subject.validate! }.to raise_error(Gitlab::GitAccess::UnauthorizedError, 'You are not allowed to push code to this project.')
      end
    end
  end
end