mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 20:40:33 +08:00

* Override platform with GOOS and GOARCH * Update v2/cmd/wails/internal/commands/build/build.go Co-authored-by: stffabi <stffabi@users.noreply.github.com> * Only use GOOS and GOARCH env vars for default target * Update docs. Add dryrun flag for testing * Update v2/cmd/wails/internal/commands/build/build.go Co-authored-by: stffabi <stffabi@users.noreply.github.com> * Fix scenario where no arch specified * Fixed banner Co-authored-by: stffabi <stffabi@users.noreply.github.com>
38 lines
905 B
Go
38 lines
905 B
Go
package build
|
|
|
|
import "testing"
|
|
|
|
func TestUpdateEnv(t *testing.T) {
|
|
|
|
env := []string{"one=1", "two=a=b", "three="}
|
|
newEnv := upsertEnv(env, "two", func(v string) string {
|
|
return v + "+added"
|
|
})
|
|
newEnv = upsertEnv(newEnv, "newVar", func(v string) string {
|
|
return "added"
|
|
})
|
|
newEnv = upsertEnv(newEnv, "three", func(v string) string {
|
|
return "3"
|
|
})
|
|
newEnv = upsertEnv(newEnv, "GOARCH", func(v string) string {
|
|
return "amd64"
|
|
})
|
|
|
|
if len(newEnv) != 5 {
|
|
t.Errorf("expected: 5, got: %d", len(newEnv))
|
|
}
|
|
if newEnv[1] != "two=a=b+added" {
|
|
t.Errorf("expected: \"two=a=b+added\", got: %q", newEnv[1])
|
|
}
|
|
if newEnv[2] != "three=3" {
|
|
t.Errorf("expected: \"three=3\", got: %q", newEnv[2])
|
|
}
|
|
if newEnv[3] != "newVar=added" {
|
|
t.Errorf("expected: \"newVar=added\", got: %q", newEnv[3])
|
|
}
|
|
if newEnv[4] != "GOARCH=amd64" {
|
|
t.Errorf("expected: \"newVar=added\", got: %q", newEnv[4])
|
|
}
|
|
|
|
}
|