Commit 29a7c679 authored by Kamil Trzcinski's avatar Kamil Trzcinski

Fix GitLabCiService and remove ci_yaml_file from CI push data

parent c9853897
......@@ -40,18 +40,9 @@ class GitlabCiService < CiService
def execute(data)
return unless supported_events.include?(data[:object_kind])
sha = data[:checkout_sha]
if sha.present?
file = ci_yaml_file(sha)
if file && file.data
data.merge!(ci_yaml_file: file.data)
end
end
ci_project = Ci::Project.find_by(gitlab_id: project.id)
ci_project = project.gitlab_ci_project
if ci_project
current_user = User.find_by(id: data[:user_id])
Ci::CreateCommitService.new.execute(ci_project, current_user, data)
end
end
......@@ -99,14 +90,4 @@ class GitlabCiService < CiService
def fields
[]
end
private
def ci_yaml_file(sha)
repository.blob_at(sha, '.gitlab-ci.yml')
end
def repository
project.repository
end
end
......@@ -39,8 +39,8 @@ describe GitlabCiService do
end
describe :build_page do
it { expect(@service.build_page("2ab7834c", 'master')).to eq("http://localhost/ci/projects/#{@ci_project.id}/refs/master/commits/2ab7834c")}
it { expect(@service.build_page("issue#2", 'master')).to eq("http://localhost/ci/projects/#{@ci_project.id}/refs/master/commits/issue%232")}
it { expect(@service.build_page("2ab7834c", 'master')).to eq("http://localhost/ci/projects/#{@ci_project.id}/commits/2ab7834c")}
it { expect(@service.build_page("issue#2", 'master')).to eq("http://localhost/ci/projects/#{@ci_project.id}/commits/issue%232")}
end
describe "execute" do
......@@ -48,8 +48,8 @@ describe GitlabCiService do
let(:project) { create(:project, name: 'project') }
let(:push_sample_data) { Gitlab::PushDataBuilder.build_sample(project, user) }
it "calls ci_yaml_file" do
expect(@service).to receive(:ci_yaml_file).with(push_sample_data[:checkout_sha])
it "calls CreateCommitService" do
expect_any_instance_of(Ci::CreateCommitService).to receive(:execute).with(@ci_project, user, push_sample_data)
@service.execute(push_sample_data)
end
......
......@@ -44,8 +44,7 @@ describe Ci::API::API, 'Commits' do
"email" => "jordi@softcatala.org",
}
}
],
ci_yaml_file: gitlab_ci_yaml
]
}
end
......
......@@ -17,7 +17,6 @@ module Ci
ref: 'refs/heads/master',
before: '00000000',
after: '31das312',
ci_yaml_file: gitlab_ci_yaml,
commits: [ { message: "Message" } ]
)
end
......@@ -35,7 +34,6 @@ module Ci
ref: 'refs/tags/0_1',
before: '00000000',
after: '31das312',
ci_yaml_file: gitlab_ci_yaml,
commits: [ { message: "Message" } ]
)
expect(result).to be_persisted
......@@ -49,7 +47,6 @@ module Ci
ref: 'refs/heads/0_1',
before: '00000000',
after: '31das312',
ci_yaml_file: config,
commits: [ { message: "Message" } ]
)
expect(result).to be_persisted
......@@ -62,7 +59,6 @@ module Ci
ref: 'refs/heads/0_1',
before: '00000000',
after: '31das312',
ci_yaml_file: nil,
commits: [ { message: 'Message' } ]
)
expect(result).to be_persisted
......@@ -83,8 +79,7 @@ module Ci
ref: 'refs/tags/0_1',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: gitlab_ci_yaml
commits: commits
)
expect(commit.builds.any?).to be false
expect(commit.status).to eq("skipped")
......@@ -98,8 +93,7 @@ module Ci
ref: 'refs/tags/0_1',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: gitlab_ci_yaml
commits: commits
)
expect(commit.builds.first.name).to eq("staging")
......@@ -112,8 +106,7 @@ module Ci
ref: 'refs/tags/0_1',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: "invalid: file"
commits: commits
)
expect(commit.builds.any?).to be false
expect(commit.status).to eq("skipped")
......@@ -128,8 +121,7 @@ module Ci
ref: 'refs/heads/master',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: gitlab_ci_yaml
commits: commits
)
expect(commit.builds.count(:all)).to eq(2)
......@@ -137,8 +129,7 @@ module Ci
ref: 'refs/heads/master',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: gitlab_ci_yaml
commits: commits
)
expect(commit.builds.count(:all)).to eq(2)
end
......@@ -152,8 +143,7 @@ module Ci
ref: 'refs/tags/0_1',
before: '00000000',
after: '31das312',
commits: commits,
ci_yaml_file: "invalid: file"
commits: commits
)
expect(commit.status).to eq("failed")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment