1 test_name 'C3476 - shallow clone repo minimal depth = 1 (file 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")
16 on(host, "rm -fr #{tmpdir}")
19 step 'shallow clone repo with puppet' do
21 vcsrepo { "#{tmpdir}/#{repo_name}":
23 source => "file://#{tmpdir}/testrepo.git",
29 apply_manifest_on(host, pp, :catch_failures => true)
30 apply_manifest_on(host, pp, :catch_changes => true)
33 step 'verify checkout is shallow and of the correct depth' do
34 on(host, "ls #{tmpdir}/#{repo_name}/.git/") do |res|
35 fail_test('shallow not found') unless res.stdout.include? "shallow"
38 on(host, "wc -l #{tmpdir}/#{repo_name}/.git/shallow") do |res|
39 fail_test('shallow not found') unless res.stdout.include? "2 #{tmpdir}/#{repo_name}/.git/shallow"