woodpecker/pkg/store/mock/mock.go

370 lines
6.5 KiB
Go
Raw Normal View History

2015-04-23 21:56:26 +00:00
package mocks
2015-05-01 04:20:59 +00:00
import (
"io"
2015-04-23 21:56:26 +00:00
2015-05-17 20:51:42 +00:00
common "github.com/drone/drone/pkg/types"
2015-05-01 04:20:59 +00:00
"github.com/stretchr/testify/mock"
)
2015-04-23 21:56:26 +00:00
type Store struct {
2015-04-23 21:56:26 +00:00
mock.Mock
}
func (m *Store) User(id int64) (*common.User, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(id)
2015-04-23 21:56:26 +00:00
var r0 *common.User
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.User)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) UserLogin(_a0 string) (*common.User, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.User
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.User)
}
2015-04-23 21:56:26 +00:00
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) UserList() ([]*common.User, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called()
var r0 []*common.User
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*common.User)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) UserFeed(_a0 *common.User, _a1 int, _a2 int) ([]*common.RepoCommit, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0, _a1, _a2)
var r0 []*common.RepoCommit
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*common.RepoCommit)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) UserCount() (int, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called()
r0 := ret.Get(0).(int)
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) AddUser(_a0 *common.User) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) SetUser(_a0 *common.User) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) DelUser(_a0 *common.User) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) Token(_a0 int64) (*common.Token, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
var r0 *common.Token
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.Token)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) TokenLabel(_a0 *common.User, _a1 string) (*common.Token, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0, _a1)
var r0 *common.Token
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.Token)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) TokenList(_a0 *common.User) ([]*common.Token, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
var r0 []*common.Token
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*common.Token)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) AddToken(_a0 *common.Token) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) DelToken(_a0 *common.Token) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) Starred(_a0 *common.User, _a1 *common.Repo) (bool, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0, _a1)
r0 := ret.Get(0).(bool)
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) AddStar(_a0 *common.User, _a1 *common.Repo) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0, _a1)
r0 := ret.Error(0)
return r0
}
func (m *Store) DelStar(_a0 *common.User, _a1 *common.Repo) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0, _a1)
r0 := ret.Error(0)
return r0
}
func (m *Store) Repo(id int64) (*common.Repo, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(id)
2015-04-23 21:56:26 +00:00
var r0 *common.Repo
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.Repo)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) RepoName(owner string, name string) (*common.Repo, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(owner, name)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.Repo
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Repo)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) RepoList(_a0 *common.User) ([]*common.Repo, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
2015-05-12 17:06:00 +00:00
var r0 []*common.Repo
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).([]*common.Repo)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) AddRepo(_a0 *common.Repo) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) SetRepo(_a0 *common.Repo) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) DelRepo(_a0 *common.Repo) error {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) Commit(_a0 int64) (*common.Commit, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.Commit
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Commit)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) CommitSeq(_a0 *common.Repo, _a1 int) (*common.Commit, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0, _a1)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.Commit
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Commit)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) CommitLast(_a0 *common.Repo, _a1 string) (*common.Commit, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0, _a1)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.Commit
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Commit)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) CommitList(_a0 *common.Repo, _a1 int, _a2 int) ([]*common.Commit, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0, _a1, _a2)
2015-05-01 04:20:59 +00:00
2015-05-12 17:06:00 +00:00
var r0 []*common.Commit
2015-05-01 04:20:59 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).([]*common.Commit)
2015-05-01 04:20:59 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) AddCommit(_a0 *common.Commit) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) SetCommit(_a0 *common.Commit) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
r0 := ret.Error(0)
return r0
}
func (m *Store) KillCommits() error {
2015-05-12 17:06:00 +00:00
ret := m.Called()
r0 := ret.Error(0)
return r0
}
func (m *Store) Build(_a0 int64) (*common.Build, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 *common.Build
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Build)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) BuildSeq(_a0 *common.Commit, _a1 int) (*common.Build, error) {
2015-04-23 21:56:26 +00:00
ret := m.Called(_a0, _a1)
2015-05-12 17:06:00 +00:00
var r0 *common.Build
2015-04-23 21:56:26 +00:00
if ret.Get(0) != nil {
2015-05-12 17:06:00 +00:00
r0 = ret.Get(0).(*common.Build)
2015-04-23 21:56:26 +00:00
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) BuildList(_a0 *common.Commit) ([]*common.Build, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
var r0 []*common.Build
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*common.Build)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) SetBuild(_a0 *common.Build) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(_a0)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) GetBlob(path string) ([]byte, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(path)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
var r0 []byte
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
2015-04-23 21:56:26 +00:00
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) GetBlobReader(path string) (io.ReadCloser, error) {
2015-05-12 17:06:00 +00:00
ret := m.Called(path)
2015-05-12 17:06:00 +00:00
r0 := ret.Get(0).(io.ReadCloser)
r1 := ret.Error(1)
2015-04-23 21:56:26 +00:00
2015-05-12 17:06:00 +00:00
return r0, r1
2015-04-23 21:56:26 +00:00
}
func (m *Store) SetBlob(path string, data []byte) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(path, data)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) SetBlobReader(path string, r io.Reader) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(path, r)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) DelBlob(path string) error {
2015-05-12 17:06:00 +00:00
ret := m.Called(path)
2015-04-23 21:56:26 +00:00
r0 := ret.Error(0)
return r0
}
func (m *Store) Agent(_a0 *common.Commit) (string, error) {
ret := m.Called(_a0)
r0 := ret.Get(0).(string)
r1 := ret.Error(1)
return r0, r1
}
func (m *Store) SetAgent(_a0 *common.Commit, _a1 string) error {
ret := m.Called(_a0, _a1)
r0 := ret.Error(0)
return r0
}