mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
35e0e078b7
* pkg/util: Check errors * pkg/services: DRY up code
32 lines
723 B
Go
32 lines
723 B
Go
package util
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestEncryption(t *testing.T) {
|
|
|
|
Convey("When getting encryption key", t, func() {
|
|
|
|
key, err := encryptionKeyToBytes("secret", "salt")
|
|
So(err, ShouldBeNil)
|
|
So(len(key), ShouldEqual, 32)
|
|
|
|
key, err = encryptionKeyToBytes("a very long secret key that is larger then 32bytes", "salt")
|
|
So(err, ShouldBeNil)
|
|
So(len(key), ShouldEqual, 32)
|
|
})
|
|
|
|
Convey("When decrypting basic payload", t, func() {
|
|
encrypted, encryptErr := Encrypt([]byte("grafana"), "1234")
|
|
decrypted, decryptErr := Decrypt(encrypted, "1234")
|
|
|
|
So(encryptErr, ShouldBeNil)
|
|
So(decryptErr, ShouldBeNil)
|
|
So(string(decrypted), ShouldEqual, "grafana")
|
|
})
|
|
|
|
}
|