1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
// Copyright 2010 Jonas mg
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package user
import (
"bufio"
"io"
"os"
"testing"
)
func TestShadowParser(t *testing.T) {
f, err := os.Open(fileShadow)
if err != nil {
t.Fatal(err)
}
defer f.Close()
buf := bufio.NewReader(f)
for {
line, _, err := buf.ReadLine()
if err != nil {
if err == io.EOF {
break
}
t.Error(err)
continue
}
if _, err = parseShadow(string(line)); err != nil {
t.Error(err)
}
}
}
func TestShadowFull(t *testing.T) {
entry, err := LookupShadow("root")
if err != nil || entry == nil {
t.Error(err)
}
entries, err := LookupInShadow(S_PASSWD, "!", -1)
if err != nil || entries == nil {
t.Error(err)
}
entries, err = LookupInShadow(S_ALL, nil, -1)
if err != nil || len(entries) == 0 {
t.Error(err)
}
}
func TestShadowCount(t *testing.T) {
count := 2
entries, err := LookupInShadow(S_MIN, 0, count)
if err != nil || len(entries) != count {
t.Error(err)
}
count = 5
entries, err = LookupInShadow(S_ALL, nil, count)
if err != nil || len(entries) != count {
t.Error(err)
}
}
func TestShadowError(t *testing.T) {
_, err := LookupShadow("!!!???")
if _, ok := err.(NoFoundError); !ok {
t.Error("expected to report NoFoundError")
}
if _, err = LookupInShadow(S_MIN, 0, 0); err != errSearch {
t.Error("expected to report errSearch")
}
s := &Shadow{}
if err = s.Add(nil); err != RequiredError("Name") {
t.Error("expected to report RequiredError")
}
}
func TestShadow_Add(t *testing.T) {
shadow := NewShadow(USER)
err := shadow.Add(nil)
if err != nil {
t.Fatal(err)
}
if err = shadow.Add(nil); err == nil {
t.Fatal("a shadowed user existent can not be added again")
} else {
if !IsExist(err) {
t.Error("shadow: expected to report ErrExist")
}
}
s, err := LookupShadow(USER)
if err != nil {
t.Fatal(err)
}
if s.Name != USER {
t.Errorf("shadow: expected to get name %q", USER)
}
}
var (
userKey1 = []byte("123")
userKey2 = []byte("456")
)
func TestShadowCrypt(t *testing.T) {
s, err := LookupShadow(USER)
if err != nil {
t.Fatal(err)
}
s.Passwd(userKey1)
if err = config.crypter.Verify(s.password, userKey1); err != nil {
t.Fatalf("expected to get the same hashed password for %q", userKey1)
}
if err = ChPasswd(USER, userKey2); err != nil {
t.Fatalf("expected to change password: %s", err)
}
s, _ = LookupShadow(USER)
if err = config.crypter.Verify(s.password, userKey2); err != nil {
t.Fatalf("ChPasswd: expected to get the same hashed password for %q", userKey2)
}
}
|