BigW Consortium Gitlab

drone_ci_service_spec.rb 3.6 KB
Newer Older
Kirilll Zaitsev committed
1 2
require 'spec_helper'

3 4 5
describe DroneCiService, models: true, caching: true do
  include ReactiveCachingHelpers

Kirilll Zaitsev committed
6 7 8 9 10 11 12
  describe 'associations' do
    it { is_expected.to belong_to(:project) }
    it { is_expected.to have_one(:service_hook) }
  end

  describe 'validations' do
    context 'active' do
13
      before { subject.active = true }
Kirilll Zaitsev committed
14 15 16

      it { is_expected.to validate_presence_of(:token) }
      it { is_expected.to validate_presence_of(:drone_url) }
17
      it_behaves_like 'issue tracker service URL attribute', :drone_url
Kirilll Zaitsev committed
18 19 20
    end

    context 'inactive' do
21
      before { subject.active = false }
Kirilll Zaitsev committed
22 23 24 25 26 27 28 29

      it { is_expected.not_to validate_presence_of(:token) }
      it { is_expected.not_to validate_presence_of(:drone_url) }
    end
  end

  shared_context :drone_ci_service do
    let(:drone)      { DroneCiService.new }
30
    let(:project)    { create(:project, :repository, name: 'project') }
31
    let(:path)       { project.full_path }
Kirilll Zaitsev committed
32 33 34 35 36 37
    let(:drone_url)  { 'http://drone.example.com' }
    let(:sha)        { '2ab7834c' }
    let(:branch)     { 'dev' }
    let(:token)      { 'secret' }
    let(:iid)        { rand(1..9999) }

38 39 40 41
    # URL's
    let(:build_page) { "#{drone_url}/gitlab/#{path}/redirect/commits/#{sha}?branch=#{branch}" }
    let(:commit_status_path) { "#{drone_url}/gitlab/#{path}/commits/#{sha}?branch=#{branch}&access_token=#{token}" }

Kirilll Zaitsev committed
42 43 44 45 46 47 48 49 50
    before(:each) do
      allow(drone).to receive_messages(
        project_id: project.id,
        project: project,
        active: true,
        drone_url: drone_url,
        token: token
      )
    end
51 52

    def stub_request(status: 200, body: nil)
53
      body ||= %q({"status":"success"})
54 55 56 57 58 59 60

      WebMock.stub_request(:get, commit_status_path).to_return(
        status: status,
        headers: { 'Content-Type' => 'application/json' },
        body: body
      )
    end
Kirilll Zaitsev committed
61 62 63 64 65
  end

  describe "service page/path methods" do
    include_context :drone_ci_service

66
    it { expect(drone.build_page(sha, branch)).to eq(build_page) }
Kirilll Zaitsev committed
67
    it { expect(drone.commit_status_path(sha, branch)).to eq(commit_status_path) }
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
  end

  describe '#commit_status' do
    include_context :drone_ci_service

    it 'returns the contents of the reactive cache' do
      stub_reactive_cache(drone, { commit_status: 'foo' }, 'sha', 'ref')

      expect(drone.commit_status('sha', 'ref')).to eq('foo')
    end
  end

  describe '#calculate_reactive_cache' do
    include_context :drone_ci_service

    context '#commit_status' do
      subject { drone.calculate_reactive_cache(sha, branch)[:commit_status] }

      it 'sets commit status to :error when status is 500' do
        stub_request(status: 500)

        is_expected.to eq(:error)
      end

      it 'sets commit status to :error when status is 404' do
        stub_request(status: 404)

        is_expected.to eq(:error)
      end

98 99
      {
        "killed"  => :canceled,
100 101
        "failure" => :failed,
        "error"   => :failed,
102
        "success" => "success"
103 104
      }.each do |drone_status, our_status|
        it "sets commit status to #{our_status.inspect} when returned status is #{drone_status.inspect}" do
105
          stub_request(body: %Q({"status":"#{drone_status}"}))
106 107 108 109 110

          is_expected.to eq(our_status)
        end
      end
    end
Kirilll Zaitsev committed
111 112 113 114 115 116
  end

  describe "execute" do
    include_context :drone_ci_service

    let(:user)    { create(:user, username: 'username') }
117
    let(:push_sample_data) do
118
      Gitlab::DataBuilder::Push.build_sample(project, user)
119
    end
Kirilll Zaitsev committed
120 121 122 123 124 125 126 127 128 129

    it do
      service_hook = double
      expect(service_hook).to receive(:execute)
      expect(drone).to receive(:service_hook).and_return(service_hook)

      drone.execute(push_sample_data)
    end
  end
end