summaryrefslogtreecommitdiffstats
path: root/tests/units/test_archive.rb
blob: efff94a3c7a22291704a5f315f82859f64a7fbbb (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../test_helper'

class TestArchive < Test::Unit::TestCase
  
  def setup
    set_file_paths
    @git = Git.open(@wdir)
  end
  
  def tempfile
    Tempfile.new('archive-test').path
  end
  
  def test_archive
    f = @git.archive('v2.6', tempfile)
    assert(File.exists?(f))

    f = @git.object('v2.6').archive(tempfile)  # writes to given file
    assert(File.exists?(f))

    f = @git.object('v2.6').archive # returns path to temp file
    assert(File.exists?(f))
    
    f = @git.object('v2.6').archive(nil, :format => 'tar') # returns path to temp file
    assert(File.exists?(f))
    
    lines = `cd /tmp; tar xvpf #{f}`.split("\n")
    assert_equal('ex_dir/', lines[0])
    assert_equal('example.txt', lines[2])
    
    f = @git.object('v2.6').archive(tempfile, :format => 'zip')
    assert(File.file?(f))

    f = @git.object('v2.6').archive(tempfile, :format => 'tgz', :prefix => 'test/')
    assert(File.exists?(f))
    
    f = @git.object('v2.6').archive(tempfile, :format => 'tar', :prefix => 'test/', :path => 'ex_dir/')
    assert(File.exists?(f))
    
    lines = `cd /tmp; tar xvpf #{f}`.split("\n")
    assert_equal('test/', lines[0])
    assert_equal('test/ex_dir/ex.txt', lines[2])

    in_temp_dir do
      c = Git.clone(@wbare, 'new')
      c.chdir do
        f = @git.remote('origin').branch('master').archive(tempfile, :format => 'tgz')
        assert(File.exists?(f))
      end
    end
  end
  
end