Merge branch '8784-dir-listings'
[arvados.git] / services / api / test / helpers / git_test_helper.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'fileutils'
6 require 'tmpdir'
7
8 # Commit log for "foo" repository in test.git.tar
9 # master is the main branch
10 # b1 is a branch off of master
11 # tag1 is a tag
12 #
13 # 1de84a8 * b1
14 # 077ba2a * master
15 # 4fe459a * tag1
16 # 31ce37f * foo
17
18 module GitTestHelper
19   def self.included base
20     base.setup do
21       # Extract the test repository data into the default test
22       # environment's Rails.configuration.git_repositories_dir. (We
23       # don't use that config setting here, though: it doesn't seem
24       # worth the risk of stepping on a real git repo root.)
25       @tmpdir = Rails.root.join 'tmp', 'git'
26       FileUtils.mkdir_p @tmpdir
27       system("tar", "-xC", @tmpdir.to_s, "-f", "test/test.git.tar")
28       Rails.configuration.git_repositories_dir = "#{@tmpdir}/test"
29
30       intdir = Rails.configuration.git_internal_dir
31       if not File.exist? intdir
32         FileUtils.mkdir_p intdir
33         IO.read("|git --git-dir #{intdir.to_s.shellescape} init")
34         assert $?.success?
35       end
36     end
37
38     base.teardown do
39       FileUtils.remove_entry @tmpdir, true
40       FileUtils.remove_entry Commit.cache_dir_base, true
41     end
42   end
43
44   def internal_tag tag
45     IO.read "|git --git-dir #{Rails.configuration.git_internal_dir.shellescape} log --format=format:%H -n1 #{tag.shellescape}"
46   end
47
48   # Intercept fetch_remote_repository and fetch from a specified url
49   # or local fixture instead of the remote url requested. fakeurl can
50   # be a url (probably starting with file:///) or the name of a
51   # fixture (as a symbol)
52   def fetch_remote_from_local_repo url, fakeurl
53     if fakeurl.is_a? Symbol
54       fakeurl = 'file://' + repositories(fakeurl).server_path
55     end
56     Commit.expects(:fetch_remote_repository).once.with do |gitdir, giturl|
57       if giturl == url
58         Commit.unstub(:fetch_remote_repository)
59         Commit.fetch_remote_repository gitdir, fakeurl
60         true
61       end
62     end
63   end
64 end