vault/sdk/helper/random/serializing_test.go
Michael Golowka ad90e0b39d
Add user configurable password policies available to secret engines (#8637)
* Add random string generator with rules engine

This adds a random string generation library that validates random
strings against a set of rules. The library is designed for use as generating
passwords, but can be used to generate any random strings.
2020-05-27 12:28:00 -06:00

59 lines
1.1 KiB
Go

package random
import (
"encoding/json"
"reflect"
"testing"
)
func TestJSONMarshalling(t *testing.T) {
expected := serializableRules{
CharsetRule{
Charset: LowercaseRuneset,
MinChars: 1,
},
CharsetRule{
Charset: UppercaseRuneset,
MinChars: 1,
},
CharsetRule{
Charset: NumericRuneset,
MinChars: 1,
},
CharsetRule{
Charset: ShortSymbolRuneset,
MinChars: 1,
},
}
marshalled, err := json.Marshal(expected)
if err != nil {
t.Fatalf("no error expected, got: %s", err)
}
actual := serializableRules{}
err = json.Unmarshal(marshalled, &actual)
if err != nil {
t.Fatalf("no error expected, got: %s", err)
}
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("Actual: %#v\nExpected: %#v", actual, expected)
}
}
func TestRunes_UnmarshalJSON(t *testing.T) {
data := []byte(`"noaw8hgfsdjlkfsj3"`)
expected := runes([]rune("noaw8hgfsdjlkfsj3"))
actual := runes{}
err := (&actual).UnmarshalJSON(data)
if err != nil {
t.Fatalf("no error expected, got: %s", err)
}
if !reflect.DeepEqual(actual, expected) {
t.Fatalf("Actual: %#v\nExpected: %#v", actual, expected)
}
}