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

force_push_spec.rb « checks « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8c8b83a3ac189f8187cd983780a69bc8d7d39ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'spec_helper'

describe Gitlab::Checks::ForcePush do
  let(:project) { create(:project, :repository) }

  context "exit code checking", skip_gitaly_mock: true do
    it "does not raise a runtime error if the `popen` call to git returns a zero exit code" do
      allow(Gitlab::Popen).to receive(:popen).and_return(['normal output', 0])

      expect { described_class.force_push?(project, 'oldrev', 'newrev') }.not_to raise_error
    end

    it "raises a runtime error if the `popen` call to git returns a non-zero exit code" do
      allow(Gitlab::Popen).to receive(:popen).and_return(['error', 1])

      expect { described_class.force_push?(project, 'oldrev', 'newrev') }.to raise_error(RuntimeError)
    end
  end
end