mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-02-19 19:44:16 +02:00
* chore(deps): Updated to ginkgo v2 * fix basic auth test suite cleanup * fix redis store tests * add changelog entry --------- Co-authored-by: Jan Larwig <jan@larwig.com>
38 lines
746 B
Go
38 lines
746 B
Go
package header
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/logger"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var (
|
|
filesDir string
|
|
)
|
|
|
|
func TestHeaderSuite(t *testing.T) {
|
|
logger.SetOutput(GinkgoWriter)
|
|
logger.SetErrOutput(GinkgoWriter)
|
|
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Header")
|
|
}
|
|
|
|
var _ = BeforeSuite(func() {
|
|
os.Setenv("SECRET_ENV", "super-secret-env")
|
|
|
|
dir, err := os.MkdirTemp("", "oauth2-proxy-header-suite")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(os.WriteFile(path.Join(dir, "secret-file"), []byte("super-secret-file"), 0644)).To(Succeed())
|
|
filesDir = dir
|
|
})
|
|
|
|
var _ = AfterSuite(func() {
|
|
os.Unsetenv("SECRET_ENV")
|
|
Expect(os.RemoveAll(filesDir)).To(Succeed())
|
|
})
|