summaryrefslogtreecommitdiff
path: root/spec/requests/api/runners_spec.rb
blob: a6fc43c9f6ddcf574b75b85a9ead0805388cfb16 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
require 'spec_helper'

describe API::API do
  include ApiHelpers
  include StubGitlabCalls

  before {
    stub_gitlab_calls
  }

  describe "GET /runners" do
    let(:gitlab_url) { GitlabCi.config.gitlab_server.url }
    let(:private_token) { Network.new.authenticate(access_token: "some_token")["private_token"] }
    let(:options) {
      {
        :private_token => private_token,
        :url => gitlab_url
      }
    }

    before do
      5.times { FactoryGirl.create(:runner) }
    end

    it "should retrieve a list of all runners" do
      get api("/runners"), options
      response.status.should eq 200
      json_response.count.should eq 5
      json_response.last.should have_key("id")
      json_response.last.should have_key("token")
    end
  end

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

      it { response.status.should eq 201 }
    end

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

      it { response.status.should eq 201 }
      it { Runner.first.description.should eq "server.hostname" }
    end

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

      it { response.status.should eq 201 }
      it { Runner.first.tag_list.sort.should eq ["tag1", "tag2"] }
    end

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

      it { response.status.should eq 201 }
      it { project.runners.size.should eq 1 }
    end

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

      response.status.should eq 403
    end

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

      response.status.should eq 400
    end
  end

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

    it { response.status.should eq 200 }
    it { Runner.count.should eq 0 }
  end
end