summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb
blob: bcf4814edb6d1e0cc47c0de9c3d50d503e2655a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'spec_helper'

describe Gitlab::Git::WrapsGitalyErrors do
  subject(:wrapper) do
    klazz = Class.new { include Gitlab::Git::WrapsGitalyErrors }
    klazz.new
  end

  describe "#wrapped_gitaly_errors" do
    mapping = {
      GRPC::NotFound => Gitlab::Git::Repository::NoRepository,
      GRPC::InvalidArgument => ArgumentError,
      GRPC::BadStatus => Gitlab::Git::CommandError
    }

    mapping.each do |grpc_error, error|
      it "wraps #{grpc_error} in a #{error}" do
        expect { wrapper.wrapped_gitaly_errors { raise grpc_error.new('wrapped') } }
          .to raise_error(error)
      end
    end

    it 'does not swallow other errors' do
      expect { wrapper.wrapped_gitaly_errors { raise 'raised' } }
        .to raise_error(RuntimeError)
    end
  end
end