summaryrefslogtreecommitdiff
path: root/spec/acceptance/git_clone_protocols_spec.rb
blob: 96afe56892ac63f353ea1a364715a8a55ec2ea4a (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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
require 'spec_helper_acceptance'

hosts.each do |host|

  describe 'clones a repo with git' do
    tmpdir =  host.tmpdir('vcsrepo')

    before(:all) do
      # {{{ setup
      on(host,apply_manifest("user{'testuser': ensure => present, managehome => true }"))
      on(host,apply_manifest("user{'vagrant': ensure => present, }"))
      # install git
      install_package(host, 'git')
      install_package(host, 'git-daemon')
      # create ssh keys
      host.execute('mkdir -p /home/testuser/.ssh')
      host.execute('ssh-keygen -q -t rsa -f /home/testuser/.ssh/id_rsa -N ""')

      # copy public key to authorized_keys
      host.execute('cat /home/testuser/.ssh/id_rsa.pub > /home/testuser/.ssh/authorized_keys')
      host.execute('echo -e "Host localhost\n\tStrictHostKeyChecking no\n" > /home/testuser/.ssh/config')
      host.execute('chown -R testuser:testuser /home/testuser/.ssh')

      # create git repo
      my_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
      scp_to(host, "#{my_root}/acceptance/files/create_git_repo.sh", tmpdir)
      host.execute("cd #{tmpdir} && ./create_git_repo.sh")

      # copy ssl keys
      scp_to(host, "#{my_root}/acceptance/files/server.crt", tmpdir)
      scp_to(host, "#{my_root}/acceptance/files/server.key", tmpdir)
      # }}}
    end

    after(:all) do
      # {{{ teardown
      on(host,apply_manifest("user{'testuser': ensure => absent, managehome => true }"))
      # }}}
    end


    #---------------  TESTS ----------------------#

    context 'using local protocol (file URL)' do
      before(:all) do
        on(host,apply_manifest("file {'#{tmpdir}/testrepo': ensure => directory, purge => true, recurse => true, recurselimit => 1, force => true; }"))
      end

      it 'should have HEAD pointing to master' do
        pp = <<-EOS
        vcsrepo { "#{tmpdir}/testrepo":
          ensure => present,
          provider => git,
          source => "file://#{tmpdir}/testrepo.git",
        }
        EOS

        # Run it twice and test for idempotency
        on(host,apply_manifest(pp, :catch_failures => true))
        on(host,apply_manifest(pp, :catch_changes => true))
      end

      describe file("#{tmpdir}/testrepo/.git/HEAD") do
        it { should contain 'ref: refs/heads/master' }
      end

    end

    context 'using local protocol (file path)' do
      before(:all) do
        on(host,apply_manifest("file {'#{tmpdir}/testrepo': ensure => directory, purge => true, recurse => true, recurselimit => 1, force => true; }"))
      end

      it 'should have HEAD pointing to master' do
        pp = <<-EOS
        vcsrepo { "#{tmpdir}/testrepo":
          ensure => present,
          provider => git,
          source => "#{tmpdir}/testrepo.git",
        }
        EOS

        # Run it twice and test for idempotency
        on(host,apply_manifest(pp, :catch_failures => true))
        on(host,apply_manifest(pp, :catch_changes => true))
      end

      describe file("#{tmpdir}/testrepo/.git/HEAD") do
        it { should contain 'ref: refs/heads/master' }
      end

    end

    context 'using git protocol' do
      before(:all) do
        on(host,apply_manifest("file {'#{tmpdir}/testrepo': ensure => directory, purge => true, recurse => true, recurselimit => 1, force => true; }"))
        host.execute("nohup git daemon  --detach --base-path=/#{tmpdir}")
      end

      it 'should have HEAD pointing to master' do
        pp = <<-EOS
        vcsrepo { "#{tmpdir}/testrepo":
          ensure => present,
          provider => git,
          source => "git://#{host}/testrepo.git",
        }
        EOS

        # Run it twice and test for idempotency
        apply_manifest(pp, :catch_failures => true)
        apply_manifest(pp, :catch_changes => true)
      end
      describe file("#{tmpdir}/testrepo/.git/HEAD") do
        it { should contain 'ref: refs/heads/master' }
      end

      after(:all) do
        host.execute('pkill -9 git')
      end
    end

    context 'using http protocol' do
      before(:all) do
        on(host,apply_manifest("file {'#{tmpdir}/testrepo': ensure => directory, purge => true, recurse => true, recurselimit => 1, force => true; }"))
        daemon =<<-EOF
        require 'webrick'
        server = WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => "#{tmpdir}")
        WEBrick::Daemon.start
        server.start
        EOF
        create_remote_file(host, '/tmp/daemon.rb', daemon)
        on(host, "ruby /tmp/daemon.rb")
      end

      it 'should have HEAD pointing to master' do
        pp = <<-EOS
        vcsrepo { "#{tmpdir}/testrepo":
          ensure => present,
          provider => git,
          source => "http://#{host}:8000/testrepo.git",
        }
        EOS

        # Run it twice and test for idempotency
        apply_manifest(pp, :catch_failures => true)
        apply_manifest(pp, :catch_changes => true)
      end
      describe file("#{tmpdir}/testrepo/.git/HEAD") do
        it { should contain 'ref: refs/heads/master' }
      end

      after(:all) do
        host.execute('pkill -9 ruby')
      end
    end

  end
end