test_env.rb 4.3 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2
require 'rspec/mocks'

3 4 5
module TestEnv
  extend self

C
Ciro Santilli 已提交
6 7
  # When developing the seed repository, comment out the branch you will modify.
  BRANCH_SHA = {
8
    'flatten-dir'      => 'e56497b',
C
Ciro Santilli 已提交
9 10 11 12 13 14 15 16
    'feature'          => '0b4bc9a',
    'feature_conflict' => 'bb5206f',
    'fix'              => '12d65c8',
    'improve/awesome'  => '5937ac0',
    'markdown'         => '0ed8c6c',
    'master'           => '5937ac0'
  }

17 18 19 20
  FORKED_BRANCH_SHA = BRANCH_SHA.merge({
    'add-submodule-version-bump' => '3f547c08'
  })

21 22
  # Test environment
  #
23
  # See gitlab.yml.example test section for paths
24
  #
25
  def init(opts = {})
D
Dmitriy Zaporozhets 已提交
26 27 28
    # Disable mailer for spinach tests
    disable_mailer if opts[:mailer] == false

R
Robert Speicher 已提交
29
    clean_test_path
30

C
Ciro Santilli 已提交
31
    FileUtils.mkdir_p(repos_path)
32

33 34 35
    # Setup GitLab shell for test instance
    setup_gitlab_shell

36 37
    # Create repository for FactoryGirl.create(:project)
    setup_factory_repo
38

39 40
    # Create repository for FactoryGirl.create(:forked_project_with_submodules)
    setup_forked_repo
I
Izaak Alpert 已提交
41 42
  end

43
  def disable_mailer
44 45
    allow_any_instance_of(NotificationService).to receive(:mailer).
      and_return(double.as_null_object)
I
Izaak Alpert 已提交
46
  end
D
Dmitriy Zaporozhets 已提交
47

48
  def enable_mailer
49 50
    allow_any_instance_of(NotificationService).to receive(:mailer).
      and_call_original
I
Izaak Alpert 已提交
51 52
  end

R
Robert Speicher 已提交
53 54 55 56 57 58 59
  # Clean /tmp/tests
  #
  # Keeps gitlab-shell and gitlab-test
  def clean_test_path
    tmp_test_path = Rails.root.join('tmp', 'tests', '**')

    Dir[tmp_test_path].each do |entry|
60
      unless File.basename(entry) =~ /\Agitlab-(shell|test|test-fork)\z/
R
Robert Speicher 已提交
61 62 63 64 65
        FileUtils.rm_rf(entry)
      end
    end
  end

66
  def setup_gitlab_shell
R
Robert Speicher 已提交
67 68 69
    unless File.directory?(Rails.root.join(*%w(tmp tests gitlab-shell)))
      `rake gitlab:shell:install`
    end
I
Izaak Alpert 已提交
70
  end
71

72
  def setup_factory_repo
73 74 75 76 77 78 79 80 81 82 83 84 85
    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

  def setup_repo(repo_path, repo_path_bare, repo_name, branch_sha)
    clone_url = "https://gitlab.com/gitlab-org/#{repo_name}.git"
I
Izaak Alpert 已提交
86

87 88
    unless File.directory?(repo_path)
      system(*%W(git clone -q #{clone_url} #{repo_path}))
C
Ciro Santilli 已提交
89 90
    end

91 92
    Dir.chdir(repo_path) do
      branch_sha.each do |branch, sha|
C
Ciro Santilli 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105
        # Try to reset without fetching to avoid using the network.
        reset = %W(git update-ref refs/heads/#{branch} #{sha})
        unless system(*reset)
          if system(*%w(git fetch origin))
            unless system(*reset)
              raise 'The fetched test seed '\
              'does not contain the required revision.'
            end
          else
            raise 'Could not fetch test seed repository.'
          end
        end
      end
106
    end
C
Ciro Santilli 已提交
107 108

    # We must copy bare repositories because we will push to them.
109
    system(git_env, *%W(git clone -q --bare #{repo_path} #{repo_path_bare}))
110 111
  end

112
  def copy_repo(project)
C
Ciro Santilli 已提交
113
    base_repo_path = File.expand_path(factory_repo_path_bare)
D
Dmitriy Zaporozhets 已提交
114 115 116 117
    target_repo_path = File.expand_path(repos_path + "/#{project.namespace.path}/#{project.path}.git")
    FileUtils.mkdir_p(target_repo_path)
    FileUtils.cp_r("#{base_repo_path}/.", target_repo_path)
    FileUtils.chmod_R 0755, target_repo_path
118 119
  end

120 121
  def repos_path
    Gitlab.config.gitlab_shell.repos_path
122
  end
C
Ciro Santilli 已提交
123

124 125 126 127 128 129 130 131
  def copy_forked_repo_with_submodules(project)
    base_repo_path = File.expand_path(forked_repo_path_bare)
    target_repo_path = File.expand_path(repos_path + "/#{project.namespace.path}/#{project.path}.git")
    FileUtils.mkdir_p(target_repo_path)
    FileUtils.cp_r("#{base_repo_path}/.", target_repo_path)
    FileUtils.chmod_R 0755, target_repo_path
  end

C
Ciro Santilli 已提交
132 133 134
  private

  def factory_repo_path
C
Ciro Santilli 已提交
135 136 137 138
    @factory_repo_path ||= Rails.root.join('tmp', 'tests', factory_repo_name)
  end

  def factory_repo_path_bare
R
Robert Speicher 已提交
139
    "#{factory_repo_path}_bare"
C
Ciro Santilli 已提交
140 141 142 143 144
  end

  def factory_repo_name
    'gitlab-test'
  end
145

146 147 148 149 150 151 152 153 154 155 156 157 158
  def forked_repo_path
    @forked_repo_path ||= Rails.root.join('tmp', 'tests', forked_repo_name)
  end

  def forked_repo_path_bare
    "#{forked_repo_path}_bare"
  end

  def forked_repo_name
    'gitlab-test-fork'
  end


159 160 161
  # Prevent developer git configurations from being persisted to test
  # repositories
  def git_env
162
    { 'GIT_TEMPLATE_DIR' => '' }
163
  end
164
end