aboutsummaryrefslogtreecommitdiffstats
path: root/repository/mock_repo.go
blob: e747eb24edc9844f535a47393e92e49548c05369 (plain) (blame)
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
package repository

import (
	"github.com/MichaelMure/git-bug/util"
)

// mockRepoForTest defines an instance of Repo that can be used for testing.
type mockRepoForTest struct{}

func NewMockRepoForTest() Repo {
	return &mockRepoForTest{}
}

// GetPath returns the path to the repo.
func (r *mockRepoForTest) GetPath() string {
	return "~/mockRepo/"
}

func (r *mockRepoForTest) GetUserName() (string, error) {
	return "René Descartes", nil
}

// GetUserEmail returns the email address that the user has used to configure git.
func (r *mockRepoForTest) GetUserEmail() (string, error) {
	return "user@example.com", nil
}

// GetCoreEditor returns the name of the editor that the user has used to configure git.
func (r *mockRepoForTest) GetCoreEditor() (string, error) {
	return "vi", nil
}

// PushRefs push git refs to a remote
func (r *mockRepoForTest) PushRefs(remote string, refPattern string) error {
	return nil
}

func (r *mockRepoForTest) PullRefs(remote string, refPattern string) error {
	return nil
}

func (r *mockRepoForTest) StoreData([]byte) (util.Hash, error) {
	return "", nil
}

func (r *mockRepoForTest) StoreTree(mapping map[string]util.Hash) (util.Hash, error) {
	return "", nil
}

func (r *mockRepoForTest) StoreCommit(treeHash util.Hash) (util.Hash, error) {
	return "", nil
}

func (r *mockRepoForTest) StoreCommitWithParent(treeHash util.Hash, parent util.Hash) (util.Hash, error) {
	return "", nil
}

func (r *mockRepoForTest) UpdateRef(ref string, hash util.Hash) error {
	return nil
}