summaryrefslogtreecommitdiff
path: root/spec/requests/api/builds_spec.rb
blob: fd0e0cd70f39efa12d00e8d340015b17ad7b35aa (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
require 'spec_helper'

describe API::API do
  include ApiHelpers

  let(:runner) { FactoryGirl.create(:runner) }
  let(:project) { FactoryGirl.create(:project) }

  describe "Builds API for runners" do
    let(:shared_runner) { FactoryGirl.create(:runner, token: "SharedRunner") }
    let(:shared_project) { FactoryGirl.create(:project, name: "SharedProject") }

    before do
      FactoryGirl.create :runner_project, project_id: project.id, runner_id: runner.id
    end

    describe "POST /builds/register" do
      it "should start a build" do
        commit = FactoryGirl.create(:commit, project: project)
        job = FactoryGirl.create :job, project: project
        build = commit.create_builds.first

        post api("/builds/register"), token: runner.token

        response.status.should == 201
        json_response['sha'].should == build.sha
      end

      it "should return 404 error if no pending build found" do
        post api("/builds/register"), token: runner.token

        response.status.should == 404
      end

      it "should return 404 error if no builds for specific runner" do
        commit = FactoryGirl.create(:commit, project: shared_project)
        FactoryGirl.create(:build, commit: commit, status: 'pending' )

        post api("/builds/register"), token: runner.token

        response.status.should == 404
      end

      it "should return 404 error if no builds for shared runner" do
        commit = FactoryGirl.create(:commit, project: project)
        FactoryGirl.create(:build, commit: commit, status: 'pending' )

        post api("/builds/register"), token: shared_runner.token

        response.status.should == 404
      end
    end

    describe "PUT /builds/:id" do
      let(:commit) { FactoryGirl.create(:commit, project: project)}
      let(:build) { FactoryGirl.create(:build, commit: commit, runner_id: runner.id) }

      it "should update a running build" do
        build.run!
        put api("/builds/#{build.id}"), token: runner.token
        response.status.should == 200
      end

      it 'Should not override trace information when no trace is given' do
        build.run!
        build.update!(trace: 'hello_world')
        put api("/builds/#{build.id}"), token: runner.token
        expect(build.reload.trace).to eq 'hello_world'
      end
    end
  end

  describe "POST /builds" do
    let(:data) {
      {
        "before" => "95790bf891e76fee5e1747ab589903a6a1f80f22",
        "after" => "da1560886d4f094c3e6c9ef40349f7d38b5d27d7",
        "ref" => "refs/heads/master",
        "commits" => [
          {
            "id" => "b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327",
            "message" => "Update Catalan translation to e38cb41.",
            "timestamp" => "2011-12-12T14:27:31+02:00",
            "url" => "http://localhost/diaspora/commits/b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327",
            "author" => {
              "name" => "Jordi Mallach",
              "email" => "jordi@softcatala.org",
            }
          }
        ]
      }
    }

    it "should create a build" do
      post api("/builds"), project_id: project.id, data: data, project_token: project.token

      response.status.should == 201
      json_response['sha'].should == "da1560886d4f094c3e6c9ef40349f7d38b5d27d7"
    end

    it "should return 400 error if no data passed" do
      post api("/builds"), project_id: project.id, project_token: project.token

      response.status.should == 400
      json_response['message'].should == "400 (Bad request) \"data\" not given"
    end
  end
end