Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
078f11a6
Commit
078f11a6
authored
Feb 27, 2019
by
Jacob Vosmaer
Committed by
Douwe Maan
Feb 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare test suite for switch to Gitaly-embedded Git hooks
parent
1b10b77b
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
17 deletions
+18
-17
config/gitlab.yml.example
config/gitlab.yml.example
+0
-2
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+1
-1
lib/gitlab/shell.rb
lib/gitlab/shell.rb
+4
-4
lib/tasks/gitlab/info.rake
lib/tasks/gitlab/info.rake
+2
-2
spec/lib/gitlab/git/repository_spec.rb
spec/lib/gitlab/git/repository_spec.rb
+2
-2
spec/lib/gitlab/shell_spec.rb
spec/lib/gitlab/shell_spec.rb
+0
-1
spec/support/helpers/test_env.rb
spec/support/helpers/test_env.rb
+8
-4
spec/tasks/gitlab/shell_rake_spec.rb
spec/tasks/gitlab/shell_rake_spec.rb
+1
-1
No files found.
config/gitlab.yml.example
View file @
078f11a6
...
...
@@ -662,7 +662,6 @@ production: &base
## GitLab Shell settings
gitlab_shell:
path: /home/git/gitlab-shell/
hooks_path: /home/git/gitlab-shell/hooks/
# File that contains the secret key for verifying access for gitlab-shell.
# Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app).
...
...
@@ -820,7 +819,6 @@ test:
path: tmp/tests/backups
gitlab_shell:
path: tmp/tests/gitlab-shell/
hooks_path: tmp/tests/gitlab-shell/hooks/
issues_tracker:
redmine:
title: "Redmine"
...
...
config/initializers/1_settings.rb
View file @
078f11a6
...
...
@@ -337,7 +337,7 @@ Settings['sidekiq']['log_format'] ||= 'default'
#
Settings
[
'gitlab_shell'
]
||=
Settingslogic
.
new
({})
Settings
.
gitlab_shell
[
'path'
]
=
Settings
.
absolute
(
Settings
.
gitlab_shell
[
'path'
]
||
Settings
.
gitlab
[
'user_home'
]
+
'/gitlab-shell/'
)
Settings
.
gitlab_shell
[
'hooks_path'
]
=
Settings
.
absolute
(
Settings
.
gitlab_shell
[
'hooks_path'
]
||
Settings
.
gitlab
[
'user_home'
]
+
'/gitlab-shell/hooks/'
)
Settings
.
gitlab_shell
[
'hooks_path'
]
=
:deprecated_use_gitlab_shell_path_instead
Settings
.
gitlab_shell
[
'secret_file'
]
||=
Rails
.
root
.
join
(
'.gitlab_shell_secret'
)
Settings
.
gitlab_shell
[
'receive_pack'
]
=
true
if
Settings
.
gitlab_shell
[
'receive_pack'
].
nil?
Settings
.
gitlab_shell
[
'upload_pack'
]
=
true
if
Settings
.
gitlab_shell
[
'upload_pack'
].
nil?
...
...
lib/gitlab/shell.rb
View file @
078f11a6
...
...
@@ -340,16 +340,16 @@ module Gitlab
end
# rubocop: enable CodeReuse/ActiveRecord
def
hooks_path
File
.
join
(
gitlab_shell_path
,
'hooks'
)
end
protected
def
gitlab_shell_path
File
.
expand_path
(
Gitlab
.
config
.
gitlab_shell
.
path
)
end
def
gitlab_shell_hooks_path
File
.
expand_path
(
Gitlab
.
config
.
gitlab_shell
.
hooks_path
)
end
def
gitlab_shell_user_home
File
.
expand_path
(
"~
#{
Gitlab
.
config
.
gitlab_shell
.
ssh_user
}
"
)
end
...
...
lib/tasks/gitlab/info.rake
View file @
078f11a6
...
...
@@ -58,7 +58,7 @@ namespace :gitlab do
puts
"Omniauth Providers:
#{
omniauth_providers
.
join
(
', '
)
}
"
if
Gitlab
::
Auth
.
omniauth_enabled?
# check Gitolite version
gitlab_shell_version_file
=
"
#{
Gitlab
.
config
.
gitlab_shell
.
hooks_path
}
/..
/VERSION"
gitlab_shell_version_file
=
"
#{
Gitlab
.
config
.
gitlab_shell
.
path
}
/VERSION"
if
File
.
readable?
(
gitlab_shell_version_file
)
gitlab_shell_version
=
File
.
read
(
gitlab_shell_version_file
)
end
...
...
@@ -72,7 +72,7 @@ namespace :gitlab do
puts
"-
#{
name
}
:
\t
#{
repository_storage
.
legacy_disk_path
}
"
end
end
puts
"
Hooks:
\t\t
#{
Gitlab
.
config
.
gitlab_shell
.
hooks_
path
}
"
puts
"
GitLab Shell path:
\t\t
#{
Gitlab
.
config
.
gitlab_shell
.
path
}
"
puts
"Git:
\t\t
#{
Gitlab
.
config
.
git
.
bin_path
}
"
end
end
...
...
spec/lib/gitlab/git/repository_spec.rb
View file @
078f11a6
...
...
@@ -31,7 +31,7 @@ describe Gitlab::Git::Repository, :seed_helper do
describe
'.create_hooks'
do
let
(
:repo_path
)
{
File
.
join
(
storage_path
,
'hook-test.git'
)
}
let
(
:hooks_dir
)
{
File
.
join
(
repo_path
,
'hooks'
)
}
let
(
:target_hooks_dir
)
{
Gitlab
.
config
.
gitlab_shell
.
hooks_path
}
let
(
:target_hooks_dir
)
{
Gitlab
::
Shell
.
new
.
hooks_path
}
let
(
:existing_target
)
{
File
.
join
(
repo_path
,
'foobar'
)
}
before
do
...
...
@@ -1945,7 +1945,7 @@ describe Gitlab::Git::Repository, :seed_helper do
imported_repo
.
create_from_bundle
(
valid_bundle_path
)
hooks_path
=
Gitlab
::
GitalyClient
::
StorageSettings
.
allow_disk_access
{
File
.
join
(
imported_repo
.
path
,
'hooks'
)
}
expect
(
File
.
readlink
(
hooks_path
)).
to
eq
(
Gitlab
.
config
.
gitlab_shell
.
hooks_path
)
expect
(
File
.
readlink
(
hooks_path
)).
to
eq
(
Gitlab
::
Shell
.
new
.
hooks_path
)
end
it
'raises an error if the bundle is an attempted malicious payload'
do
...
...
spec/lib/gitlab/shell_spec.rb
View file @
078f11a6
...
...
@@ -393,7 +393,6 @@ describe Gitlab::Shell do
before
do
allow
(
Gitlab
.
config
.
gitlab_shell
).
to
receive
(
:path
).
and_return
(
gitlab_shell_path
)
allow
(
Gitlab
.
config
.
gitlab_shell
).
to
receive
(
:hooks_path
).
and_return
(
gitlab_shell_hooks_path
)
allow
(
Gitlab
.
config
.
gitlab_shell
).
to
receive
(
:git_timeout
).
and_return
(
800
)
end
...
...
spec/support/helpers/test_env.rb
View file @
078f11a6
...
...
@@ -147,12 +147,15 @@ module TestEnv
version:
Gitlab
::
Shell
.
version_required
,
task:
'gitlab:shell:install'
)
create_fake_git_hooks
# gitlab-shell hooks don't work in our test environment because they try to make internal API calls
sabotage_gitlab_shell_hooks
end
def
create_fake_git_hooks
# gitlab-shell hooks don't work in our test environment because they try to make internal API calls
hooks_dir
=
File
.
join
(
Gitlab
.
config
.
gitlab_shell
.
path
,
'hooks'
)
def
sabotage_gitlab_shell_hooks
create_fake_git_hooks
(
Gitlab
::
Shell
.
new
.
hooks_path
)
end
def
create_fake_git_hooks
(
hooks_dir
)
%w[pre-receive post-receive update]
.
each
do
|
hook
|
File
.
open
(
File
.
join
(
hooks_dir
,
hook
),
'w'
,
0755
)
{
|
f
|
f
.
puts
'#!/bin/sh'
}
end
...
...
@@ -169,6 +172,7 @@ module TestEnv
task:
"gitlab:gitaly:install[
#{
install_gitaly_args
}
]"
)
do
Gitlab
::
SetupHelper
.
create_gitaly_configuration
(
gitaly_dir
,
{
'default'
=>
repos_path
},
force:
true
)
create_fake_git_hooks
(
File
.
join
(
gitaly_dir
,
'ruby/git-hooks'
))
start_gitaly
(
gitaly_dir
)
end
end
...
...
spec/tasks/gitlab/shell_rake_spec.rb
View file @
078f11a6
...
...
@@ -8,7 +8,7 @@ describe 'gitlab:shell rake tasks' do
end
after
do
TestEnv
.
create_fake_git
_hooks
TestEnv
.
sabotage_gitlab_shell
_hooks
end
describe
'install task'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment