summaryrefslogtreecommitdiff
path: root/spec/requests/ci/api/runners_spec.rb
blob: 5942aa7a1b59f27cade4f9b0fe08018bd0a76ea4 (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
require 'spec_helper'

describe Ci::API::API do
  include ApiHelpers
  include StubGitlabCalls

  let(:registration_token) { 'abcdefg123456' }

  before do
    stub_gitlab_calls
    stub_application_setting(runners_registration_token: registration_token)
  end

  describe "POST /runners/register" do
    describe "should create a runner if token provided" do
      before { post ci_api("/runners/register"), token: registration_token }

      it { expect(response.status).to eq(201) }
    end

    describe "should create a runner with description" do
      before { post ci_api("/runners/register"), token: registration_token, description: "server.hostname" }

      it { expect(response.status).to eq(201) }
      it { expect(Ci::Runner.first.description).to eq("server.hostname") }
    end

    describe "should create a runner with tags" do
      before { post ci_api("/runners/register"), token: registration_token, tag_list: "tag1, tag2" }

      it { expect(response.status).to eq(201) }
      it { expect(Ci::Runner.first.tag_list.sort).to eq(["tag1", "tag2"]) }
    end

    describe "should create a runner if project token provided" do
      let(:project) { FactoryGirl.create(:empty_project) }
      before { post ci_api("/runners/register"), token: project.runners_token }

      it { expect(response.status).to eq(201) }
      it { expect(project.runners.size).to eq(1) }
    end

    it "should return 403 error if token is invalid" do
      post ci_api("/runners/register"), token: 'invalid'

      expect(response.status).to eq(403)
    end

    it "should return 400 error if no token" do
      post ci_api("/runners/register")

      expect(response.status).to eq(400)
    end
  end

  describe "DELETE /runners/delete" do
    let!(:runner) { FactoryGirl.create(:ci_runner) }
    before { delete ci_api("/runners/delete"), token: runner.token }

    it { expect(response.status).to eq(200) }
    it { expect(Ci::Runner.count).to eq(0) }
  end
end