giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
42 lines
870 B
Go
42 lines
870 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package user
|
|
|
|
import (
|
|
"os/exec"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func getWhoamiOutput() (string, error) {
|
|
output, err := exec.Command("whoami").Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(output)), nil
|
|
}
|
|
|
|
func TestCurrentUsername(t *testing.T) {
|
|
user := CurrentUsername()
|
|
require.NotEmpty(t, user)
|
|
|
|
// 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()
|
|
require.NoError(t, err)
|
|
|
|
user = CurrentUsername()
|
|
assert.Equal(t, whoami, user)
|
|
|
|
t.Setenv("USER", "spoofed")
|
|
user = CurrentUsername()
|
|
assert.Equal(t, whoami, user)
|
|
}
|