| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package test
- import (
- "context"
- "errors"
- "github.com/google/uuid"
- "github.com/porter-dev/porter/internal/models"
- "github.com/porter-dev/porter/internal/repository"
- "github.com/porter-dev/porter/internal/repository/gorm/helpers"
- )
- type PorterAppEventRepository struct {
- canQuery bool
- }
- func NewPorterAppEventRepository(canQuery bool, failingMethods ...string) repository.PorterAppEventRepository {
- return &PorterAppEventRepository{canQuery: false}
- }
- func (repo *PorterAppEventRepository) ListEventsByPorterAppID(ctx context.Context, porterAppID uint, opts ...helpers.QueryOption) ([]*models.PorterAppEvent, helpers.PaginatedResult, error) {
- return nil, helpers.PaginatedResult{}, errors.New("cannot write database")
- }
- // ListEventsByPorterAppIDAndDeploymentTargetID is a test method
- func (repo *PorterAppEventRepository) ListEventsByPorterAppIDAndDeploymentTargetID(ctx context.Context, porterAppID uint, deploymentTargetID uuid.UUID, opts ...helpers.QueryOption) ([]*models.PorterAppEvent, helpers.PaginatedResult, error) {
- return nil, helpers.PaginatedResult{}, errors.New("cannot write database")
- }
- // ListBuildDeployEventsByPorterAppIDAndDeploymentTargetID is a test method
- func (repo *PorterAppEventRepository) ListBuildDeployEventsByPorterAppIDAndDeploymentTargetID(ctx context.Context, porterAppID uint, deploymentTargetID uuid.UUID, opts ...helpers.QueryOption) ([]*models.PorterAppEvent, helpers.PaginatedResult, error) {
- return nil, helpers.PaginatedResult{}, errors.New("cannot write database")
- }
- func (repo *PorterAppEventRepository) CreateEvent(ctx context.Context, appEvent *models.PorterAppEvent) error {
- return errors.New("cannot write database")
- }
- func (repo *PorterAppEventRepository) UpdateEvent(ctx context.Context, appEvent *models.PorterAppEvent) error {
- return errors.New("cannot update database")
- }
- func (repo *PorterAppEventRepository) ReadEvent(ctx context.Context, id uuid.UUID) (models.PorterAppEvent, error) {
- return models.PorterAppEvent{}, errors.New("cannot read database")
- }
- func (repo *PorterAppEventRepository) ReadDeployEventByRevision(ctx context.Context, porterAppID uint, revision float64) (models.PorterAppEvent, error) {
- return models.PorterAppEvent{}, errors.New("cannot read database")
- }
- // ReadDeployEventByAppRevisionID is a test method
- func (repo *PorterAppEventRepository) ReadDeployEventByAppRevisionID(ctx context.Context, porterAppID uint, appRevisionID string) (models.PorterAppEvent, error) {
- return models.PorterAppEvent{}, errors.New("cannot read database")
- }
- // ReadNotificationsByAppRevisionID is a test method
- func (repo *PorterAppEventRepository) ReadNotificationsByAppRevisionID(ctx context.Context, porterAppInstanceID uuid.UUID, appRevisionID string) ([]*models.PorterAppEvent, error) {
- return nil, errors.New("cannot read database")
- }
- // NotificationByID returns a notification by the notification id
- func (repo *PorterAppEventRepository) NotificationByID(ctx context.Context, notificationID string) (*models.PorterAppEvent, error) {
- return nil, errors.New("cannot read database")
- }
|