mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
ce4924f841
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
37 lines
676 B
Go
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)
|
|
}
|