* implement querying gms for snapshot status * add some documentation * provide snapshot resources after snapshot is created * add rate limiting to backend * fix compilation error * fix typo * add unit tests * finish merge * lint * swagger gen * more testing * remove duplicate test * address a couple PR comments * update switch statement to a map * add timeouts to gms client through the http client * remove extra whitespace * put method back where it was so the PR is less confusing * fix tests * add todo * fix final unit test
186 lines
5.6 KiB
Go
186 lines
5.6 KiB
Go
package fake
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/services/cloudmigration"
|
|
"github.com/grafana/grafana/pkg/services/gcom"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
)
|
|
|
|
var fixedDate = time.Date(2024, 6, 5, 17, 30, 40, 0, time.UTC)
|
|
|
|
// FakeServiceImpl fake implementation of cloudmigration.Service for testing purposes
|
|
type FakeServiceImpl struct {
|
|
ReturnError bool
|
|
}
|
|
|
|
var _ cloudmigration.Service = (*FakeServiceImpl)(nil)
|
|
|
|
func (m FakeServiceImpl) GetToken(_ context.Context) (gcom.TokenView, error) {
|
|
if m.ReturnError {
|
|
return gcom.TokenView{}, fmt.Errorf("mock error")
|
|
}
|
|
return gcom.TokenView{ID: "mock_id", DisplayName: "mock_name"}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) CreateToken(_ context.Context) (cloudmigration.CreateAccessTokenResponse, error) {
|
|
if m.ReturnError {
|
|
return cloudmigration.CreateAccessTokenResponse{}, fmt.Errorf("mock error")
|
|
}
|
|
return cloudmigration.CreateAccessTokenResponse{Token: "mock_token"}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) ValidateToken(ctx context.Context, migration cloudmigration.CloudMigrationSession) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m FakeServiceImpl) DeleteToken(_ context.Context, _ string) error {
|
|
if m.ReturnError {
|
|
return fmt.Errorf("mock error")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) CreateSession(_ context.Context, _ cloudmigration.CloudMigrationSessionRequest) (*cloudmigration.CloudMigrationSessionResponse, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSessionResponse{
|
|
UID: "fake_uid",
|
|
Slug: "fake_stack",
|
|
Created: fixedDate,
|
|
Updated: fixedDate,
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetSession(_ context.Context, _ string) (*cloudmigration.CloudMigrationSession, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSession{UID: "fake"}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) DeleteSession(_ context.Context, _ string) (*cloudmigration.CloudMigrationSession, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSession{UID: "fake"}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetSessionList(_ context.Context) (*cloudmigration.CloudMigrationSessionListResponse, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSessionListResponse{
|
|
Sessions: []cloudmigration.CloudMigrationSessionResponse{
|
|
{UID: "mock_uid_1", Slug: "mock_stack_1", Created: fixedDate, Updated: fixedDate},
|
|
{UID: "mock_uid_2", Slug: "mock_stack_2", Created: fixedDate, Updated: fixedDate},
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) RunMigration(_ context.Context, _ string) (*cloudmigration.MigrateDataResponse, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
r := fakeMigrateDataResponseDTO()
|
|
return &r, nil
|
|
}
|
|
|
|
func fakeMigrateDataResponseDTO() cloudmigration.MigrateDataResponse {
|
|
return cloudmigration.MigrateDataResponse{
|
|
RunUID: "fake_uid",
|
|
Items: []cloudmigration.CloudMigrationResource{
|
|
{Type: "type", RefID: "make_refid", Status: "ok", Error: "none"},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (m FakeServiceImpl) CreateMigrationRun(ctx context.Context, run cloudmigration.CloudMigrationSnapshot) (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetMigrationStatus(_ context.Context, _ string) (*cloudmigration.CloudMigrationSnapshot, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSnapshot{
|
|
ID: 0,
|
|
UID: "fake_uid",
|
|
SessionUID: "fake_mig_uid",
|
|
Resources: fakeMigrateDataResponseDTO().Items,
|
|
Created: fixedDate,
|
|
Updated: fixedDate,
|
|
Finished: fixedDate,
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetMigrationRunList(_ context.Context, _ string) (*cloudmigration.CloudMigrationRunList, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationRunList{
|
|
Runs: []cloudmigration.MigrateDataResponseList{
|
|
{RunUID: "fake_run_uid_1"},
|
|
{RunUID: "fake_run_uid_2"},
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) CreateSnapshot(ctx context.Context, user *user.SignedInUser, sessionUid string) (*cloudmigration.CloudMigrationSnapshot, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSnapshot{
|
|
UID: "fake_uid",
|
|
SessionUID: sessionUid,
|
|
Status: cloudmigration.SnapshotStatusCreating,
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetSnapshot(ctx context.Context, query cloudmigration.GetSnapshotsQuery) (*cloudmigration.CloudMigrationSnapshot, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return &cloudmigration.CloudMigrationSnapshot{
|
|
UID: "fake_uid",
|
|
SessionUID: "fake_uid",
|
|
Status: cloudmigration.SnapshotStatusCreating,
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) GetSnapshotList(ctx context.Context, query cloudmigration.ListSnapshotsQuery) ([]cloudmigration.CloudMigrationSnapshot, error) {
|
|
if m.ReturnError {
|
|
return nil, fmt.Errorf("mock error")
|
|
}
|
|
return []cloudmigration.CloudMigrationSnapshot{
|
|
{
|
|
UID: "fake_uid",
|
|
SessionUID: query.SessionUID,
|
|
Status: cloudmigration.SnapshotStatusCreating,
|
|
},
|
|
{
|
|
UID: "fake_uid",
|
|
SessionUID: query.SessionUID,
|
|
Status: cloudmigration.SnapshotStatusCreating,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) UploadSnapshot(ctx context.Context, sessionUid string, snapshotUid string) error {
|
|
if m.ReturnError {
|
|
return fmt.Errorf("mock error")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m FakeServiceImpl) CancelSnapshot(ctx context.Context, sessionUid string, snapshotUid string) error {
|
|
if m.ReturnError {
|
|
return fmt.Errorf("mock error")
|
|
}
|
|
return nil
|
|
}
|