package testhelpers import ( portainer "github.com/portainer/portainer/api" gittypes "github.com/portainer/portainer/api/git/types" ) 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, authType gittypes.GitCredentialAuthType, tlsSkipVerify bool, ) error { return g.cloneErr } func (g *gitService) LatestCommitID( repositoryURL, referenceName, username, password string, authType gittypes.GitCredentialAuthType, tlsSkipVerify bool, ) (string, error) { return g.id, nil } func (g *gitService) ListRefs( repositoryURL, username, password string, authType gittypes.GitCredentialAuthType, hardRefresh bool, tlsSkipVerify bool, ) ([]string, error) { return nil, nil } func (g *gitService) ListFiles( repositoryURL, referenceName, username, password string, authType gittypes.GitCredentialAuthType, dirOnly, hardRefresh bool, includedExts []string, tlsSkipVerify bool, ) ([]string, error) { return nil, nil }