gitlab-org--gitlab-foss/spec/requests/git_http_spec.rb

296 lines
8.9 KiB
Ruby
Raw Normal View History

2015-02-24 15:05:39 +00:00
require "spec_helper"
2016-03-23 13:04:09 +00:00
describe 'Git HTTP requests', lib: true do
2015-02-24 15:05:39 +00:00
let(:user) { create(:user) }
let(:project) { create(:project) }
2016-03-24 16:44:10 +00:00
it "gives WWW-Authenticate hints" do
clone_get('doesnt/exist.git')
expect(response.header['WWW-Authenticate']).to start_with('Basic ')
end
2016-03-24 16:38:30 +00:00
context "when the project doesn't exist" do
context "when no authentication is provided" do
2016-04-06 16:58:19 +00:00
it "responds with status 401 (no project existence information leak)" do
2016-03-24 16:38:30 +00:00
download('doesnt/exist.git') do |response|
expect(response.status).to eq(401)
2015-02-24 15:05:39 +00:00
end
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when username and password are provided" do
context "when authentication fails" do
it "responds with status 401" do
download('doesnt/exist.git', user: user.username, password: "nope") do |response|
expect(response.status).to eq(401)
2015-02-24 15:05:39 +00:00
end
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when authentication succeeds" do
it "responds with status 404" do
download('/doesnt/exist.git', user: user.username, password: user.password) do |response|
expect(response.status).to eq(404)
2015-02-24 15:05:39 +00:00
end
end
end
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when the Wiki for a project exists" do
it "responds with the right project" do
wiki = ProjectWiki.new(project)
project.update_attribute(:visibility_level, Project::PUBLIC)
2015-10-22 21:16:37 +00:00
2016-03-24 16:38:30 +00:00
download("/#{wiki.repository.path_with_namespace}.git") do |response|
json_body = ActiveSupport::JSON.decode(response.body)
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(200)
expect(json_body['RepoPath']).to include(wiki.repository.path_with_namespace)
2015-10-22 21:16:37 +00:00
end
end
2016-03-24 16:38:30 +00:00
end
2015-10-22 21:16:37 +00:00
2016-03-24 16:38:30 +00:00
context "when the project exists" do
let(:path) { "#{project.path_with_namespace}.git" }
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when the project is public" do
before do
project.update_attribute(:visibility_level, Project::PUBLIC)
end
2016-03-24 16:44:13 +00:00
2016-03-24 17:58:29 +00:00
it "downloads get status 200" do
2016-04-22 12:04:36 +00:00
download(path, {}) do |response|
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(200)
end
2016-03-24 16:38:30 +00:00
end
2016-03-24 16:44:13 +00:00
2016-03-24 17:58:29 +00:00
it "uploads get status 401" do
2016-04-22 12:04:36 +00:00
upload(path, {}) do |response|
2016-03-24 17:58:29 +00:00
expect(response.status).to eq(401)
end
end
2016-04-06 16:58:19 +00:00
2016-03-24 17:58:29 +00:00
context "with correct credentials" do
let(:env) { { user: user.username, password: user.password } }
it "uploads get status 200 (because Git hooks do the real check)" do
upload(path, env) do |response|
expect(response.status).to eq(200)
end
end
2016-04-06 16:58:19 +00:00
2016-03-24 17:58:29 +00:00
context 'but git-receive-pack is disabled' do
it "responds with status 404" do
allow(Gitlab.config.gitlab_shell).to receive(:receive_pack).and_return(false)
2016-04-06 16:58:19 +00:00
2016-03-24 17:58:29 +00:00
upload(path, env) do |response|
expect(response.status).to eq(404)
end
end
end
end
2016-03-24 16:38:30 +00:00
context 'but git-upload-pack is disabled' do
it "responds with status 404" do
allow(Gitlab.config.gitlab_shell).to receive(:upload_pack).and_return(false)
2016-04-22 12:04:36 +00:00
download(path, {}) do |response|
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(404)
end
2015-02-24 15:05:39 +00:00
end
2016-03-24 16:38:30 +00:00
end
end
2016-03-24 16:38:30 +00:00
context "when the project is private" do
before do
project.update_attribute(:visibility_level, Project::PRIVATE)
end
context "when no authentication is provided" do
2016-04-06 16:58:19 +00:00
it "responds with status 401 to downloads" do
2016-04-22 12:04:36 +00:00
download(path, {}) do |response|
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(401)
end
end
2016-04-06 16:58:19 +00:00
it "responds with status 401 to uploads" do
2016-04-22 12:04:36 +00:00
upload(path, {}) do |response|
2016-04-06 16:58:19 +00:00
expect(response.status).to eq(401)
end
end
2015-02-24 15:05:39 +00:00
end
2016-03-24 16:38:30 +00:00
context "when username and password are provided" do
let(:env) { { user: user.username, password: 'nope' } }
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when authentication fails" do
2015-02-24 15:05:39 +00:00
it "responds with status 401" do
download(path, env) do |response|
expect(response.status).to eq(401)
end
2015-02-24 15:05:39 +00:00
end
2016-03-24 16:38:30 +00:00
context "when the user is IP banned" do
2015-02-24 15:05:39 +00:00
it "responds with status 401" do
2016-03-24 16:38:30 +00:00
expect(Rack::Attack::Allow2Ban).to receive(:filter).and_return(true)
allow_any_instance_of(Rack::Request).to receive(:ip).and_return('1.2.3.4')
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
clone_get(path, env)
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(401)
end
2015-02-24 15:05:39 +00:00
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when authentication succeeds" do
let(:env) { { user: user.username, password: user.password } }
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
context "when the user has access to the project" do
before do
project.team << [user, :master]
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when the user is blocked" do
it "responds with status 404" do
user.block
project.team << [user, :master]
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
download(path, env) do |response|
expect(response.status).to eq(404)
2015-02-24 15:05:39 +00:00
end
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when the user isn't blocked" do
2016-04-06 16:58:19 +00:00
it "downloads get status 200" do
2016-03-24 16:38:30 +00:00
expect(Rack::Attack::Allow2Ban).to receive(:reset)
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
clone_get(path, env)
2016-03-24 15:21:19 +00:00
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(200)
2015-02-24 15:05:39 +00:00
end
2016-04-06 16:58:19 +00:00
2016-03-24 17:58:29 +00:00
it "uploads get status 200" do
upload(path, env) do |response|
expect(response.status).to eq(200)
2016-04-06 16:58:19 +00:00
end
2016-03-24 17:58:29 +00:00
end
2016-03-24 16:38:30 +00:00
end
2016-03-24 16:38:30 +00:00
context "when blank password attempts follow a valid login" do
def attempt_login(include_password)
password = include_password ? user.password : ""
clone_get path, user: user.username, password: password
response.status
end
2016-03-23 13:04:09 +00:00
2016-03-24 16:38:30 +00:00
it "repeated attempts followed by successful attempt" do
options = Gitlab.config.rack_attack.git_basic_auth
maxretry = options[:maxretry] - 1
ip = '1.2.3.4'
2016-03-23 13:04:09 +00:00
2016-03-24 16:38:30 +00:00
allow_any_instance_of(Rack::Request).to receive(:ip).and_return(ip)
Rack::Attack::Allow2Ban.reset(ip, options)
2016-03-24 16:38:30 +00:00
maxretry.times.each do
expect(attempt_login(false)).to eq(401)
end
2016-03-24 16:38:30 +00:00
expect(attempt_login(true)).to eq(200)
expect(Rack::Attack::Allow2Ban.banned?(ip)).to be_falsey
2016-03-23 13:04:09 +00:00
2016-03-24 16:38:30 +00:00
maxretry.times.each do
expect(attempt_login(false)).to eq(401)
end
2016-03-24 16:38:30 +00:00
Rack::Attack::Allow2Ban.reset(ip, options)
end
2015-02-24 15:05:39 +00:00
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when the user doesn't have access to the project" do
2016-03-24 17:58:29 +00:00
it "downloads get status 404" do
2016-03-24 16:38:30 +00:00
download(path, user: user.username, password: user.password) do |response|
expect(response.status).to eq(404)
2015-02-24 15:05:39 +00:00
end
end
2016-04-06 16:58:19 +00:00
2016-03-24 17:58:29 +00:00
it "uploads get status 200 (because Git hooks do the real check)" do
upload(path, user: user.username, password: user.password) do |response|
expect(response.status).to eq(200)
end
end
2015-02-24 15:05:39 +00:00
end
end
2016-03-24 16:38:30 +00:00
end
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
context "when a gitlab ci token is provided" do
2016-04-06 16:58:19 +00:00
let(:token) { 123 }
let(:project) { FactoryGirl.create :empty_project }
before do
2016-03-24 16:38:30 +00:00
project.update_attributes(runners_token: token, builds_enabled: true)
2016-04-06 16:58:19 +00:00
end
2015-02-24 15:05:39 +00:00
2016-04-06 16:58:19 +00:00
it "downloads get status 200" do
2016-03-24 16:38:30 +00:00
clone_get "#{project.path_with_namespace}.git", user: 'gitlab-ci-token', password: token
2015-02-24 15:05:39 +00:00
2016-03-24 16:38:30 +00:00
expect(response.status).to eq(200)
2015-02-24 15:05:39 +00:00
end
2016-04-06 16:58:19 +00:00
it "uploads get status 401 (no project existence information leak)" do
push_get "#{project.path_with_namespace}.git", user: 'gitlab-ci-token', password: token
expect(response.status).to eq(401)
end
2015-02-24 15:05:39 +00:00
end
end
end
2016-03-24 17:58:29 +00:00
def clone_get(project, options={})
get "/#{project}/info/refs", { service: 'git-upload-pack' }, auth_env(*options.values_at(:user, :password))
end
2016-03-24 15:21:19 +00:00
def clone_post(project, options={})
post "/#{project}/git-upload-pack", {}, auth_env(*options.values_at(:user, :password))
2016-03-23 13:04:09 +00:00
end
2016-03-24 17:58:29 +00:00
def push_get(project, options={})
get "/#{project}/info/refs", { service: 'git-receive-pack' }, auth_env(*options.values_at(:user, :password))
end
def push_post(project, options={})
post "/#{project}/git-receive-pack", {}, auth_env(*options.values_at(:user, :password))
end
def download(project, user: nil, password: nil)
2016-04-06 15:23:16 +00:00
args = [project, { user: user, password: password }]
clone_get *args
yield response
2016-03-24 15:21:19 +00:00
clone_post *args
yield response
end
2016-03-24 15:21:19 +00:00
2016-03-24 17:58:29 +00:00
def upload(project, user: nil, password: nil)
2016-04-06 15:23:16 +00:00
args = [project, { user: user, password: password }]
2016-03-24 17:58:29 +00:00
push_get *args
yield response
push_post *args
yield response
end
def auth_env(user, password)
if user && password
{ 'HTTP_AUTHORIZATION' => ActionController::HttpAuthentication::Basic.encode_credentials(user, password) }
else
{}
end
end
2015-02-24 15:05:39 +00:00
end