summaryrefslogtreecommitdiff
path: root/spec/acceptance/beaker/git/clone/clone_over_different_exiting_repo_with_force.rb
blob: 626d80721da30e1bc5f930aad2c4fb5b21d5ce12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
test_name 'C3511 - clone over an existing repo with force'

# Globals
repo_name = 'testrepo_already_exists'

hosts.each do |host|
  tmpdir = host.tmpdir('vcsrepo')
  step 'setup - create repo' do
    install_package(host, 'git')
    my_root = File.expand_path(File.join(File.dirname(__FILE__), '../../../..'))
    scp_to(host, "#{my_root}/acceptance/files/create_git_repo.sh", tmpdir)
    on(host, "cd #{tmpdir} && ./create_git_repo.sh")
    on(host, "mkdir #{tmpdir}/#{repo_name}")
    on(host, "cd #{tmpdir}/#{repo_name} && git init")
    on(host, "cd #{tmpdir}/#{repo_name} && touch a && git add a && git commit -m 'a'")
  end

  teardown do
    on(host, "rm -fr #{tmpdir}")
  end

  step 'clone over existing repo with force using puppet' do
    on(host, "cd #{tmpdir}/#{repo_name} && git log --pretty=format:\"%h\"") do |res|
      @existing_sha = res.stdout
    end
    pp = <<-EOS
    vcsrepo { "#{tmpdir}/#{repo_name}":
      ensure => present,
      source => "file://#{tmpdir}/testrepo.git",
      provider => git,
      force => true,
    }
    EOS

    apply_manifest_on(host, pp)
  end

  step 'verify new repo has replaced old one' do
    on(host, "cd #{tmpdir}/#{repo_name} && git log --pretty=format:\"%h\"") do |res|
      fail_test('original repo not replaced by force') if res.stdout.include? "#{@existing_sha}"
    end
  end

end