-
Notifications
You must be signed in to change notification settings - Fork 580
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
windows: fix parsing of non-ASCII entries in token.Environ
Fixes golang/go#65055, the unexpected behavior of token.Environ in parsing entries containing runes larger than 2 bytes in size Change-Id: I753d2c605e3a2d7a1d90cd18601d6b918f0d3f7a Reviewed-on: https://go-review.googlesource.com/c/sys/+/556895 Auto-Submit: Bryan Mills <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Cherry Mui <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: Quim Muntal <[email protected]>
- Loading branch information
1 parent
f69d32a
commit c3fa2b8
Showing
2 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2024 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package windows_test | ||
|
||
import ( | ||
"fmt" | ||
"slices" | ||
"testing" | ||
|
||
"golang.org/x/sys/windows" | ||
) | ||
|
||
func TestEnvironUTF8(t *testing.T) { | ||
testEnvVariable1Key := "__GO_X_SYS_WINDOWS_ENV_WINDOWS_TEST_VAR_BEAVER" | ||
testEnvVariable1Val := "🦫" | ||
t.Setenv(testEnvVariable1Key, testEnvVariable1Val) | ||
|
||
testEnvVariable2Key := "__GO_X_SYS_WINDOWS_ENV_WINDOWS_TEST_VAR_WHALE" | ||
testEnvVariable2Val := "🐳" | ||
t.Setenv(testEnvVariable2Key, testEnvVariable2Val) | ||
|
||
var userToken windows.Token | ||
|
||
env, err := userToken.Environ(true) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
|
||
testEnvVariable1 := fmt.Sprintf("%s=%s", testEnvVariable1Key, testEnvVariable1Val) | ||
if !slices.Contains(env, testEnvVariable1) { | ||
t.Fatalf("expected to find %s in env", testEnvVariable1) | ||
} | ||
|
||
testEnvVariable2 := fmt.Sprintf("%s=%s", testEnvVariable2Key, testEnvVariable2Val) | ||
if !slices.Contains(env, testEnvVariable2) { | ||
t.Fatalf("expected to find %s in env", testEnvVariable2) | ||
} | ||
} |