summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/plugin_spec.rb
blob: a8ddd774f3f0e9c600045af9a37689eab048c2c0 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Plugin do
  describe '.execute' do
    let(:data) { Gitlab::DataBuilder::Push::SAMPLE_DATA }
    let(:plugin) { Rails.root.join('plugins', 'test.rb') }
    let(:tmp_file) { Tempfile.new('plugin-dump') }
    let(:result) { described_class.execute(plugin.to_s, data) }
    let(:success) { result.first }
    let(:message) { result.last }

    let(:plugin_source) do
      <<~EOS
        #!/usr/bin/env ruby
        x = STDIN.read
        File.write('#{tmp_file.path}', x)
      EOS
    end

    before do
      File.write(plugin, plugin_source)
    end

    after do
      FileUtils.rm(plugin)
    end

    context 'successful execution' do
      before do
        File.chmod(0o777, plugin)
      end

      after do
        tmp_file.close!
      end

      it { expect(success).to be true }
      it { expect(message).to be_empty }

      it 'ensures plugin received data via stdin' do
        result

        expect(File.read(tmp_file.path)).to eq(data.to_json)
      end
    end

    context 'non-executable' do
      it { expect(success).to be false }
      it { expect(message).to include('Permission denied') }
    end

    context 'non-zero exit' do
      let(:plugin_source) do
        <<~EOS
          #!/usr/bin/env ruby
          exit 1
        EOS
      end

      before do
        File.chmod(0o777, plugin)
      end

      it { expect(success).to be false }
      it { expect(message).to be_empty }
    end
  end
end