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
|
package transactional
import (
"testing"
"github.com/go-git/go-billy/v5/memfs"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/cache"
"github.com/go-git/go-git/v5/plumbing/storer"
"github.com/go-git/go-git/v5/storage"
"github.com/go-git/go-git/v5/storage/filesystem"
"github.com/go-git/go-git/v5/storage/memory"
"github.com/go-git/go-git/v5/storage/test"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type StorageSuite struct {
test.BaseStorageSuite
temporal func() storage.Storer
}
var _ = Suite(&StorageSuite{
temporal: func() storage.Storer {
return memory.NewStorage()
},
})
var _ = Suite(&StorageSuite{
temporal: func() storage.Storer {
fs := memfs.New()
return filesystem.NewStorage(fs, cache.NewObjectLRUDefault())
},
})
func (s *StorageSuite) SetUpTest(c *C) {
base := memory.NewStorage()
temporal := s.temporal()
s.BaseStorageSuite = test.NewBaseStorageSuite(NewStorage(base, temporal))
}
func (s *StorageSuite) TestCommit(c *C) {
base := memory.NewStorage()
temporal := s.temporal()
st := NewStorage(base, temporal)
commit := base.NewEncodedObject()
commit.SetType(plumbing.CommitObject)
_, err := st.SetEncodedObject(commit)
c.Assert(err, IsNil)
ref := plumbing.NewHashReference("refs/a", commit.Hash())
c.Assert(st.SetReference(ref), IsNil)
err = st.Commit()
c.Assert(err, IsNil)
ref, err = base.Reference(ref.Name())
c.Assert(err, IsNil)
c.Assert(ref.Hash(), Equals, commit.Hash())
obj, err := base.EncodedObject(plumbing.AnyObject, commit.Hash())
c.Assert(err, IsNil)
c.Assert(obj.Hash(), Equals, commit.Hash())
}
func (s *StorageSuite) TestTransactionalPackfileWriter(c *C) {
base := memory.NewStorage()
temporal := s.temporal()
st := NewStorage(base, temporal)
_, tmpOK := temporal.(storer.PackfileWriter)
_, ok := st.(storer.PackfileWriter)
c.Assert(ok, Equals, tmpOK)
}
|