Merged in feature/import (pull request #157)

Feature/import

* importstart

* pp

* tests

* importtests

* 100GB

* lint

* passtests

* utc

* awsprofile

* doublequotes

* host
This commit is contained in:
Michael McGuinness
2025-05-27 15:28:46 +00:00
parent 46882da5f5
commit cc2278086f
74 changed files with 992 additions and 4753 deletions
+7 -2
View File
@@ -13,8 +13,10 @@ import (
func TestTriggerExport(t *testing.T) {
ctx, rec := createContext(t)
cfg := &ControllerConfig{}
cons := queryapi.NewControllers(&queryapi.Services{})
svc := createControllerServices(cfg)
cons := queryapi.NewControllers(svc)
err := cons.TriggerExport(ctx, "clientid")
require.NoError(t, err)
@@ -25,7 +27,10 @@ func TestTriggerExport(t *testing.T) {
func TestExportState(t *testing.T) {
ctx, rec := createContext(t)
cons := queryapi.NewControllers(&queryapi.Services{})
cfg := &ControllerConfig{}
svc := createControllerServices(cfg)
cons := queryapi.NewControllers(svc)
id := uuid.New()