summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-05-22 11:28:51 -0700
committerMichael Kozono <mkozono@gmail.com>2017-06-05 05:32:26 -0700
commite8972c11904c31fc614a31483098814adc38c2ac (patch)
tree9be9df9741598627ff8ac89a934ec23ef878d3d8 /spec
parent23d37382dabe3f7c7f2e11df2731de8e939e0cab (diff)
downloadgitlab-ce-e8972c11904c31fc614a31483098814adc38c2ac.tar.gz
Clarify error messages
And refactor to self-document a little better.
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/gitlab/git_access_spec.rb4
-rw-r--r--spec/requests/git_http_spec.rb6
2 files changed, 5 insertions, 5 deletions
diff --git a/spec/lib/gitlab/git_access_spec.rb b/spec/lib/gitlab/git_access_spec.rb
index 10a7222c2b6..36d1d777583 100644
--- a/spec/lib/gitlab/git_access_spec.rb
+++ b/spec/lib/gitlab/git_access_spec.rb
@@ -170,7 +170,7 @@ describe Gitlab::GitAccess, lib: true do
end
context 'when calling git-upload-pack' do
- it { expect { pull_access_check }.to raise_unauthorized('The command "git-upload-pack" is not allowed.') }
+ it { expect { pull_access_check }.to raise_unauthorized('Pulling over HTTP is not allowed.') }
end
context 'when calling git-receive-pack' do
@@ -184,7 +184,7 @@ describe Gitlab::GitAccess, lib: true do
end
context 'when calling git-receive-pack' do
- it { expect { push_access_check }.to raise_unauthorized('The command "git-receive-pack" is not allowed.') }
+ it { expect { push_access_check }.to raise_unauthorized('Pushing over HTTP is not allowed.') }
end
context 'when calling git-upload-pack' do
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb
index ab7c56fcdf0..f018b48ceb2 100644
--- a/spec/requests/git_http_spec.rb
+++ b/spec/requests/git_http_spec.rb
@@ -254,7 +254,7 @@ describe 'Git HTTP requests', lib: true do
it 'rejects pushes with 403 Forbidden' do
upload(path, env) do |response|
expect(response).to have_http_status(:forbidden)
- expect(response.body).to eq(git_access_error(:receive_pack_disabled_in_config))
+ expect(response.body).to eq(git_access_error(:receive_pack_disabled_over_http))
end
end
end
@@ -265,7 +265,7 @@ describe 'Git HTTP requests', lib: true do
download(path, env) do |response|
expect(response).to have_http_status(:forbidden)
- expect(response.body).to eq(git_access_error(:upload_pack_disabled_in_config))
+ expect(response.body).to eq(git_access_error(:upload_pack_disabled_over_http))
end
end
end
@@ -541,7 +541,7 @@ describe 'Git HTTP requests', lib: true do
context 'when the repo does not exist' do
let(:project) { create(:empty_project) }
-
+
it 'rejects pulls with 403 Forbidden' do
clone_get path, env