gitlab-org--gitlab-foss/spec/requests/ci/api/commits_spec.rb

66 lines
1.8 KiB
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
require 'spec_helper'
2015-09-09 12:17:16 +00:00
describe Ci::API::API, 'Commits' do
2015-08-26 01:42:46 +00:00
include ApiHelpers
2015-09-10 14:04:06 +00:00
let(:project) { FactoryGirl.create(:ci_project) }
let(:commit) { FactoryGirl.create(:ci_commit, project: project) }
2015-08-26 01:42:46 +00:00
2015-09-14 11:37:18 +00:00
let(:options) do
2015-08-26 01:42:46 +00:00
{
project_token: project.token,
project_id: project.id
}
2015-09-14 11:37:18 +00:00
end
2015-08-26 01:42:46 +00:00
describe "GET /commits" do
before { commit }
it "should return commits per project" do
2015-09-15 11:45:59 +00:00
get ci_api("/commits"), options
2015-08-26 01:42:46 +00:00
2015-09-10 14:04:06 +00:00
expect(response.status).to eq(200)
expect(json_response.count).to eq(1)
expect(json_response.first["project_id"]).to eq(project.id)
expect(json_response.first["sha"]).to eq(commit.sha)
2015-08-26 01:42:46 +00:00
end
end
describe "POST /commits" do
2015-09-14 11:37:18 +00:00
let(:data) do
2015-08-26 01:42:46 +00:00
{
"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",
}
}
],
ci_yaml_file: gitlab_ci_yaml
}
2015-09-14 11:37:18 +00:00
end
2015-08-26 01:42:46 +00:00
it "should create a build" do
2015-09-15 11:45:59 +00:00
post ci_api("/commits"), options.merge(data: data)
2015-08-26 01:42:46 +00:00
2015-09-10 14:04:06 +00:00
expect(response.status).to eq(201)
expect(json_response['sha']).to eq("da1560886d4f094c3e6c9ef40349f7d38b5d27d7")
2015-08-26 01:42:46 +00:00
end
it "should return 400 error if no data passed" do
2015-09-15 11:45:59 +00:00
post ci_api("/commits"), options
2015-08-26 01:42:46 +00:00
2015-09-10 14:04:06 +00:00
expect(response.status).to eq(400)
expect(json_response['message']).to eq("400 (Bad request) \"data\" not given")
2015-08-26 01:42:46 +00:00
end
end
end