Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
49 lines
864 B
Go
49 lines
864 B
Go
package goenv_test
|
|
|
|
import (
|
|
"go/build"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/ignite/cli/v29/ignite/pkg/goenv"
|
|
)
|
|
|
|
func TestGoModCache(t *testing.T) {
|
|
cases := []struct {
|
|
name, envKey, envValue, want string
|
|
}{
|
|
{
|
|
name: "from go module cache",
|
|
envKey: "GOMODCACHE",
|
|
envValue: "/foo/cache/pkg/mod",
|
|
want: "/foo/cache/pkg/mod",
|
|
},
|
|
{
|
|
name: "from go path",
|
|
envKey: "GOPATH",
|
|
envValue: "/foo/go",
|
|
want: "/foo/go/pkg/mod",
|
|
},
|
|
{
|
|
name: "from default path",
|
|
want: filepath.Join(build.Default.GOPATH, "pkg/mod"),
|
|
},
|
|
}
|
|
|
|
for _, tt := range cases {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
// Arrange
|
|
if tt.envKey != "" {
|
|
t.Setenv(tt.envKey, tt.envValue)
|
|
}
|
|
|
|
// Act
|
|
path := goenv.GoModCache()
|
|
|
|
// Assert
|
|
require.Equal(t, tt.want, path)
|
|
})
|
|
}
|
|
}
|