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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
require 'spec_helper_acceptance'
tmpdir = default.tmpdir('vcsrepo')
describe 'MODULES-660' do
before(:all) do
# Create testrepo.git
my_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
shell("mkdir -p #{tmpdir}") # win test
scp_to(default, "#{my_root}/acceptance/files/create_git_repo.sh", tmpdir)
shell("cd #{tmpdir} && ./create_git_repo.sh")
# Configure testrepo.git as upstream of testrepo
pp = <<-EOS
vcsrepo { "#{tmpdir}/testrepo":
ensure => present,
provider => git,
revision => 'a_branch',
source => "file://#{tmpdir}/testrepo.git",
}
EOS
apply_manifest(pp, :catch_failures => true)
end
after(:all) do
shell("rm -rf #{tmpdir}/testrepo.git")
end
shared_examples 'switch to branch/tag/sha' do
it 'pulls the new branch commits' do
pp = <<-EOS
vcsrepo { "#{tmpdir}/testrepo":
ensure => latest,
provider => git,
revision => 'a_branch',
source => "file://#{tmpdir}/testrepo.git",
}
EOS
apply_manifest(pp, :expect_changes => true)
apply_manifest(pp, :catch_changes => true)
end
it 'checks out the tag' do
pp = <<-EOS
vcsrepo { "#{tmpdir}/testrepo":
ensure => latest,
provider => git,
revision => '0.0.3',
source => "file://#{tmpdir}/testrepo.git",
}
EOS
apply_manifest(pp, :expect_changes => true)
apply_manifest(pp, :catch_changes => true)
end
it 'checks out the sha' do
sha = shell("cd #{tmpdir}/testrepo && git rev-parse origin/master").stdout.chomp
pp = <<-EOS
vcsrepo { "#{tmpdir}/testrepo":
ensure => latest,
provider => git,
revision => '#{sha}',
source => "file://#{tmpdir}/testrepo.git",
}
EOS
apply_manifest(pp, :expect_changes => true)
apply_manifest(pp, :catch_changes => true)
end
end
context 'on branch' do
before :each do
shell("cd #{tmpdir}/testrepo && git checkout a_branch")
shell("cd #{tmpdir}/testrepo && git reset --hard 0.0.2")
end
it_behaves_like 'switch to branch/tag/sha'
end
context 'on tag' do
before :each do
shell("cd #{tmpdir}/testrepo && git checkout 0.0.1")
end
it_behaves_like 'switch to branch/tag/sha'
end
context 'on detached head' do
before :each do
shell("cd #{tmpdir}/testrepo && git checkout 0.0.2")
shell("cd #{tmpdir}/testrepo && git checkout HEAD~1")
end
it_behaves_like 'switch to branch/tag/sha'
end
end
|