summaryrefslogtreecommitdiff
path: root/spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2014-05-19 08:09:32 -0700
committerAshley Penney <ashley.penney@puppetlabs.com>2014-05-19 08:09:32 -0700
commitf6864f446f4137499586a930cb7514b2dcb82b6d (patch)
tree2dd61d1606152747dda8edc8e299acf6d8e651a8 /spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb
parentdf0b979b0902a20b6a948958838521da8828e358 (diff)
parent07be768979161434c480c6ec23d848185e157096 (diff)
Merge pull request #141 from johnduarte/beaker_tests
Add beaker tests to complete test plan
Diffstat (limited to 'spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb')
-rw-r--r--spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb44
1 files changed, 44 insertions, 0 deletions
diff --git a/spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb b/spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb
new file mode 100644
index 0000000..6ed945b
--- /dev/null
+++ b/spec/acceptance/beaker/git/branch_checkout/branch_checkout_file.rb
@@ -0,0 +1,44 @@
+test_name 'C3438 - checkout a branch (file protocol)'
+
+# Globals
+repo_name = 'testrepo_branch_checkout'
+branch = 'a_branch'
+
+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")
+ end
+
+ teardown do
+ on(host, "rm -fr #{tmpdir}")
+ end
+
+ step 'checkout a branch with puppet' do
+ pp = <<-EOS
+ vcsrepo { "#{tmpdir}/#{repo_name}":
+ ensure => present,
+ source => "file://#{tmpdir}/testrepo.git",
+ provider => git,
+ revision => '#{branch}',
+ }
+ EOS
+
+ apply_manifest_on(host, pp)
+ apply_manifest_on(host, pp)
+ end
+
+ step "verify checkout is on the #{branch} branch" do
+ on(host, "ls #{tmpdir}/#{repo_name}/.git/") do |res|
+ fail_test('checkout not found') unless res.stdout.include? "HEAD"
+ end
+
+ on(host, "cat #{tmpdir}/#{repo_name}/.git/HEAD") do |res|
+ fail_test('branch not found') unless res.stdout.include? "ref: refs/heads/#{branch}"
+ end
+ end
+
+end