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

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

class TestInit < Test::Unit::TestCase
  def setup
    set_file_paths
    @git = Git.open(@wdir)
  end
  
  def test_commit
    o = @git.object('1cc8667014381')
    assert(o.is_a?(Git::Object::Commit))
    
    o = @git.object('HEAD')
    assert(o.is_a?(Git::Object::Commit))
    assert_equal('commit', o.type)
    
    o = @git.object('test_object')
    assert(o.is_a?(Git::Object::Commit))
    assert_equal('commit', o.type)
  end
  
  def test_commit_contents
    o = @git.object('1cc8667014381')
    assert_equal('tree 94c827875e2cadb8bc8d4cdd900f19aa9e8634c7', o.contents_array[0])
    assert_equal('parent 546bec6f8872efa41d5d97a369f669165ecda0de', o.contents_array[1])
  end
  
  def test_tree
    o = @git.object('1cc8667014381^{tree}')
    assert(o.is_a?(Git::Object::Tree))
    
    o = @git.object('94c827875e2cadb8bc8d4cdd900f19aa9e8634c7')
    assert(o.is_a?(Git::Object::Tree))
    assert_equal('tree', o.type)
  end
  
  def test_tree_contents
    o = @git.object('1cc8667014381^{tree}')
    assert_equal('040000 tree 6b790ddc5eab30f18cabdd0513e8f8dac0d2d3ed	ex_dir', o.contents_array.first)
  end
  
  def test_blob
    o = @git.object('ba492c62b6')
    assert(o.is_a?(Git::Object::Blob))
    
    o = @git.object('v2.5:example.txt')
    assert(o.is_a?(Git::Object::Blob))
    assert_equal('blob', o.type)
  end
  
  def test_blob_contents
    o = @git.object('v2.6:example.txt')
    assert_equal('replace with new text', o.contents)
  end
  
end