summaryrefslogtreecommitdiff
path: root/spec/workers/gitlab_shell_worker_spec.rb
blob: f5884e5e8f8b62ec341d606b4531a3b81f18f263 (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
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

require 'spec_helper'

describe GitlabShellWorker do
  let(:worker) { described_class.new }

  describe '#perform' do
    describe '#add_key' do
      it 'delegates to Gitlab::AuthorizedKeys' do
        expect_next_instance_of(Gitlab::AuthorizedKeys) do |instance|
          expect(instance).to receive(:add_key).with('foo', 'bar')
        end

        worker.perform(:add_key, 'foo', 'bar')
      end
    end

    describe '#remove_key' do
      it 'delegates to Gitlab::AuthorizedKeys' do
        expect_next_instance_of(Gitlab::AuthorizedKeys) do |instance|
          expect(instance).to receive(:remove_key).with('foo', 'bar')
        end

        worker.perform(:remove_key, 'foo', 'bar')
      end
    end

    describe 'all other commands' do
      it 'delegates them to Gitlab::Shell' do
        expect_next_instance_of(Gitlab::Shell) do |instance|
          expect(instance).to receive(:foo).with('bar', 'baz')
        end

        worker.perform(:foo, 'bar', 'baz')
      end
    end
  end
end