2013-04-11 16:54:20 -04:00
|
|
|
require 'rspec/mocks'
|
|
|
|
|
2013-04-01 07:39:19 -04:00
|
|
|
module TestEnv
|
|
|
|
extend self
|
|
|
|
|
2014-09-29 10:50:20 -04:00
|
|
|
# When developing the seed repository, comment out the branch you will modify.
|
|
|
|
BRANCH_SHA = {
|
2017-06-26 08:29:01 -04:00
|
|
|
'signed-commits' => '5d4a1cb',
|
2016-09-27 11:39:29 -04:00
|
|
|
'not-merged-branch' => 'b83d6e3',
|
|
|
|
'branch-merged' => '498214d',
|
2016-08-05 07:15:06 -04:00
|
|
|
'empty-branch' => '7efb185',
|
2016-08-29 07:43:09 -04:00
|
|
|
'ends-with.json' => '98b0d8b',
|
2016-08-05 07:15:06 -04:00
|
|
|
'flatten-dir' => 'e56497b',
|
|
|
|
'feature' => '0b4bc9a',
|
|
|
|
'feature_conflict' => 'bb5206f',
|
|
|
|
'fix' => '48f0be4',
|
|
|
|
'improve/awesome' => '5937ac0',
|
|
|
|
'markdown' => '0ed8c6c',
|
|
|
|
'lfs' => 'be93687',
|
2016-09-27 11:39:29 -04:00
|
|
|
'master' => 'b83d6e3',
|
2016-10-15 17:49:20 -04:00
|
|
|
'merge-test' => '5937ac0',
|
2016-08-05 07:15:06 -04:00
|
|
|
"'test'" => 'e56497b',
|
|
|
|
'orphaned-branch' => '45127a9',
|
|
|
|
'binary-encoding' => '7b1cf43',
|
|
|
|
'gitattributes' => '5a62481',
|
|
|
|
'expand-collapse-diffs' => '4842455',
|
2016-11-10 12:24:12 -05:00
|
|
|
'symlink-expand-diff' => '81e6355',
|
2016-08-05 07:15:06 -04:00
|
|
|
'expand-collapse-files' => '025db92',
|
|
|
|
'expand-collapse-lines' => '238e82d',
|
|
|
|
'video' => '8879059',
|
2017-04-11 08:06:45 -04:00
|
|
|
'add-balsamiq-file' => 'b89b56d',
|
2016-08-05 07:15:06 -04:00
|
|
|
'crlf-diff' => '5938907',
|
2016-09-01 11:20:29 -04:00
|
|
|
'conflict-start' => '824be60',
|
2016-08-05 07:15:06 -04:00
|
|
|
'conflict-resolvable' => '1450cd6',
|
|
|
|
'conflict-binary-file' => '259a6fb',
|
2016-09-01 11:20:29 -04:00
|
|
|
'conflict-contains-conflict-markers' => '78a3086',
|
2016-08-05 07:15:06 -04:00
|
|
|
'conflict-missing-side' => 'eb227b3',
|
2016-08-23 11:37:14 -04:00
|
|
|
'conflict-non-utf8' => 'd0a293c',
|
2016-08-05 07:15:06 -04:00
|
|
|
'conflict-too-large' => '39fa04f',
|
2016-12-15 15:48:26 -05:00
|
|
|
'deleted-image-test' => '6c17798',
|
2017-02-01 09:28:04 -05:00
|
|
|
'wip' => 'b9238ee',
|
2017-02-24 07:13:42 -05:00
|
|
|
'csv' => '3dd0896',
|
2017-04-11 16:25:10 -04:00
|
|
|
'v1.1.0' => 'b83d6e3',
|
2017-05-30 11:00:36 -04:00
|
|
|
'add-ipython-files' => '93ee732',
|
2017-07-25 12:57:02 -04:00
|
|
|
'add-pdf-file' => 'e774ebd',
|
|
|
|
'add-pdf-text-binary' => '79faa7b'
|
2017-02-21 18:32:18 -05:00
|
|
|
}.freeze
|
2017-03-30 12:21:19 -04:00
|
|
|
|
2015-07-20 19:55:45 -04:00
|
|
|
# gitlab-test-fork is a fork of gitlab-fork, but we don't necessarily
|
|
|
|
# need to keep all the branches in sync.
|
|
|
|
# We currently only need a subset of the branches
|
|
|
|
FORKED_BRANCH_SHA = {
|
2016-08-29 07:43:09 -04:00
|
|
|
'add-submodule-version-bump' => '3f547c0',
|
|
|
|
'master' => '5937ac0',
|
|
|
|
'remove-submodule' => '2a33e0c',
|
|
|
|
'conflict-resolvable-fork' => '404fa3f'
|
2017-02-21 18:32:18 -05:00
|
|
|
}.freeze
|
2015-04-13 01:27:45 -04:00
|
|
|
|
2017-06-06 10:23:40 -04:00
|
|
|
TMP_TEST_PATH = Rails.root.join('tmp', 'tests', '**')
|
|
|
|
|
2013-04-01 07:39:19 -04:00
|
|
|
# Test environment
|
|
|
|
#
|
2014-07-31 08:39:01 -04:00
|
|
|
# See gitlab.yml.example test section for paths
|
2013-04-01 07:39:19 -04:00
|
|
|
#
|
2013-04-10 16:28:42 -04:00
|
|
|
def init(opts = {})
|
2017-08-02 13:01:14 -04:00
|
|
|
Rake.application.rake_require 'tasks/gitlab/helpers'
|
|
|
|
Rake::Task.define_task :environment
|
2013-04-11 04:50:58 -04:00
|
|
|
# Disable mailer for spinach tests
|
|
|
|
disable_mailer if opts[:mailer] == false
|
|
|
|
|
2015-02-03 20:50:30 -05:00
|
|
|
clean_test_path
|
2014-07-31 14:01:42 -04:00
|
|
|
|
2014-07-31 12:35:07 -04:00
|
|
|
# Setup GitLab shell for test instance
|
|
|
|
setup_gitlab_shell
|
|
|
|
|
2017-07-06 08:45:29 -04:00
|
|
|
setup_gitaly
|
2017-03-28 21:23:45 -04:00
|
|
|
|
2014-07-31 08:39:01 -04:00
|
|
|
# Create repository for FactoryGirl.create(:project)
|
|
|
|
setup_factory_repo
|
2015-05-02 16:01:33 -04:00
|
|
|
|
2015-04-13 01:27:45 -04:00
|
|
|
# Create repository for FactoryGirl.create(:forked_project_with_submodules)
|
|
|
|
setup_forked_repo
|
2013-04-25 10:15:33 -04:00
|
|
|
end
|
|
|
|
|
2017-03-28 21:23:45 -04:00
|
|
|
def cleanup
|
|
|
|
stop_gitaly
|
|
|
|
end
|
|
|
|
|
2013-06-07 16:39:32 -04:00
|
|
|
def disable_mailer
|
2017-06-21 09:48:12 -04:00
|
|
|
allow_any_instance_of(NotificationService).to receive(:mailer)
|
|
|
|
.and_return(double.as_null_object)
|
2013-04-25 10:15:33 -04:00
|
|
|
end
|
2013-11-07 11:53:35 -05:00
|
|
|
|
2013-06-07 16:39:32 -04:00
|
|
|
def enable_mailer
|
2017-06-21 09:48:12 -04:00
|
|
|
allow_any_instance_of(NotificationService).to receive(:mailer)
|
|
|
|
.and_call_original
|
2013-04-25 10:15:33 -04:00
|
|
|
end
|
|
|
|
|
2015-08-14 07:27:51 -04:00
|
|
|
def disable_pre_receive
|
2016-06-17 01:51:17 -04:00
|
|
|
allow_any_instance_of(Gitlab::Git::Hook).to receive(:trigger).and_return([true, nil])
|
2015-08-14 07:27:51 -04:00
|
|
|
end
|
|
|
|
|
2015-02-03 20:50:30 -05:00
|
|
|
# Clean /tmp/tests
|
|
|
|
#
|
|
|
|
# Keeps gitlab-shell and gitlab-test
|
|
|
|
def clean_test_path
|
2017-06-06 10:23:40 -04:00
|
|
|
Dir[TMP_TEST_PATH].each do |entry|
|
2017-03-28 21:23:45 -04:00
|
|
|
unless File.basename(entry) =~ /\A(gitaly|gitlab-(shell|test|test_bare|test-fork|test-fork_bare))\z/
|
2015-02-03 20:50:30 -05:00
|
|
|
FileUtils.rm_rf(entry)
|
|
|
|
end
|
|
|
|
end
|
2017-03-28 13:27:44 -04:00
|
|
|
|
|
|
|
FileUtils.mkdir_p(repos_path)
|
|
|
|
FileUtils.mkdir_p(backup_path)
|
|
|
|
FileUtils.mkdir_p(pages_path)
|
2015-02-03 20:50:30 -05:00
|
|
|
end
|
|
|
|
|
2017-06-06 10:23:40 -04:00
|
|
|
def clean_gitlab_test_path
|
|
|
|
Dir[TMP_TEST_PATH].each do |entry|
|
|
|
|
if File.basename(entry) =~ /\A(gitlab-(test|test_bare|test-fork|test-fork_bare))\z/
|
|
|
|
FileUtils.rm_rf(entry)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-31 08:39:01 -04:00
|
|
|
def setup_gitlab_shell
|
2017-08-02 05:39:16 -04:00
|
|
|
gitlab_shell_dir = File.dirname(Gitlab.config.gitlab_shell.path)
|
|
|
|
gitlab_shell_needs_update = component_needs_update?(gitlab_shell_dir,
|
2017-06-19 17:06:17 -04:00
|
|
|
Gitlab::Shell.version_required)
|
|
|
|
|
2017-08-02 13:01:14 -04:00
|
|
|
Rake.application.rake_require 'tasks/gitlab/shell'
|
2017-08-02 05:39:16 -04:00
|
|
|
unless !gitlab_shell_needs_update || Rake.application.invoke_task('gitlab:shell:install')
|
|
|
|
FileUtils.rm_rf(gitlab_shell_dir)
|
|
|
|
raise "Can't install gitlab-shell"
|
2015-02-03 20:50:30 -05:00
|
|
|
end
|
2013-04-25 10:15:33 -04:00
|
|
|
end
|
2013-04-01 07:39:19 -04:00
|
|
|
|
2017-03-28 21:23:45 -04:00
|
|
|
def setup_gitaly
|
2017-05-10 08:18:59 -04:00
|
|
|
socket_path = Gitlab::GitalyClient.address('default').sub(/\Aunix:/, '')
|
2017-03-28 21:23:45 -04:00
|
|
|
gitaly_dir = File.dirname(socket_path)
|
2017-08-03 06:15:08 -04:00
|
|
|
|
|
|
|
if gitaly_dir_stale?(gitaly_dir)
|
|
|
|
puts "rm -rf #{gitaly_dir}"
|
|
|
|
FileUtils.rm_rf(gitaly_dir)
|
|
|
|
end
|
|
|
|
|
2017-06-19 17:06:17 -04:00
|
|
|
gitaly_needs_update = component_needs_update?(gitaly_dir,
|
|
|
|
Gitlab::GitalyClient.expected_server_version)
|
2017-03-28 21:23:45 -04:00
|
|
|
|
2017-08-02 13:01:14 -04:00
|
|
|
Rake.application.rake_require 'tasks/gitlab/gitaly'
|
2017-08-02 05:39:16 -04:00
|
|
|
unless !gitaly_needs_update || Rake.application.invoke_task("gitlab:gitaly:install[#{gitaly_dir}]")
|
|
|
|
FileUtils.rm_rf(gitaly_dir)
|
|
|
|
raise "Can't install gitaly"
|
2017-03-28 21:23:45 -04:00
|
|
|
end
|
|
|
|
|
2017-04-10 17:33:41 -04:00
|
|
|
start_gitaly(gitaly_dir)
|
2017-03-28 21:23:45 -04:00
|
|
|
end
|
|
|
|
|
2017-08-03 06:15:08 -04:00
|
|
|
def gitaly_dir_stale?(dir)
|
|
|
|
gitaly_executable = File.join(dir, 'gitaly')
|
|
|
|
!File.exist?(gitaly_executable) || (File.mtime(gitaly_executable) < File.mtime(Rails.root.join('GITALY_SERVER_VERSION')))
|
|
|
|
end
|
|
|
|
|
2017-04-10 17:33:41 -04:00
|
|
|
def start_gitaly(gitaly_dir)
|
2017-07-31 09:17:14 -04:00
|
|
|
if ENV['CI'].present?
|
|
|
|
# Gitaly has been spawned outside this process already
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
spawn_script = Rails.root.join('scripts/gitaly-test-spawn').to_s
|
|
|
|
@gitaly_pid = Bundler.with_original_env { IO.popen([spawn_script], &:read).to_i }
|
2017-03-28 21:23:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def stop_gitaly
|
|
|
|
return unless @gitaly_pid
|
|
|
|
|
|
|
|
Process.kill('KILL', @gitaly_pid)
|
|
|
|
end
|
|
|
|
|
2014-07-31 08:39:01 -04:00
|
|
|
def setup_factory_repo
|
2015-04-13 01:27:45 -04:00
|
|
|
setup_repo(factory_repo_path, factory_repo_path_bare, factory_repo_name,
|
|
|
|
BRANCH_SHA)
|
|
|
|
end
|
|
|
|
|
|
|
|
# This repo has a submodule commit that is not present in the main test
|
|
|
|
# repository.
|
|
|
|
def setup_forked_repo
|
|
|
|
setup_repo(forked_repo_path, forked_repo_path_bare, forked_repo_name,
|
|
|
|
FORKED_BRANCH_SHA)
|
|
|
|
end
|
|
|
|
|
2017-05-10 11:31:50 -04:00
|
|
|
def setup_repo(repo_path, repo_path_bare, repo_name, refs)
|
2015-04-13 01:27:45 -04:00
|
|
|
clone_url = "https://gitlab.com/gitlab-org/#{repo_name}.git"
|
2013-04-25 10:15:33 -04:00
|
|
|
|
2015-04-13 01:27:45 -04:00
|
|
|
unless File.directory?(repo_path)
|
2015-11-03 17:10:38 -05:00
|
|
|
system(*%W(#{Gitlab.config.git.bin_path} clone -q #{clone_url} #{repo_path}))
|
2014-09-29 10:50:20 -04:00
|
|
|
end
|
|
|
|
|
2017-05-10 11:31:50 -04:00
|
|
|
set_repo_refs(repo_path, refs)
|
2014-09-29 10:50:20 -04:00
|
|
|
|
2017-03-31 02:46:51 -04:00
|
|
|
unless File.directory?(repo_path_bare)
|
|
|
|
# We must copy bare repositories because we will push to them.
|
|
|
|
system(git_env, *%W(#{Gitlab.config.git.bin_path} clone -q --bare #{repo_path} #{repo_path_bare}))
|
|
|
|
end
|
2013-11-12 09:11:46 -05:00
|
|
|
end
|
|
|
|
|
2017-05-10 11:31:50 -04:00
|
|
|
def copy_repo(project, bare_repo:, refs:)
|
2017-02-23 18:55:01 -05:00
|
|
|
target_repo_path = File.expand_path(project.repository_storage_path + "/#{project.full_path}.git")
|
2014-07-31 14:30:35 -04:00
|
|
|
FileUtils.mkdir_p(target_repo_path)
|
2017-05-10 11:31:50 -04:00
|
|
|
FileUtils.cp_r("#{File.expand_path(bare_repo)}/.", target_repo_path)
|
2014-07-31 14:30:35 -04:00
|
|
|
FileUtils.chmod_R 0755, target_repo_path
|
2017-05-10 11:31:50 -04:00
|
|
|
set_repo_refs(target_repo_path, refs)
|
2013-04-01 07:39:19 -04:00
|
|
|
end
|
|
|
|
|
2014-07-31 08:39:01 -04:00
|
|
|
def repos_path
|
2017-02-28 16:08:40 -05:00
|
|
|
Gitlab.config.repositories.storages.default['path']
|
2013-04-01 07:39:19 -04:00
|
|
|
end
|
2014-09-27 03:56:19 -04:00
|
|
|
|
2015-07-24 12:54:06 -04:00
|
|
|
def backup_path
|
|
|
|
Gitlab.config.backup.path
|
|
|
|
end
|
|
|
|
|
2017-03-28 13:27:44 -04:00
|
|
|
def pages_path
|
|
|
|
Gitlab.config.pages.path
|
|
|
|
end
|
|
|
|
|
2016-01-28 20:45:03 -05:00
|
|
|
# When no cached assets exist, manually hit the root path to create them
|
|
|
|
#
|
|
|
|
# Otherwise they'd be created by the first test, often timing out and
|
|
|
|
# causing a transient test failure
|
2017-03-30 10:30:05 -04:00
|
|
|
def eager_load_driver_server
|
2017-07-10 13:18:03 -04:00
|
|
|
return unless ENV['CI']
|
2016-01-28 20:45:03 -05:00
|
|
|
return unless defined?(Capybara)
|
|
|
|
|
2017-04-01 23:23:18 -04:00
|
|
|
puts "Starting the Capybara driver server..."
|
2017-03-31 03:55:46 -04:00
|
|
|
Capybara.current_session.visit '/'
|
2016-01-28 20:45:03 -05:00
|
|
|
end
|
|
|
|
|
2017-05-10 11:31:50 -04:00
|
|
|
def factory_repo_path_bare
|
|
|
|
"#{factory_repo_path}_bare"
|
|
|
|
end
|
|
|
|
|
|
|
|
def forked_repo_path_bare
|
|
|
|
"#{forked_repo_path}_bare"
|
|
|
|
end
|
|
|
|
|
2014-09-27 03:56:19 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def factory_repo_path
|
2014-09-29 10:50:20 -04:00
|
|
|
@factory_repo_path ||= Rails.root.join('tmp', 'tests', factory_repo_name)
|
|
|
|
end
|
|
|
|
|
2014-09-27 03:56:19 -04:00
|
|
|
def factory_repo_name
|
|
|
|
'gitlab-test'
|
|
|
|
end
|
2015-03-27 16:39:41 -04:00
|
|
|
|
2015-04-13 01:27:45 -04:00
|
|
|
def forked_repo_path
|
|
|
|
@forked_repo_path ||= Rails.root.join('tmp', 'tests', forked_repo_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def forked_repo_name
|
|
|
|
'gitlab-test-fork'
|
|
|
|
end
|
|
|
|
|
2015-03-27 16:39:41 -04:00
|
|
|
# Prevent developer git configurations from being persisted to test
|
|
|
|
# repositories
|
|
|
|
def git_env
|
2015-04-13 01:27:45 -04:00
|
|
|
{ 'GIT_TEMPLATE_DIR' => '' }
|
2015-03-27 16:39:41 -04:00
|
|
|
end
|
2016-08-29 07:43:09 -04:00
|
|
|
|
|
|
|
def set_repo_refs(repo_path, branch_sha)
|
2017-05-10 11:31:50 -04:00
|
|
|
instructions = branch_sha.map { |branch, sha| "update refs/heads/#{branch}\x00#{sha}\x00" }.join("\x00") << "\x00"
|
2016-11-04 00:47:39 -04:00
|
|
|
update_refs = %W(#{Gitlab.config.git.bin_path} update-ref --stdin -z)
|
|
|
|
reset = proc do
|
2017-05-10 11:31:50 -04:00
|
|
|
Dir.chdir(repo_path) do
|
|
|
|
IO.popen(update_refs, "w") { |io| io.write(instructions) }
|
|
|
|
$?.success?
|
|
|
|
end
|
2016-11-04 00:47:39 -04:00
|
|
|
end
|
|
|
|
|
2017-05-10 11:31:50 -04:00
|
|
|
# Try to reset without fetching to avoid using the network.
|
|
|
|
unless reset.call
|
|
|
|
raise 'Could not fetch test seed repository.' unless system(*%W(#{Gitlab.config.git.bin_path} -C #{repo_path} fetch origin))
|
|
|
|
|
|
|
|
# Before we used Git clone's --mirror option, bare repos could end up
|
|
|
|
# with missing refs, clearing them and retrying should fix the issue.
|
2017-06-06 10:23:40 -04:00
|
|
|
cleanup && clean_gitlab_test_path && init unless reset.call
|
2016-08-29 07:43:09 -04:00
|
|
|
end
|
|
|
|
end
|
2017-05-23 15:27:39 -04:00
|
|
|
|
2017-06-19 17:06:17 -04:00
|
|
|
def component_needs_update?(component_folder, expected_version)
|
|
|
|
version = File.read(File.join(component_folder, 'VERSION')).strip
|
2017-05-23 15:27:39 -04:00
|
|
|
|
|
|
|
# Notice that this will always yield true when using branch versions
|
|
|
|
# (`=branch_name`), but that actually makes sure the server is always based
|
|
|
|
# on the latest branch revision.
|
2017-06-19 17:06:17 -04:00
|
|
|
version != expected_version
|
2017-05-23 15:27:39 -04:00
|
|
|
rescue Errno::ENOENT
|
|
|
|
true
|
|
|
|
end
|
2013-04-01 07:39:19 -04:00
|
|
|
end
|