/
githubmirror
/
etcd
Обзор
Документация
Войти
/
githubmirror
/
etcd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
client/pkg/testutil/before.go
56 строк
1 KB
Ivan Valdes
client/pkg: address Go 1.24 usetesting issues
12 мар 2025, 03:35
Не верифицирован
12 мар 2025, 03:35
3f20b70
Код
Авторство
О чём код?
// Copyright 2022 The etcd Authors // // 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 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package testutil import ( "log" "os" "testing" "go.etcd.io/etcd/client/pkg/v3/verify" ) func BeforeTest(tb testing.TB) { tb.Helper() RegisterLeakDetection(tb) revertVerifyFunc := verify.EnableAllVerifications() tempDir := tb.TempDir() tb.Chdir(tempDir) tb.Logf("Changing working directory to: %s", tempDir) tb.Cleanup(func() { revertVerifyFunc() }) } func BeforeIntegrationExamples(*testing.M) func() { ExitInShortMode("Skipping: the tests require real cluster") tempDir, err := os.MkdirTemp(os.TempDir(), "etcd-integration") if err != nil { log.Printf("Failed to obtain tempDir: %v", tempDir) os.Exit(1) } err = os.Chdir(tempDir) if err != nil { log.Printf("Failed to change working dir to: %s: %v", tempDir, err) os.Exit(1) } log.Printf("Running tests (examples) in dir(%v): ...", tempDir) return func() { os.RemoveAll(tempDir) } }