storj/private/testplanet/run.go

81 lines
2.0 KiB
Go
Raw Normal View History

2019-02-04 20:37:46 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information
package testplanet
import (
"context"
2019-02-04 20:37:46 +00:00
"testing"
"go.uber.org/zap/zaptest"
"storj.io/common/testcontext"
"storj.io/storj/private/dbutil/pgtest"
2019-02-04 20:37:46 +00:00
"storj.io/storj/satellite/satellitedb/satellitedbtest"
"storj.io/uplink"
2019-02-04 20:37:46 +00:00
)
// Run runs testplanet in multiple configurations.
func Run(t *testing.T, config Config, test func(t *testing.T, ctx *testcontext.Context, planet *Planet)) {
databases := satellitedbtest.Databases()
hasDatabase := false
for _, db := range databases {
hasDatabase = hasDatabase || (db.MasterDB.URL != "" && db.MasterDB.URL != "omit")
}
if !hasDatabase {
t.Fatal("Databases flag missing, set at least one:\n" +
"-postgres-test-db=" + pgtest.DefaultPostgres + "\n" +
"-cockroach-test-db=" + pgtest.DefaultCockroach)
}
2019-02-04 20:37:46 +00:00
for _, satelliteDB := range satellitedbtest.Databases() {
2019-02-06 09:16:05 +00:00
satelliteDB := satelliteDB
if satelliteDB.MasterDB.URL == "omit" {
continue
}
t.Run(satelliteDB.Name, func(t *testing.T) {
parallel := !config.NonParallel
if parallel {
t.Parallel()
}
2019-02-04 20:37:46 +00:00
ctx := testcontext.New(t)
defer ctx.Cleanup()
if satelliteDB.MasterDB.URL == "" {
t.Skipf("Database %s connection string not provided. %s", satelliteDB.MasterDB.Name, satelliteDB.MasterDB.Message)
2019-02-04 20:37:46 +00:00
}
2019-02-04 20:37:46 +00:00
planetConfig := config
if planetConfig.Name == "" {
planetConfig.Name = t.Name()
}
planet, err := NewCustom(zaptest.NewLogger(t), config, satelliteDB)
2019-02-04 20:37:46 +00:00
if err != nil {
t.Fatalf("%+v", err)
2019-02-04 20:37:46 +00:00
}
defer ctx.Check(planet.Shutdown)
planet.Start(ctx)
2019-04-22 10:07:50 +01:00
provisionUplinks(ctx, t, planet)
2019-02-04 20:37:46 +00:00
test(t, ctx, planet)
})
}
}
func provisionUplinks(ctx context.Context, t *testing.T, planet *Planet) {
for _, planetUplink := range planet.Uplinks {
for _, satellite := range planet.Satellites {
apiKey := planetUplink.APIKey[satellite.ID()]
access, err := uplink.RequestAccessWithPassphrase(ctx, satellite.URL(), apiKey.Serialize(), "")
if err != nil {
t.Fatalf("%+v", err)
}
planetUplink.Access[satellite.ID()] = access
}
}
}