1 test_name 'C3474 - shallow clone repo minimal depth = 1 (git protocol)'
4 repo_name = 'testrepo_shallow_clone'
7 tmpdir = host.tmpdir('vcsrepo')
8 step 'setup - create repo' do
9 install_package(host, 'git')
10 my_root = File.expand_path(File.join(File.dirname(__FILE__), '../../../..'))
11 scp_to(host, "#{my_root}/acceptance/files/create_git_repo.sh", tmpdir)
12 on(host, "cd #{tmpdir} && ./create_git_repo.sh")
14 step 'setup - start git daemon' do
15 install_package(host, 'git-daemon')
16 on(host, "git daemon --base-path=#{tmpdir} --export-all --reuseaddr --verbose --detach")
20 on(host, "rm -fr #{tmpdir}")
21 on(host, 'pkill -9 git-daemon')
24 step 'shallow clone repo with puppet' do
26 vcsrepo { "#{tmpdir}/#{repo_name}":
28 source => "git://#{host}/testrepo.git",
34 apply_manifest_on(host, pp)
35 apply_manifest_on(host, pp)
38 step 'verify checkout is shallow and of the correct depth' do
39 on(host, "ls #{tmpdir}/#{repo_name}/.git/") do |res|
40 fail_test('shallow not found') unless res.stdout.include? "shallow"
43 on(host, "wc -l #{tmpdir}/#{repo_name}/.git/shallow") do |res|
44 fail_test('shallow not found') unless res.stdout.include? "2 #{tmpdir}/#{repo_name}/.git/shallow"