## Description Adds the footprint file for running nightly load tests out of the repository package. The tests don't do anything at this stage, but that's okay. Also introduces a workflow to kick off the tests every day at 2am UTC. ## Type of change - [X] 🤖 Test - [X] 💻 CI/Deployment ## Issue(s) * #902 ## Test Plan - [X] 💚 E2E
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package tester
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
CorsoLoadTests = "CORSO_LOAD_TESTS"
|
|
CorsoCITests = "CORSO_CI_TESTS"
|
|
CorsoCLIBackupTests = "CORSO_COMMAND_LINE_BACKUP_TESTS"
|
|
CorsoCLIConfigTests = "CORSO_COMMAND_LINE_CONFIG_TESTS"
|
|
CorsoCLIRepoTests = "CORSO_COMMAND_LINE_REPO_TESTS"
|
|
CorsoCLIRestoreTests = "CORSO_COMMAND_LINE_RESTORE_TESTS"
|
|
CorsoCLITests = "CORSO_COMMAND_LINE_TESTS"
|
|
CorsoGraphConnectorTests = "CORSO_GRAPH_CONNECTOR_TESTS"
|
|
CorsoKopiaWrapperTests = "CORSO_KOPIA_WRAPPER_TESTS"
|
|
CorsoModelStoreTests = "CORSO_MODEL_STORE_TESTS"
|
|
CorsoOperationTests = "CORSO_OPERATION_TESTS"
|
|
CorsoRepositoryTests = "CORSO_REPOSITORY_TESTS"
|
|
)
|
|
|
|
// File needs to be a single message .json
|
|
// Use: https://developer.microsoft.com/en-us/graph/graph-explorer for details
|
|
const CorsoGraphConnectorTestSupportFile = "CORSO_TEST_SUPPORT_FILE"
|
|
|
|
// RunOnAny takes in a list of env variable names and returns
|
|
// an error if all of them are zero valued. Implication being:
|
|
// if any of those env vars are truthy, you should run the
|
|
// subsequent tests.
|
|
func RunOnAny(tests ...string) error {
|
|
var l int
|
|
for _, test := range tests {
|
|
l += len(os.Getenv(test))
|
|
}
|
|
|
|
if l == 0 {
|
|
return fmt.Errorf(
|
|
"%s env vars are not flagged for testing",
|
|
strings.Join(tests, ", "))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// LogTimeOfTest logs the test name and the time that it was run.
|
|
func LogTimeOfTest(t *testing.T) string {
|
|
now := time.Now().UTC().Format(time.RFC3339Nano)
|
|
name := t.Name()
|
|
|
|
if name == "" {
|
|
t.Logf("Test run at %s.", now)
|
|
return now
|
|
}
|
|
|
|
t.Logf("%s run at %s", name, now)
|
|
|
|
return now
|
|
}
|