43 lines
837 B
Go
43 lines
837 B
Go
|
package unix_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/matryer/is"
|
||
|
|
||
|
"github.com/sour-is/go-passwd"
|
||
|
"github.com/sour-is/go-passwd/pkg/unix"
|
||
|
)
|
||
|
|
||
|
func TestPasswdHash(t *testing.T) {
|
||
|
type testCase struct {
|
||
|
pass, hash string
|
||
|
}
|
||
|
|
||
|
tests := []testCase{
|
||
|
{"passwd", "$1$76a2173be6393254e72ffa4d6df1030a"},
|
||
|
{"passwd", "$2a$10$GkJwB.nOaaeAvRGgyl2TI.kruM8e.iIo.OozgdslegpNlC/vIFKRq"},
|
||
|
}
|
||
|
|
||
|
is := is.New(t)
|
||
|
// Generate additional test cases for each algo.
|
||
|
for _, algo := range unix.All {
|
||
|
hash, err := algo.Passwd("passwd", "")
|
||
|
is.NoErr(err)
|
||
|
tests = append(tests, testCase{"passwd", hash})
|
||
|
}
|
||
|
|
||
|
pass := passwd.New(unix.All...)
|
||
|
|
||
|
for i, tt := range tests {
|
||
|
t.Run(fmt.Sprint("Test-", i), func(t *testing.T) {
|
||
|
is := is.New(t)
|
||
|
|
||
|
hash, err := pass.Passwd(tt.pass, tt.hash)
|
||
|
is.Equal(hash, tt.hash)
|
||
|
is.NoErr(err)
|
||
|
})
|
||
|
}
|
||
|
}
|