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
Andrei Aaron ce4924f841
refactor: rename go module from zotregistry.io/zot to zotregistry.dev/zot (#2187)
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
2024-01-31 20:34:07 -08:00

37 lines
676 B
Go

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)
}