storj/lib/uplinkc/testdata_test.go

85 lines
1.9 KiB
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"os"
"os/exec"
"path/filepath"
"testing"
"github.com/stretchr/testify/require"
2019-06-15 12:23:12 +01:00
"go.uber.org/zap/zapcore"
"go.uber.org/zap/zaptest"
"storj.io/storj/internal/testcontext"
"storj.io/storj/internal/testplanet"
)
2019-06-15 12:23:12 +01:00
func RunPlanet(t *testing.T, run func(ctx *testcontext.Context, planet *testplanet.Planet)) {
ctx := testcontext.New(t)
defer ctx.Cleanup()
planet, err := testplanet.NewCustom(
zaptest.NewLogger(t, zaptest.Level(zapcore.WarnLevel)),
testplanet.Config{
SatelliteCount: 1,
StorageNodeCount: 8,
UplinkCount: 1,
Reconfigure: testplanet.DisablePeerCAWhitelist,
},
)
require.NoError(t, err)
defer ctx.Check(planet.Shutdown)
planet.Start(ctx)
run(ctx, planet)
}
func TestC(t *testing.T) {
ctx := testcontext.New(t)
defer ctx.Cleanup()
2019-06-15 12:23:12 +01:00
libuplink := ctx.CompileShared(t, "uplink", "storj.io/storj/lib/uplinkc")
currentdir, err := os.Getwd()
require.NoError(t, err)
definition := testcontext.Include{
Header: filepath.Join(currentdir, "uplink_definitions.h"),
}
ctests, err := filepath.Glob(filepath.Join("testdata", "*_test.c"))
require.NoError(t, err)
t.Run("ALL", func(t *testing.T) {
for _, ctest := range ctests {
ctest := ctest
t.Run(filepath.Base(ctest), func(t *testing.T) {
t.Parallel()
2019-06-15 12:23:12 +01:00
testexe := ctx.CompileC(t, ctest, libuplink, definition)
RunPlanet(t, func(ctx *testcontext.Context, planet *testplanet.Planet) {
cmd := exec.Command(testexe)
cmd.Dir = filepath.Dir(testexe)
cmd.Env = append(os.Environ(),
"SATELLITE_0_ADDR="+planet.Satellites[0].Addr(),
"GATEWAY_0_API_KEY="+planet.Uplinks[0].APIKey[planet.Satellites[0].ID()],
)
out, err := cmd.CombinedOutput()
if err != nil {
t.Error(string(out))
t.Fatal(err)
} else {
t.Log(string(out))
}
})
})
}
})
}