2020-04-05 11:50:50 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-11-06 14:17:25 +05:30
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2018-10-18 12:38:20 +05:30
|
|
|
"os/exec"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
2016-11-06 14:17:25 +05:30
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-10-18 12:38:20 +05:30
|
|
|
func getWhoamiOutput() (string, error) {
|
|
|
|
output, err := exec.Command("whoami").Output()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.TrimSpace(string(output)), nil
|
2018-10-18 12:38:20 +05:30
|
|
|
}
|
2016-11-06 14:17:25 +05:30
|
|
|
|
2018-10-18 12:38:20 +05:30
|
|
|
func TestCurrentUsername(t *testing.T) {
|
2016-11-06 14:17:25 +05:30
|
|
|
user := CurrentUsername()
|
2018-10-21 02:55:14 +05:30
|
|
|
if len(user) == 0 {
|
2018-10-18 12:38:20 +05:30
|
|
|
t.Errorf("expected non-empty user, got: %s", user)
|
2016-11-06 14:17:25 +05:30
|
|
|
}
|
2018-10-18 12:38:20 +05:30
|
|
|
// Windows whoami is weird, so just skip remaining tests
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
t.Skip("skipped test because of weird whoami on Windows")
|
|
|
|
}
|
|
|
|
whoami, err := getWhoamiOutput()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to run whoami to test current user: %f", err)
|
|
|
|
}
|
|
|
|
user = CurrentUsername()
|
|
|
|
if user != whoami {
|
|
|
|
t.Errorf("expected %s as user, got: %s", whoami, user)
|
|
|
|
}
|
|
|
|
os.Setenv("USER", "spoofed")
|
2016-11-06 14:17:25 +05:30
|
|
|
user = CurrentUsername()
|
2018-10-18 12:38:20 +05:30
|
|
|
if user != whoami {
|
|
|
|
t.Errorf("expected %s as user, got: %s", whoami, user)
|
2016-11-06 14:17:25 +05:30
|
|
|
}
|
|
|
|
}
|