Workhorse to serve raw diffs
This commit is contained in:
parent
ca3c5c295e
commit
01e1139f68
5 changed files with 28 additions and 30 deletions
|
@ -57,9 +57,16 @@ class Projects::MergeRequestsController < Projects::ApplicationController
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html
|
format.html
|
||||||
format.json { render json: @merge_request }
|
format.json { render json: @merge_request }
|
||||||
format.diff { render text: @merge_request.to_diff }
|
format.patch { render text: @merge_request.to_patch }
|
||||||
format.patch { render text: @merge_request.to_patch }
|
format.diff do
|
||||||
|
headers.store(*Gitlab::Workhorse.send_git_diff(@project.repository,
|
||||||
|
@merge_request.diff_base_commit.id,
|
||||||
|
@merge_request.last_commit.id))
|
||||||
|
headers['Content-Disposition'] = 'inline'
|
||||||
|
|
||||||
|
head :ok
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -313,13 +313,6 @@ class MergeRequest < ActiveRecord::Base
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the raw diff for this merge request
|
|
||||||
#
|
|
||||||
# see "git diff"
|
|
||||||
def to_diff
|
|
||||||
target_project.repository.diff_text(diff_base_commit.sha, source_sha)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Returns the commit as a series of email patches.
|
# Returns the commit as a series of email patches.
|
||||||
#
|
#
|
||||||
# see "git format-patch"
|
# see "git format-patch"
|
||||||
|
|
|
@ -76,18 +76,6 @@ Feature: Project Merge Requests
|
||||||
And I submit new merge request "Wiki Feature"
|
And I submit new merge request "Wiki Feature"
|
||||||
Then I should see merge request "Wiki Feature"
|
Then I should see merge request "Wiki Feature"
|
||||||
|
|
||||||
Scenario: I download a diff on a public merge request
|
|
||||||
Given public project "Community"
|
|
||||||
And "John Doe" owns public project "Community"
|
|
||||||
And project "Community" has "Bug CO-01" open merge request with diffs inside
|
|
||||||
Given I logout directly
|
|
||||||
And I visit merge request page "Bug CO-01"
|
|
||||||
And I click on "Email Patches"
|
|
||||||
Then I should see a patch diff
|
|
||||||
And I visit merge request page "Bug CO-01"
|
|
||||||
And I click on "Plain Diff"
|
|
||||||
Then I should see a patch diff
|
|
||||||
|
|
||||||
@javascript
|
@javascript
|
||||||
Scenario: I comment on a merge request
|
Scenario: I comment on a merge request
|
||||||
Given I visit merge request page "Bug NS-04"
|
Given I visit merge request page "Bug NS-04"
|
||||||
|
|
|
@ -29,9 +29,22 @@ module Gitlab
|
||||||
"git-archive:#{encode(params)}",
|
"git-archive:#{encode(params)}",
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def send_git_diff(repository, from, to)
|
||||||
|
params = {
|
||||||
|
'RepoPath' => repository.path_to_repo,
|
||||||
|
'ShaFrom' => from,
|
||||||
|
'ShaTo' => to
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
SEND_DATA_HEADER,
|
||||||
|
"git-diff:#{encode(params)}"
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
||||||
def encode(hash)
|
def encode(hash)
|
||||||
Base64.urlsafe_encode64(JSON.dump(hash))
|
Base64.urlsafe_encode64(JSON.dump(hash))
|
||||||
end
|
end
|
||||||
|
|
|
@ -84,17 +84,14 @@ describe Projects::MergeRequestsController do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "as diff" do
|
describe "as diff" do
|
||||||
include_examples "export merge as", :diff
|
it "triggers workhorse to serve the request" do
|
||||||
let(:format) { :diff }
|
|
||||||
|
|
||||||
it "should really only be a git diff" do
|
|
||||||
get(:show,
|
get(:show,
|
||||||
namespace_id: project.namespace.to_param,
|
namespace_id: project.namespace.to_param,
|
||||||
project_id: project.to_param,
|
project_id: project.to_param,
|
||||||
id: merge_request.iid,
|
id: merge_request.iid,
|
||||||
format: format)
|
format: :diff)
|
||||||
|
|
||||||
expect(response.body).to start_with("diff --git")
|
expect(response.headers['Gitlab-Workhorse-Send-Data']).to start_with("git-diff:")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue