mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
152 lines
3.3 KiB
Go
152 lines
3.3 KiB
Go
// Copyright 2011 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 user
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func checkUser(t *testing.T) {
|
|
if !userImplemented {
|
|
t.Skip("user: not implemented; skipping tests")
|
|
}
|
|
}
|
|
|
|
func TestCurrent(t *testing.T) {
|
|
if runtime.GOOS == "android" {
|
|
t.Skipf("skipping on %s", runtime.GOOS)
|
|
}
|
|
u, err := Current()
|
|
if err != nil {
|
|
t.Fatalf("Current: %v (got %#v)", err, u)
|
|
}
|
|
if u.HomeDir == "" {
|
|
t.Errorf("didn't get a HomeDir")
|
|
}
|
|
if u.Username == "" {
|
|
t.Errorf("didn't get a username")
|
|
}
|
|
}
|
|
|
|
func compare(t *testing.T, want, got *User) {
|
|
if want.Uid != got.Uid {
|
|
t.Errorf("got Uid=%q; want %q", got.Uid, want.Uid)
|
|
}
|
|
if want.Username != got.Username {
|
|
t.Errorf("got Username=%q; want %q", got.Username, want.Username)
|
|
}
|
|
if want.Name != got.Name {
|
|
t.Errorf("got Name=%q; want %q", got.Name, want.Name)
|
|
}
|
|
// TODO(brainman): fix it once we know how.
|
|
if runtime.GOOS == "windows" {
|
|
t.Skip("skipping Gid and HomeDir comparisons")
|
|
}
|
|
if want.Gid != got.Gid {
|
|
t.Errorf("got Gid=%q; want %q", got.Gid, want.Gid)
|
|
}
|
|
if want.HomeDir != got.HomeDir {
|
|
t.Errorf("got HomeDir=%q; want %q", got.HomeDir, want.HomeDir)
|
|
}
|
|
}
|
|
|
|
func TestLookup(t *testing.T) {
|
|
checkUser(t)
|
|
|
|
if runtime.GOOS == "plan9" {
|
|
t.Skipf("Lookup not implemented on %q", runtime.GOOS)
|
|
}
|
|
|
|
want, err := Current()
|
|
if err != nil {
|
|
t.Fatalf("Current: %v", err)
|
|
}
|
|
got, err := Lookup(want.Username)
|
|
if err != nil {
|
|
t.Fatalf("Lookup: %v", err)
|
|
}
|
|
compare(t, want, got)
|
|
}
|
|
|
|
func TestLookupId(t *testing.T) {
|
|
checkUser(t)
|
|
|
|
if runtime.GOOS == "plan9" {
|
|
t.Skipf("LookupId not implemented on %q", runtime.GOOS)
|
|
}
|
|
|
|
want, err := Current()
|
|
if err != nil {
|
|
t.Fatalf("Current: %v", err)
|
|
}
|
|
got, err := LookupId(want.Uid)
|
|
if err != nil {
|
|
t.Fatalf("LookupId: %v", err)
|
|
}
|
|
compare(t, want, got)
|
|
}
|
|
|
|
func checkGroup(t *testing.T) {
|
|
if !groupImplemented {
|
|
t.Skip("user: group not implemented; skipping test")
|
|
}
|
|
}
|
|
|
|
func TestLookupGroup(t *testing.T) {
|
|
checkGroup(t)
|
|
user, err := Current()
|
|
if err != nil {
|
|
t.Fatalf("Current(): %v", err)
|
|
}
|
|
|
|
g1, err := LookupGroupId(user.Gid)
|
|
if err != nil {
|
|
// NOTE(rsc): Maybe the group isn't defined. That's fine.
|
|
// On my OS X laptop, rsc logs in with group 5000 even
|
|
// though there's no name for group 5000. Such is Unix.
|
|
t.Logf("LookupGroupId(%q): %v", user.Gid, err)
|
|
return
|
|
}
|
|
if g1.Gid != user.Gid {
|
|
t.Errorf("LookupGroupId(%q).Gid = %s; want %s", user.Gid, g1.Gid, user.Gid)
|
|
}
|
|
|
|
g2, err := LookupGroup(g1.Name)
|
|
if err != nil {
|
|
t.Fatalf("LookupGroup(%q): %v", g1.Name, err)
|
|
}
|
|
if g1.Gid != g2.Gid || g1.Name != g2.Name {
|
|
t.Errorf("LookupGroup(%q) = %+v; want %+v", g1.Name, g2, g1)
|
|
}
|
|
}
|
|
|
|
func TestGroupIds(t *testing.T) {
|
|
checkGroup(t)
|
|
if runtime.GOOS == "solaris" {
|
|
t.Skip("skipping GroupIds, see golang.org/issue/14709")
|
|
}
|
|
user, err := Current()
|
|
if err != nil {
|
|
t.Fatalf("Current(): %v", err)
|
|
}
|
|
gids, err := user.GroupIds()
|
|
if err != nil {
|
|
t.Fatalf("%+v.GroupIds(): %v", user, err)
|
|
}
|
|
if !containsID(gids, user.Gid) {
|
|
t.Errorf("%+v.GroupIds() = %v; does not contain user GID %s", user, gids, user.Gid)
|
|
}
|
|
}
|
|
|
|
func containsID(ids []string, id string) bool {
|
|
for _, x := range ids {
|
|
if x == id {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|