mirror of https://github.com/portainer/portainer
33 lines
978 B
Go
33 lines
978 B
Go
package testhelpers
|
|
|
|
import portainer "github.com/portainer/portainer/api"
|
|
|
|
type gitService struct {
|
|
cloneErr error
|
|
id string
|
|
}
|
|
|
|
// NewGitService creates new mock for portainer.GitService.
|
|
func NewGitService(cloneErr error, id string) portainer.GitService {
|
|
return &gitService{
|
|
cloneErr: cloneErr,
|
|
id: id,
|
|
}
|
|
}
|
|
|
|
func (g *gitService) CloneRepository(destination, repositoryURL, referenceName, username, password string, tlsSkipVerify bool) error {
|
|
return g.cloneErr
|
|
}
|
|
|
|
func (g *gitService) LatestCommitID(repositoryURL, referenceName, username, password string, tlsSkipVerify bool) (string, error) {
|
|
return g.id, nil
|
|
}
|
|
|
|
func (g *gitService) ListRefs(repositoryURL, username, password string, hardRefresh bool, tlsSkipVerify bool) ([]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (g *gitService) ListFiles(repositoryURL, referenceName, username, password string, hardRefresh bool, includedExts []string, tlsSkipVerify bool) ([]string, error) {
|
|
return nil, nil
|
|
}
|