summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go
deleted file mode 100644
index 0993f9b4cbc..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/legacy/testtype/types.go
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (C) MongoDB, Inc. 2014-present.
-//
-// Licensed under the Apache License, Version 2.0 (the "License"); you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
-
-package testtype
-
-import (
- "os"
- "testing"
-)
-
-const (
- // Integration tests require a mongod running on localhost:33333. If your
- // mongod uses SSL you need to specify the "ssl" type below, and ditto for
- // if your mongod requires auth.
- // First checks for a URI for a Mongod in the env variable TOOLS_TESTING_MONGOD. If it does not find it, looks on localhost:33333
- IntegrationTestType = "TOOLS_TESTING_INTEGRATION"
-
- // Unit tests don't require a real mongod. They may still do file I/O.
- UnitTestType = "TOOLS_TESTING_UNIT"
-
- // Kerberos tests are a special type of integration test that test tools
- // with Kerberos authentication against the drivers Kerberos testing cluster
- // because setting up a KDC every time is too brittle and expensive.
- // (See https://wiki.mongodb.com/display/DH/Testing+Kerberos)
- KerberosTestType = "TOOLS_TESTING_KERBEROS"
-
- // "TOOLS_TESTING_SSL" and "TOOLS_TESTING_AUTH" are used to configure integration tests to run against
- // different mongod configurations. "TOOLS_TESTING_SSL" will configure the integration tests
- // to expect an SSL-enabled mongod on localhost:33333. "TOOLS_TESTING_AUTH" will do the same
- // for an auth-enabled mongod on localhost:33333.
- SSLTestType = "TOOLS_TESTING_SSL"
- AuthTestType = "TOOLS_TESTING_AUTH"
-
- // For now mongoreplay tests are unique, and will have to be explicitly run.
- MongoReplayTestType = "TOOLS_TESTING_REPLAY"
-)
-
-func HasTestType(testType string) bool {
- envVal := os.Getenv(testType)
- return envVal == "true"
-}
-
-// Skip the test if the specified type is not being run.
-func SkipUnlessTestType(t *testing.T, testType string) {
- if !HasTestType(testType) {
- t.SkipNow()
- }
-}
-
-func SkipUnlessBenchmarkType(b *testing.B, testType string) {
- if !HasTestType(testType) {
- b.SkipNow()
- }
-}