2013-11-07 11:53:35 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Files do
|
2013-11-07 11:53:35 -05:00
|
|
|
let(:user) { create(:user) }
|
2017-01-26 18:51:57 -05:00
|
|
|
let!(:project) { create(:project, :repository, namespace: user.namespace ) }
|
|
|
|
let(:guest) { create(:user) { |u| project.add_guest(u) } }
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:file_path) { "files%2Fruby%2Fpopen%2Erb" }
|
2016-12-20 09:05:57 -05:00
|
|
|
let(:params) do
|
|
|
|
{
|
|
|
|
ref: 'master'
|
|
|
|
}
|
|
|
|
end
|
2017-03-23 09:08:39 -04:00
|
|
|
let(:author_email) { 'user@example.org' }
|
|
|
|
let(:author_name) { 'John Doe' }
|
2014-08-06 02:57:15 -04:00
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_developer(user)
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2014-02-18 05:27:02 -05:00
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
def route(file_path = nil)
|
|
|
|
"/projects/#{project.id}/repository/files/#{file_path}"
|
|
|
|
end
|
2016-12-20 09:05:57 -05:00
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
describe "GET /projects/:id/repository/files/:file_path" do
|
2016-12-16 12:58:24 -05:00
|
|
|
shared_examples_for 'repository files' do
|
2017-03-01 15:22:29 -05:00
|
|
|
it 'returns file attributes as json' do
|
|
|
|
get api(route(file_path), current_user), params
|
2016-12-16 12:58:24 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-01 15:22:29 -05:00
|
|
|
expect(json_response['file_path']).to eq(CGI.unescape(file_path))
|
2016-12-16 12:58:24 -05:00
|
|
|
expect(json_response['file_name']).to eq('popen.rb')
|
|
|
|
expect(json_response['last_commit_id']).to eq('570e7b2abdd848b95f2f578043fc23bd6f6fd24d')
|
|
|
|
expect(Base64.decode64(json_response['content']).lines.first).to eq("require 'fileutils'\n")
|
|
|
|
end
|
2016-12-20 09:05:57 -05:00
|
|
|
|
2017-08-10 15:16:54 -04:00
|
|
|
it 'returns json when file has txt extension' do
|
|
|
|
file_path = "bar%2Fbranch-test.txt"
|
|
|
|
|
|
|
|
get api(route(file_path), current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-08-10 15:16:54 -04:00
|
|
|
expect(response.content_type).to eq('application/json')
|
|
|
|
end
|
|
|
|
|
2017-03-07 19:14:33 -05:00
|
|
|
it 'returns file by commit sha' do
|
|
|
|
# This file is deleted on HEAD
|
|
|
|
file_path = "files%2Fjs%2Fcommit%2Ejs%2Ecoffee"
|
|
|
|
params[:ref] = "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9"
|
|
|
|
|
|
|
|
get api(route(file_path), current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-07 19:14:33 -05:00
|
|
|
expect(json_response['file_name']).to eq('commit.js.coffee')
|
|
|
|
expect(Base64.decode64(json_response['content']).lines.first).to eq("class Commit\n")
|
|
|
|
end
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
it 'returns raw file info' do
|
|
|
|
url = route(file_path) + "/raw"
|
|
|
|
expect(Gitlab::Workhorse).to receive(:send_git_blob)
|
|
|
|
|
|
|
|
get api(url, current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-01 15:22:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when mandatory params are not given' do
|
2016-12-20 09:05:57 -05:00
|
|
|
it_behaves_like '400 response' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:request) { get api(route("any%2Ffile"), current_user) }
|
2016-12-20 09:05:57 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when file_path does not exist' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:params) { { ref: 'master' } }
|
2016-12-20 09:05:57 -05:00
|
|
|
|
|
|
|
it_behaves_like '404 response' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:request) { get api(route('app%2Fmodels%2Fapplication%2Erb'), current_user), params }
|
2016-12-20 09:05:57 -05:00
|
|
|
let(:message) { '404 File Not Found' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository is disabled' do
|
|
|
|
include_context 'disabled repository'
|
|
|
|
|
|
|
|
it_behaves_like '403 response' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:request) { get api(route(file_path), current_user), params }
|
2016-12-20 09:05:57 -05:00
|
|
|
end
|
|
|
|
end
|
2016-12-16 12:58:24 -05:00
|
|
|
end
|
|
|
|
|
2016-12-20 09:05:57 -05:00
|
|
|
context 'when unauthenticated', 'and project is public' do
|
2016-12-16 12:58:24 -05:00
|
|
|
it_behaves_like 'repository files' do
|
2017-08-01 14:51:52 -04:00
|
|
|
let(:project) { create(:project, :public, :repository) }
|
2016-12-16 12:58:24 -05:00
|
|
|
let(:current_user) { nil }
|
|
|
|
end
|
|
|
|
end
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2016-12-20 09:05:57 -05:00
|
|
|
context 'when unauthenticated', 'and project is private' do
|
|
|
|
it_behaves_like '404 response' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:request) { get api(route(file_path)), params }
|
2016-12-20 09:05:57 -05:00
|
|
|
let(:message) { '404 Project Not Found' }
|
2016-12-16 12:58:24 -05:00
|
|
|
end
|
2014-02-18 05:27:02 -05:00
|
|
|
end
|
|
|
|
|
2016-12-20 09:05:57 -05:00
|
|
|
context 'when authenticated', 'as a developer' do
|
|
|
|
it_behaves_like 'repository files' do
|
|
|
|
let(:current_user) { user }
|
|
|
|
end
|
2014-02-18 05:27:02 -05:00
|
|
|
end
|
|
|
|
|
2016-12-20 09:05:57 -05:00
|
|
|
context 'when authenticated', 'as a guest' do
|
|
|
|
it_behaves_like '403 response' do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:request) { get api(route(file_path), guest), params }
|
2016-12-20 09:05:57 -05:00
|
|
|
end
|
2014-02-18 05:27:02 -05:00
|
|
|
end
|
|
|
|
end
|
2013-11-07 11:53:35 -05:00
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
describe "GET /projects/:id/repository/files/:file_path/raw" do
|
|
|
|
shared_examples_for 'repository raw files' do
|
|
|
|
it 'returns raw file info' do
|
|
|
|
url = route(file_path) + "/raw"
|
|
|
|
expect(Gitlab::Workhorse).to receive(:send_git_blob)
|
|
|
|
|
|
|
|
get api(url, current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-01 15:22:29 -05:00
|
|
|
end
|
|
|
|
|
2017-08-21 17:09:45 -04:00
|
|
|
it 'returns raw file info for files with dots' do
|
|
|
|
url = route('.gitignore') + "/raw"
|
|
|
|
expect(Gitlab::Workhorse).to receive(:send_git_blob)
|
|
|
|
|
|
|
|
get api(url, current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-08-21 17:09:45 -04:00
|
|
|
end
|
|
|
|
|
2017-03-07 19:14:33 -05:00
|
|
|
it 'returns file by commit sha' do
|
|
|
|
# This file is deleted on HEAD
|
|
|
|
file_path = "files%2Fjs%2Fcommit%2Ejs%2Ecoffee"
|
|
|
|
params[:ref] = "6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9"
|
|
|
|
expect(Gitlab::Workhorse).to receive(:send_git_blob)
|
|
|
|
|
|
|
|
get api(route(file_path) + "/raw", current_user), params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-07 19:14:33 -05:00
|
|
|
end
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
context 'when mandatory params are not given' do
|
|
|
|
it_behaves_like '400 response' do
|
|
|
|
let(:request) { get api(route("any%2Ffile"), current_user) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when file_path does not exist' do
|
|
|
|
let(:params) { { ref: 'master' } }
|
|
|
|
|
|
|
|
it_behaves_like '404 response' do
|
|
|
|
let(:request) { get api(route('app%2Fmodels%2Fapplication%2Erb'), current_user), params }
|
|
|
|
let(:message) { '404 File Not Found' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when repository is disabled' do
|
|
|
|
include_context 'disabled repository'
|
|
|
|
|
|
|
|
it_behaves_like '403 response' do
|
|
|
|
let(:request) { get api(route(file_path), current_user), params }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthenticated', 'and project is public' do
|
|
|
|
it_behaves_like 'repository raw files' do
|
2017-08-01 14:51:52 -04:00
|
|
|
let(:project) { create(:project, :public, :repository) }
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:current_user) { nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when unauthenticated', 'and project is private' do
|
|
|
|
it_behaves_like '404 response' do
|
|
|
|
let(:request) { get api(route(file_path)), params }
|
|
|
|
let(:message) { '404 Project Not Found' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated', 'as a developer' do
|
|
|
|
it_behaves_like 'repository raw files' do
|
|
|
|
let(:current_user) { user }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated', 'as a guest' do
|
|
|
|
it_behaves_like '403 response' do
|
|
|
|
let(:request) { get api(route(file_path), guest), params }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /projects/:id/repository/files/:file_path" do
|
|
|
|
let!(:file_path) { "new_subfolder%2Fnewfile%2Erb" }
|
2015-06-22 16:00:54 -04:00
|
|
|
let(:valid_params) do
|
2013-11-11 07:58:06 -05:00
|
|
|
{
|
2017-03-01 15:22:29 -05:00
|
|
|
branch: "master",
|
|
|
|
content: "puts 8",
|
|
|
|
commit_message: "Added newfile"
|
2013-11-11 07:58:06 -05:00
|
|
|
}
|
2015-06-22 16:00:54 -04:00
|
|
|
end
|
2013-11-11 07:58:06 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "creates a new file in project repo" do
|
2017-03-01 15:22:29 -05:00
|
|
|
post api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-01 15:22:29 -05:00
|
|
|
expect(json_response["file_path"]).to eq(CGI.unescape(file_path))
|
2016-09-08 11:40:07 -04:00
|
|
|
last_commit = project.repository.commit.raw
|
|
|
|
expect(last_commit.author_email).to eq(user.email)
|
|
|
|
expect(last_commit.author_name).to eq(user.name)
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
it "returns a 400 bad request if no mandatory params given" do
|
|
|
|
post api(route("any%2Etxt"), user)
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns a 400 if editor fails to create file" do
|
2017-06-21 09:48:12 -04:00
|
|
|
allow_any_instance_of(Repository).to receive(:create_file)
|
2017-09-01 06:11:59 -04:00
|
|
|
.and_raise(Gitlab::Git::CommitError, 'Cannot create file')
|
2013-11-07 11:53:35 -05:00
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
post api(route("any%2Etxt"), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|
2016-09-08 11:40:07 -04:00
|
|
|
|
|
|
|
context "when specifying an author" do
|
|
|
|
it "creates a new file with the specified author" do
|
|
|
|
valid_params.merge!(author_email: author_email, author_name: author_name)
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
post api(route("new_file_with_author%2Etxt"), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-08-10 15:16:54 -04:00
|
|
|
expect(response.content_type).to eq('application/json')
|
2016-09-08 11:40:07 -04:00
|
|
|
last_commit = project.repository.commit.raw
|
|
|
|
expect(last_commit.author_email).to eq(author_email)
|
|
|
|
expect(last_commit.author_name).to eq(author_name)
|
|
|
|
end
|
|
|
|
end
|
2017-03-01 13:08:51 -05:00
|
|
|
|
|
|
|
context 'when the repo is empty' do
|
|
|
|
let!(:project) { create(:project_empty_repo, namespace: user.namespace ) }
|
|
|
|
|
|
|
|
it "creates a new file in project repo" do
|
2017-03-01 15:22:29 -05:00
|
|
|
post api(route("newfile%2Erb"), user), valid_params
|
2017-03-01 13:08:51 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-01 13:08:51 -05:00
|
|
|
expect(json_response['file_path']).to eq('newfile.rb')
|
|
|
|
last_commit = project.repository.commit.raw
|
|
|
|
expect(last_commit.author_email).to eq(user.email)
|
|
|
|
expect(last_commit.author_name).to eq(user.name)
|
|
|
|
end
|
|
|
|
end
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|
|
|
|
|
2013-11-11 07:58:06 -05:00
|
|
|
describe "PUT /projects/:id/repository/files" do
|
2015-06-22 16:00:54 -04:00
|
|
|
let(:valid_params) do
|
2013-11-11 07:58:06 -05:00
|
|
|
{
|
2017-02-02 09:24:30 -05:00
|
|
|
branch: 'master',
|
2013-11-11 07:58:06 -05:00
|
|
|
content: 'puts 8',
|
|
|
|
commit_message: 'Changed file'
|
|
|
|
}
|
2015-06-22 16:00:54 -04:00
|
|
|
end
|
2013-11-11 07:58:06 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "updates existing file in project repo" do
|
2017-03-01 15:22:29 -05:00
|
|
|
put api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-01 15:22:29 -05:00
|
|
|
expect(json_response['file_path']).to eq(CGI.unescape(file_path))
|
2016-09-08 11:40:07 -04:00
|
|
|
last_commit = project.repository.commit.raw
|
|
|
|
expect(last_commit.author_email).to eq(user.email)
|
|
|
|
expect(last_commit.author_name).to eq(user.name)
|
2013-11-11 07:58:06 -05:00
|
|
|
end
|
|
|
|
|
2017-06-06 09:55:29 -04:00
|
|
|
it "returns a 400 bad request if update existing file with stale last commit id" do
|
|
|
|
params_with_stale_id = valid_params.merge(last_commit_id: 'stale')
|
|
|
|
|
|
|
|
put api(route(file_path), user), params_with_stale_id
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2017-06-06 09:55:29 -04:00
|
|
|
expect(json_response['message']).to eq('You are attempting to update a file that has changed since you started editing it.')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "updates existing file in project repo with accepts correct last commit id" do
|
|
|
|
last_commit = Gitlab::Git::Commit
|
|
|
|
.last_for_path(project.repository, 'master', URI.unescape(file_path))
|
|
|
|
params_with_correct_id = valid_params.merge(last_commit_id: last_commit.id)
|
|
|
|
|
|
|
|
put api(route(file_path), user), params_with_correct_id
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-06-06 09:55:29 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns a 400 bad request if no params given" do
|
2017-03-01 15:22:29 -05:00
|
|
|
put api(route(file_path), user)
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2013-11-11 07:58:06 -05:00
|
|
|
end
|
2016-09-08 11:40:07 -04:00
|
|
|
|
|
|
|
context "when specifying an author" do
|
|
|
|
it "updates a file with the specified author" do
|
|
|
|
valid_params.merge!(author_email: author_email, author_name: author_name, content: "New content")
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
put api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-09-08 11:40:07 -04:00
|
|
|
last_commit = project.repository.commit.raw
|
|
|
|
expect(last_commit.author_email).to eq(author_email)
|
|
|
|
expect(last_commit.author_name).to eq(author_name)
|
|
|
|
end
|
|
|
|
end
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|
2013-11-19 09:36:11 -05:00
|
|
|
|
|
|
|
describe "DELETE /projects/:id/repository/files" do
|
2015-06-22 16:00:54 -04:00
|
|
|
let(:valid_params) do
|
2013-11-19 09:36:11 -05:00
|
|
|
{
|
2017-02-02 09:24:30 -05:00
|
|
|
branch: 'master',
|
2013-11-19 09:36:11 -05:00
|
|
|
commit_message: 'Changed file'
|
|
|
|
}
|
2015-06-22 16:00:54 -04:00
|
|
|
end
|
2013-11-19 09:36:11 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "deletes existing file in project repo" do
|
2017-03-01 15:22:29 -05:00
|
|
|
delete api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2013-11-19 09:36:11 -05:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns a 400 bad request if no params given" do
|
2017-03-01 15:22:29 -05:00
|
|
|
delete api(route(file_path), user)
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2013-11-19 09:36:11 -05:00
|
|
|
end
|
|
|
|
|
2017-04-19 20:37:44 -04:00
|
|
|
it "returns a 400 if fails to delete file" do
|
2017-09-01 06:11:59 -04:00
|
|
|
allow_any_instance_of(Repository).to receive(:delete_file).and_raise(Gitlab::Git::CommitError, 'Cannot delete file')
|
2013-11-19 09:36:11 -05:00
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
delete api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2013-11-19 09:36:11 -05:00
|
|
|
end
|
2016-09-08 11:40:07 -04:00
|
|
|
|
|
|
|
context "when specifying an author" do
|
|
|
|
it "removes a file with the specified author" do
|
|
|
|
valid_params.merge!(author_email: author_email, author_name: author_name)
|
|
|
|
|
2017-03-01 15:22:29 -05:00
|
|
|
delete api(route(file_path), user), valid_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2016-09-08 11:40:07 -04:00
|
|
|
end
|
|
|
|
end
|
2013-11-19 09:36:11 -05:00
|
|
|
end
|
2015-08-09 01:35:40 -04:00
|
|
|
|
|
|
|
describe "POST /projects/:id/repository/files with binary file" do
|
2017-03-01 15:22:29 -05:00
|
|
|
let(:file_path) { 'test%2Ebin' }
|
2015-08-09 01:35:40 -04:00
|
|
|
let(:put_params) do
|
|
|
|
{
|
2017-02-02 09:24:30 -05:00
|
|
|
branch: 'master',
|
2015-08-09 01:35:40 -04:00
|
|
|
content: 'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII=',
|
|
|
|
commit_message: 'Binary file with a \n should not be touched',
|
|
|
|
encoding: 'base64'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:get_params) do
|
|
|
|
{
|
2017-05-03 07:22:03 -04:00
|
|
|
ref: 'master'
|
2015-08-09 01:35:40 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2017-03-01 15:22:29 -05:00
|
|
|
post api(route(file_path), user), put_params
|
2015-08-09 01:35:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "remains unchanged" do
|
2017-03-01 15:22:29 -05:00
|
|
|
get api(route(file_path), user), get_params
|
2016-09-08 11:40:07 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-03-01 15:22:29 -05:00
|
|
|
expect(json_response['file_path']).to eq(CGI.unescape(file_path))
|
|
|
|
expect(json_response['file_name']).to eq(CGI.unescape(file_path))
|
2015-08-09 01:35:40 -04:00
|
|
|
expect(json_response['content']).to eq(put_params[:content])
|
|
|
|
end
|
|
|
|
end
|
2013-11-07 11:53:35 -05:00
|
|
|
end
|