0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-30 22:34:13 -05:00
zot/pkg/test/skip/skip_test.go

38 lines
676 B
Go
Raw Normal View History

package skip_test
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
tskip "zotregistry.dev/zot/pkg/test/skip"
)
// for code coverage.
func TestSkipS3(t *testing.T) {
envName := "S3MOCK_ENDPOINT"
envVal := os.Getenv(envName)
if len(envVal) > 0 {
defer os.Setenv(envName, envVal)
err := os.Unsetenv(envName)
assert.Equal(t, err, nil, "Error should be nil")
}
tskip.SkipS3(t)
}
func TestSkipDynamo(t *testing.T) {
envName := "DYNAMODBMOCK_ENDPOINT"
envVal := os.Getenv(envName)
if len(envVal) > 0 {
defer os.Setenv(envName, envVal)
err := os.Unsetenv(envName)
assert.Equal(t, err, nil, "Error should be nil")
}
tskip.SkipDynamo(t)
}