Documentation ¶
Index ¶
- type APIKeysAuthenticator
- type APIKeysHandler
- type APIKeysStorer
- func (_m *APIKeysStorer) Create(ctx context.Context, key *models.APIKey) (*models.APIKey, error)
- func (_m *APIKeysStorer) Delete(ctx context.Context, id int, userID int) error
- func (_m *APIKeysStorer) Get(ctx context.Context, id int, userID int) (*models.APIKey, error)
- func (_m *APIKeysStorer) GetByAPIKeyID(ctx context.Context, id string) (*models.APIKey, error)
- func (_m *APIKeysStorer) List(ctx context.Context, userID int) ([]*models.APIKey, error)
- type AuthHandler
- type Clock
- type CommandHandler
- func (_m *CommandHandler) AddCommandRelForPlatform() echo.HandlerFunc
- func (_m *CommandHandler) AddCommandRelForRepository() echo.HandlerFunc
- func (_m *CommandHandler) Create() echo.HandlerFunc
- func (_m *CommandHandler) Delete() echo.HandlerFunc
- func (_m *CommandHandler) Get() echo.HandlerFunc
- func (_m *CommandHandler) List() echo.HandlerFunc
- func (_m *CommandHandler) RemoveCommandRelForPlatform() echo.HandlerFunc
- func (_m *CommandHandler) RemoveCommandRelForRepository() echo.HandlerFunc
- func (_m *CommandHandler) Update() echo.HandlerFunc
- type CommandRunHandler
- type CommandRunStorer
- func (_m *CommandRunStorer) CreateRun(ctx context.Context, run *models.CommandRun) (*models.CommandRun, error)
- func (_m *CommandRunStorer) Get(ctx context.Context, id int) (*models.CommandRun, error)
- func (_m *CommandRunStorer) UpdateRunStatus(ctx context.Context, id int, status string, outcome string) error
- type CommandSettingsHandler
- type CommandStorer
- func (_m *CommandStorer) AddCommandRelForPlatform(ctx context.Context, commandID int, platformID int) error
- func (_m *CommandStorer) AddCommandRelForRepository(ctx context.Context, commandID int, repositoryID int) error
- func (_m *CommandStorer) Create(ctx context.Context, c *models.Command) (*models.Command, error)
- func (_m *CommandStorer) CreateSetting(ctx context.Context, settings *models.CommandSetting) (*models.CommandSetting, error)
- func (_m *CommandStorer) Delete(ctx context.Context, id int) error
- func (_m *CommandStorer) DeleteSetting(ctx context.Context, id int) error
- func (_m *CommandStorer) Get(ctx context.Context, id int) (*models.Command, error)
- func (_m *CommandStorer) GetByName(ctx context.Context, name string) (*models.Command, error)
- func (_m *CommandStorer) GetSetting(ctx context.Context, id int) (*models.CommandSetting, error)
- func (_m *CommandStorer) IsPlatformSupported(ctx context.Context, commandID int, platformID int) (bool, error)
- func (_m *CommandStorer) List(ctx context.Context, opts *models.ListOptions) ([]*models.Command, error)
- func (_m *CommandStorer) ListSettings(ctx context.Context, commandID int) ([]*models.CommandSetting, error)
- func (_m *CommandStorer) RemoveCommandRelForPlatform(ctx context.Context, commandID int, platformID int) error
- func (_m *CommandStorer) RemoveCommandRelForRepository(ctx context.Context, commandID int, repositoryID int) error
- func (_m *CommandStorer) Update(ctx context.Context, c *models.Command) (*models.Command, error)
- func (_m *CommandStorer) UpdateSetting(ctx context.Context, setting *models.CommandSetting) error
- type Email
- type EnvironmentConverter
- type EventHandler
- type EventsStorer
- func (_m *EventsStorer) Create(ctx context.Context, event *models.Event) (*models.Event, error)
- func (_m *EventsStorer) GetEvent(ctx context.Context, eventID int) (*models.Event, error)
- func (_m *EventsStorer) ListEventsForRepository(ctx context.Context, repoID int, options *models.ListOptions) ([]*models.Event, error)
- type Executor
- type HookHandler
- type Hooks
- type Loader
- type OAuthAuthenticator
- func (_m *OAuthAuthenticator) Exchange(ctx context.Context, code string) (*oauth2.Token, error)
- func (_m *OAuthAuthenticator) GenerateState(redirectURL string) (string, error)
- func (_m *OAuthAuthenticator) GetAuthCodeURL(state string) string
- func (_m *OAuthAuthenticator) VerifyState(rawToken string) (string, error)
- type Platform
- func (_m *Platform) CreateHook(ctx context.Context, repo *models.Repository) error
- func (_m *Platform) GetEventID(ctx context.Context, r *http.Request) (string, error)
- func (_m *Platform) GetEventType(ctx context.Context, r *http.Request) (string, error)
- func (_m *Platform) ValidateRequest(ctx context.Context, r *http.Request, repoID int) error
- type PlatformTokenProvider
- type Plugins
- type Ready
- type ReadyHandler
- type RepositoryAuth
- type RepositoryHandler
- type RepositoryStorer
- func (_m *RepositoryStorer) Create(ctx context.Context, c *models.Repository) (*models.Repository, error)
- func (_m *RepositoryStorer) Delete(ctx context.Context, id int) error
- func (_m *RepositoryStorer) Get(ctx context.Context, id int) (*models.Repository, error)
- func (_m *RepositoryStorer) GetByName(ctx context.Context, name string) (*models.Repository, error)
- func (_m *RepositoryStorer) List(ctx context.Context, opt *models.ListOptions) ([]*models.Repository, error)
- func (_m *RepositoryStorer) Update(ctx context.Context, c *models.Repository) (*models.Repository, error)
- type SupportedPlatformListHandler
- type Tar
- type TokenHandler
- type TokenIssuer
- type UUIDGenerator
- type UserHandler
- type UserMiddleware
- type UserStorer
- func (_m *UserStorer) Create(ctx context.Context, c *models.User) (*models.User, error)
- func (_m *UserStorer) Delete(ctx context.Context, id int) error
- func (_m *UserStorer) Get(ctx context.Context, id int) (*models.User, error)
- func (_m *UserStorer) GetByEmail(ctx context.Context, email string) (*models.User, error)
- func (_m *UserStorer) List(ctx context.Context) ([]*models.User, error)
- func (_m *UserStorer) Update(ctx context.Context, user *models.User) (*models.User, error)
- type UserTokenGenerator
- type UserTokenHandler
- type VCSTokenHandler
- type Vault
- type VaultHandler
- type VaultStorer
- type Watcher
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIKeysAuthenticator ¶
APIKeysAuthenticator is an autogenerated mock type for the APIKeysAuthenticator type
func (*APIKeysAuthenticator) Encrypt ¶
Encrypt provides a mock function with given fields: ctx, secret
type APIKeysHandler ¶
APIKeysHandler is an autogenerated mock type for the APIKeysHandler type
func (*APIKeysHandler) Create ¶
func (_m *APIKeysHandler) Create() echo.HandlerFunc
Create provides a mock function with given fields:
func (*APIKeysHandler) Delete ¶
func (_m *APIKeysHandler) Delete() echo.HandlerFunc
Delete provides a mock function with given fields:
func (*APIKeysHandler) Get ¶
func (_m *APIKeysHandler) Get() echo.HandlerFunc
Get provides a mock function with given fields:
func (*APIKeysHandler) List ¶
func (_m *APIKeysHandler) List() echo.HandlerFunc
List provides a mock function with given fields:
type APIKeysStorer ¶
APIKeysStorer is an autogenerated mock type for the APIKeysStorer type
func (*APIKeysStorer) GetByAPIKeyID ¶
GetByAPIKeyID provides a mock function with given fields: ctx, id
type AuthHandler ¶
AuthHandler is an autogenerated mock type for the AuthHandler type
func (*AuthHandler) OAuthCallback ¶
func (_m *AuthHandler) OAuthCallback() echo.HandlerFunc
OAuthCallback provides a mock function with given fields:
func (*AuthHandler) OAuthLogin ¶
func (_m *AuthHandler) OAuthLogin() echo.HandlerFunc
OAuthLogin provides a mock function with given fields:
func (*AuthHandler) Refresh ¶
func (_m *AuthHandler) Refresh() echo.HandlerFunc
Refresh provides a mock function with given fields:
type CommandHandler ¶
CommandHandler is an autogenerated mock type for the CommandHandler type
func (*CommandHandler) AddCommandRelForPlatform ¶
func (_m *CommandHandler) AddCommandRelForPlatform() echo.HandlerFunc
AddCommandRelForPlatform provides a mock function with given fields:
func (*CommandHandler) AddCommandRelForRepository ¶
func (_m *CommandHandler) AddCommandRelForRepository() echo.HandlerFunc
AddCommandRelForRepository provides a mock function with given fields:
func (*CommandHandler) Create ¶ added in v0.0.5
func (_m *CommandHandler) Create() echo.HandlerFunc
Create provides a mock function with given fields:
func (*CommandHandler) Delete ¶
func (_m *CommandHandler) Delete() echo.HandlerFunc
Delete provides a mock function with given fields:
func (*CommandHandler) Get ¶
func (_m *CommandHandler) Get() echo.HandlerFunc
Get provides a mock function with given fields:
func (*CommandHandler) List ¶
func (_m *CommandHandler) List() echo.HandlerFunc
List provides a mock function with given fields:
func (*CommandHandler) RemoveCommandRelForPlatform ¶
func (_m *CommandHandler) RemoveCommandRelForPlatform() echo.HandlerFunc
RemoveCommandRelForPlatform provides a mock function with given fields:
func (*CommandHandler) RemoveCommandRelForRepository ¶
func (_m *CommandHandler) RemoveCommandRelForRepository() echo.HandlerFunc
RemoveCommandRelForRepository provides a mock function with given fields:
func (*CommandHandler) Update ¶
func (_m *CommandHandler) Update() echo.HandlerFunc
Update provides a mock function with given fields:
type CommandRunHandler ¶
CommandRunHandler is an autogenerated mock type for the CommandRunHandler type
func (*CommandRunHandler) GetCommandRun ¶
func (_m *CommandRunHandler) GetCommandRun() echo.HandlerFunc
GetCommandRun provides a mock function with given fields:
type CommandRunStorer ¶
CommandRunStorer is an autogenerated mock type for the CommandRunStorer type
func (*CommandRunStorer) CreateRun ¶
func (_m *CommandRunStorer) CreateRun(ctx context.Context, run *models.CommandRun) (*models.CommandRun, error)
CreateRun provides a mock function with given fields: ctx, run
func (*CommandRunStorer) Get ¶
func (_m *CommandRunStorer) Get(ctx context.Context, id int) (*models.CommandRun, error)
Get provides a mock function with given fields: ctx, id
func (*CommandRunStorer) UpdateRunStatus ¶
func (_m *CommandRunStorer) UpdateRunStatus(ctx context.Context, id int, status string, outcome string) error
UpdateRunStatus provides a mock function with given fields: ctx, id, status, outcome
type CommandSettingsHandler ¶
CommandSettingsHandler is an autogenerated mock type for the CommandSettingsHandler type
func (*CommandSettingsHandler) Create ¶
func (_m *CommandSettingsHandler) Create() echo.HandlerFunc
Create provides a mock function with given fields:
func (*CommandSettingsHandler) Delete ¶
func (_m *CommandSettingsHandler) Delete() echo.HandlerFunc
Delete provides a mock function with given fields:
func (*CommandSettingsHandler) Get ¶
func (_m *CommandSettingsHandler) Get() echo.HandlerFunc
Get provides a mock function with given fields:
func (*CommandSettingsHandler) List ¶
func (_m *CommandSettingsHandler) List() echo.HandlerFunc
List provides a mock function with given fields:
func (*CommandSettingsHandler) Update ¶
func (_m *CommandSettingsHandler) Update() echo.HandlerFunc
Update provides a mock function with given fields:
type CommandStorer ¶
CommandStorer is an autogenerated mock type for the CommandStorer type
func (*CommandStorer) AddCommandRelForPlatform ¶
func (_m *CommandStorer) AddCommandRelForPlatform(ctx context.Context, commandID int, platformID int) error
AddCommandRelForPlatform provides a mock function with given fields: ctx, commandID, platformID
func (*CommandStorer) AddCommandRelForRepository ¶
func (_m *CommandStorer) AddCommandRelForRepository(ctx context.Context, commandID int, repositoryID int) error
AddCommandRelForRepository provides a mock function with given fields: ctx, commandID, repositoryID
func (*CommandStorer) CreateSetting ¶
func (_m *CommandStorer) CreateSetting(ctx context.Context, settings *models.CommandSetting) (*models.CommandSetting, error)
CreateSetting provides a mock function with given fields: ctx, settings
func (*CommandStorer) Delete ¶
func (_m *CommandStorer) Delete(ctx context.Context, id int) error
Delete provides a mock function with given fields: ctx, id
func (*CommandStorer) DeleteSetting ¶
func (_m *CommandStorer) DeleteSetting(ctx context.Context, id int) error
DeleteSetting provides a mock function with given fields: ctx, id
func (*CommandStorer) GetSetting ¶
func (_m *CommandStorer) GetSetting(ctx context.Context, id int) (*models.CommandSetting, error)
GetSetting provides a mock function with given fields: ctx, id
func (*CommandStorer) IsPlatformSupported ¶
func (_m *CommandStorer) IsPlatformSupported(ctx context.Context, commandID int, platformID int) (bool, error)
IsPlatformSupported provides a mock function with given fields: ctx, commandID, platformID
func (*CommandStorer) List ¶
func (_m *CommandStorer) List(ctx context.Context, opts *models.ListOptions) ([]*models.Command, error)
List provides a mock function with given fields: ctx, opts
func (*CommandStorer) ListSettings ¶
func (_m *CommandStorer) ListSettings(ctx context.Context, commandID int) ([]*models.CommandSetting, error)
ListSettings provides a mock function with given fields: ctx, commandID
func (*CommandStorer) RemoveCommandRelForPlatform ¶
func (_m *CommandStorer) RemoveCommandRelForPlatform(ctx context.Context, commandID int, platformID int) error
RemoveCommandRelForPlatform provides a mock function with given fields: ctx, commandID, platformID
func (*CommandStorer) RemoveCommandRelForRepository ¶
func (_m *CommandStorer) RemoveCommandRelForRepository(ctx context.Context, commandID int, repositoryID int) error
RemoveCommandRelForRepository provides a mock function with given fields: ctx, commandID, repositoryID
func (*CommandStorer) UpdateSetting ¶
func (_m *CommandStorer) UpdateSetting(ctx context.Context, setting *models.CommandSetting) error
UpdateSetting provides a mock function with given fields: ctx, setting
type EnvironmentConverter ¶
EnvironmentConverter is an autogenerated mock type for the EnvironmentConverter type
func (*EnvironmentConverter) LoadValueFromFile ¶
func (_m *EnvironmentConverter) LoadValueFromFile(f string) (string, error)
LoadValueFromFile provides a mock function with given fields: f
type EventHandler ¶
EventHandler is an autogenerated mock type for the EventHandler type
func (*EventHandler) Get ¶
func (_m *EventHandler) Get() echo.HandlerFunc
Get provides a mock function with given fields:
func (*EventHandler) List ¶
func (_m *EventHandler) List() echo.HandlerFunc
List provides a mock function with given fields:
type EventsStorer ¶
EventsStorer is an autogenerated mock type for the EventsStorer type
func (*EventsStorer) ListEventsForRepository ¶
func (_m *EventsStorer) ListEventsForRepository(ctx context.Context, repoID int, options *models.ListOptions) ([]*models.Event, error)
ListEventsForRepository provides a mock function with given fields: ctx, repoID, options
type Executor ¶
Executor is an autogenerated mock type for the Executor type
type HookHandler ¶
HookHandler is an autogenerated mock type for the HookHandler type
func (*HookHandler) HandleHooks ¶
func (_m *HookHandler) HandleHooks() echo.HandlerFunc
HandleHooks provides a mock function with given fields:
type Loader ¶
Loader is an autogenerated mock type for the Loader type
type OAuthAuthenticator ¶
OAuthAuthenticator is an autogenerated mock type for the OAuthAuthenticator type
func (*OAuthAuthenticator) Exchange ¶
Exchange provides a mock function with given fields: ctx, code
func (*OAuthAuthenticator) GenerateState ¶
func (_m *OAuthAuthenticator) GenerateState(redirectURL string) (string, error)
GenerateState provides a mock function with given fields: redirectURL
func (*OAuthAuthenticator) GetAuthCodeURL ¶
func (_m *OAuthAuthenticator) GetAuthCodeURL(state string) string
GetAuthCodeURL provides a mock function with given fields: state
func (*OAuthAuthenticator) VerifyState ¶
func (_m *OAuthAuthenticator) VerifyState(rawToken string) (string, error)
VerifyState provides a mock function with given fields: rawToken
type Platform ¶
Platform is an autogenerated mock type for the Platform type
func (*Platform) CreateHook ¶
CreateHook provides a mock function with given fields: ctx, repo
func (*Platform) GetEventID ¶
GetEventID provides a mock function with given fields: ctx, r
func (*Platform) GetEventType ¶ added in v0.0.11
GetEventType provides a mock function with given fields: ctx, r
type PlatformTokenProvider ¶
PlatformTokenProvider is an autogenerated mock type for the PlatformTokenProvider type
func (*PlatformTokenProvider) GetTokenForPlatform ¶
func (_m *PlatformTokenProvider) GetTokenForPlatform(vcs int) (string, error)
GetTokenForPlatform provides a mock function with given fields: vcs
func (*PlatformTokenProvider) SaveTokenForPlatform ¶
func (_m *PlatformTokenProvider) SaveTokenForPlatform(token string, vcs int) error
SaveTokenForPlatform provides a mock function with given fields: token, vcs
type Plugins ¶
Plugins is an autogenerated mock type for the Plugins type
type ReadyHandler ¶ added in v0.0.4
ReadyHandler is an autogenerated mock type for the ReadyHandler type
func (*ReadyHandler) Ready ¶ added in v0.0.4
func (_m *ReadyHandler) Ready() echo.HandlerFunc
Ready provides a mock function with given fields:
type RepositoryAuth ¶
RepositoryAuth is an autogenerated mock type for the RepositoryAuth type
func (*RepositoryAuth) CreateRepositoryAuth ¶
func (_m *RepositoryAuth) CreateRepositoryAuth(ctx context.Context, repositoryID int, info *models.Auth) error
CreateRepositoryAuth provides a mock function with given fields: ctx, repositoryID, info
func (*RepositoryAuth) GetRepositoryAuth ¶
GetRepositoryAuth provides a mock function with given fields: ctx, id
type RepositoryHandler ¶
RepositoryHandler is an autogenerated mock type for the RepositoryHandler type
func (*RepositoryHandler) Create ¶
func (_m *RepositoryHandler) Create() echo.HandlerFunc
Create provides a mock function with given fields:
func (*RepositoryHandler) Delete ¶
func (_m *RepositoryHandler) Delete() echo.HandlerFunc
Delete provides a mock function with given fields:
func (*RepositoryHandler) Get ¶
func (_m *RepositoryHandler) Get() echo.HandlerFunc
Get provides a mock function with given fields:
func (*RepositoryHandler) List ¶
func (_m *RepositoryHandler) List() echo.HandlerFunc
List provides a mock function with given fields:
func (*RepositoryHandler) Update ¶
func (_m *RepositoryHandler) Update() echo.HandlerFunc
Update provides a mock function with given fields:
type RepositoryStorer ¶
RepositoryStorer is an autogenerated mock type for the RepositoryStorer type
func (*RepositoryStorer) Create ¶
func (_m *RepositoryStorer) Create(ctx context.Context, c *models.Repository) (*models.Repository, error)
Create provides a mock function with given fields: ctx, c
func (*RepositoryStorer) Delete ¶
func (_m *RepositoryStorer) Delete(ctx context.Context, id int) error
Delete provides a mock function with given fields: ctx, id
func (*RepositoryStorer) Get ¶
func (_m *RepositoryStorer) Get(ctx context.Context, id int) (*models.Repository, error)
Get provides a mock function with given fields: ctx, id
func (*RepositoryStorer) GetByName ¶
func (_m *RepositoryStorer) GetByName(ctx context.Context, name string) (*models.Repository, error)
GetByName provides a mock function with given fields: ctx, name
func (*RepositoryStorer) List ¶
func (_m *RepositoryStorer) List(ctx context.Context, opt *models.ListOptions) ([]*models.Repository, error)
List provides a mock function with given fields: ctx, opt
func (*RepositoryStorer) Update ¶
func (_m *RepositoryStorer) Update(ctx context.Context, c *models.Repository) (*models.Repository, error)
Update provides a mock function with given fields: ctx, c
type SupportedPlatformListHandler ¶
SupportedPlatformListHandler is an autogenerated mock type for the SupportedPlatformListHandler type
func (*SupportedPlatformListHandler) ListSupportedPlatforms ¶
func (_m *SupportedPlatformListHandler) ListSupportedPlatforms() echo.HandlerFunc
ListSupportedPlatforms provides a mock function with given fields:
type TokenHandler ¶
TokenHandler is an autogenerated mock type for the TokenHandler type
func (*TokenHandler) TokenHandler ¶
func (_m *TokenHandler) TokenHandler() echo.HandlerFunc
TokenHandler provides a mock function with given fields:
type TokenIssuer ¶
TokenIssuer is an autogenerated mock type for the TokenIssuer type
type UUIDGenerator ¶
UUIDGenerator is an autogenerated mock type for the UUIDGenerator type
func (*UUIDGenerator) Generate ¶
func (_m *UUIDGenerator) Generate() (string, error)
Generate provides a mock function with given fields:
type UserHandler ¶
UserHandler is an autogenerated mock type for the UserHandler type
func (*UserHandler) CreateUser ¶
func (_m *UserHandler) CreateUser() echo.HandlerFunc
CreateUser provides a mock function with given fields:
func (*UserHandler) DeleteUser ¶
func (_m *UserHandler) DeleteUser() echo.HandlerFunc
DeleteUser provides a mock function with given fields:
func (*UserHandler) GetUser ¶
func (_m *UserHandler) GetUser() echo.HandlerFunc
GetUser provides a mock function with given fields:
func (*UserHandler) ListUsers ¶
func (_m *UserHandler) ListUsers() echo.HandlerFunc
ListUsers provides a mock function with given fields:
func (*UserHandler) UpdateUser ¶
func (_m *UserHandler) UpdateUser() echo.HandlerFunc
UpdateUser provides a mock function with given fields:
type UserMiddleware ¶
UserMiddleware is an autogenerated mock type for the UserMiddleware type
func (*UserMiddleware) JWT ¶
func (_m *UserMiddleware) JWT() echo.MiddlewareFunc
JWT provides a mock function with given fields:
type UserStorer ¶
UserStorer is an autogenerated mock type for the UserStorer type
func (*UserStorer) Delete ¶
func (_m *UserStorer) Delete(ctx context.Context, id int) error
Delete provides a mock function with given fields: ctx, id
func (*UserStorer) GetByEmail ¶
GetByEmail provides a mock function with given fields: ctx, email
type UserTokenGenerator ¶
UserTokenGenerator is an autogenerated mock type for the UserTokenGenerator type
type UserTokenHandler ¶
UserTokenHandler is an autogenerated mock type for the UserTokenHandler type
func (*UserTokenHandler) Generate ¶
func (_m *UserTokenHandler) Generate() echo.HandlerFunc
Generate provides a mock function with given fields:
type VCSTokenHandler ¶
VCSTokenHandler is an autogenerated mock type for the VCSTokenHandler type
func (*VCSTokenHandler) Create ¶
func (_m *VCSTokenHandler) Create() echo.HandlerFunc
Create provides a mock function with given fields:
type Vault ¶
Vault is an autogenerated mock type for the Vault type
func (*Vault) DeleteSecret ¶
DeleteSecret provides a mock function with given fields: key
func (*Vault) ListSecrets ¶
ListSecrets provides a mock function with given fields:
func (*Vault) LoadSecrets ¶
LoadSecrets provides a mock function with given fields:
func (*Vault) SaveSecrets ¶
SaveSecrets provides a mock function with given fields:
type VaultHandler ¶
VaultHandler is an autogenerated mock type for the VaultHandler type
func (*VaultHandler) CreateSecret ¶
func (_m *VaultHandler) CreateSecret() echo.HandlerFunc
CreateSecret provides a mock function with given fields:
func (*VaultHandler) DeleteSecret ¶
func (_m *VaultHandler) DeleteSecret() echo.HandlerFunc
DeleteSecret provides a mock function with given fields:
func (*VaultHandler) GetSecret ¶
func (_m *VaultHandler) GetSecret() echo.HandlerFunc
GetSecret provides a mock function with given fields:
func (*VaultHandler) ListSecrets ¶
func (_m *VaultHandler) ListSecrets() echo.HandlerFunc
ListSecrets provides a mock function with given fields:
func (*VaultHandler) UpdateSecret ¶
func (_m *VaultHandler) UpdateSecret() echo.HandlerFunc
UpdateSecret provides a mock function with given fields:
type VaultStorer ¶
VaultStorer is an autogenerated mock type for the VaultStorer type
func (*VaultStorer) Init ¶
func (_m *VaultStorer) Init() error
Init provides a mock function with given fields:
func (*VaultStorer) Read ¶
func (_m *VaultStorer) Read() ([]byte, error)
Read provides a mock function with given fields:
func (*VaultStorer) Write ¶
func (_m *VaultStorer) Write(data []byte) error
Write provides a mock function with given fields: data
Source Files ¶
- apikeys_store_APIKeysStorer.go
- auth_APIKeysAuthenticator.go
- auth_OAuthAuthenticator.go
- auth_RepositoryAuth.go
- auth_TokenIssuer.go
- auth_UserTokenGenerator.go
- command_run_storer_CommandRunStorer.go
- commands_store_CommandStorer.go
- email_Email.go
- environment_EnvironmentConverter.go
- events_store_EventsStorer.go
- executor_Executor.go
- handlers_APIKeysHandler.go
- handlers_AuthHandler.go
- handlers_CommandHandler.go
- handlers_CommandRunHandler.go
- handlers_CommandSettingsHandler.go
- handlers_EventHandler.go
- handlers_HookHandler.go
- handlers_ReadyHandler.go
- handlers_RepositoryHandler.go
- handlers_SupportedPlatformListHandler.go
- handlers_TokenHandler.go
- handlers_UserHandler.go
- handlers_UserMiddleware.go
- handlers_UserTokenHandler.go
- handlers_VCSTokenHandler.go
- handlers_VaultHandler.go
- hooks_Hooks.go
- loader_Loader.go
- platform_Platform.go
- platform_PlatformTokenProvider.go
- plugins_Plugins.go
- ready_check_Ready.go
- repositories_store_RepositoryStorer.go
- tar_Tar.go
- time_Clock.go
- users_store_UserStorer.go
- uuid_UUIDGenerator.go
- vault_Vault.go
- vault_VaultStorer.go
- watcher_Watcher.go