mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-12 01:40:40 +01:00
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
|
package sqlite
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestGenerateKey(t *testing.T) {
|
||
|
testData := "exampl@netbird.io"
|
||
|
key, err := GenerateKey()
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to generate key: %s", err)
|
||
|
}
|
||
|
ee, err := NewEmailEncrypt(key)
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to init email encryption: %s", err)
|
||
|
}
|
||
|
|
||
|
encrypted := ee.Encrypt(testData)
|
||
|
if encrypted == "" {
|
||
|
t.Fatalf("invalid encrypted text")
|
||
|
}
|
||
|
|
||
|
decrypted, err := ee.Decrypt(encrypted)
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to decrypt data: %s", err)
|
||
|
}
|
||
|
|
||
|
if decrypted != testData {
|
||
|
t.Fatalf("decrypted data is not match with test data: %s, %s", testData, decrypted)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestCorruptKey(t *testing.T) {
|
||
|
testData := "exampl@netbird.io"
|
||
|
key, err := GenerateKey()
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to generate key: %s", err)
|
||
|
}
|
||
|
ee, err := NewEmailEncrypt(key)
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to init email encryption: %s", err)
|
||
|
}
|
||
|
|
||
|
encrypted := ee.Encrypt(testData)
|
||
|
if encrypted == "" {
|
||
|
t.Fatalf("invalid encrypted text")
|
||
|
}
|
||
|
|
||
|
newKey, err := GenerateKey()
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to generate key: %s", err)
|
||
|
}
|
||
|
|
||
|
ee, err = NewEmailEncrypt(newKey)
|
||
|
if err != nil {
|
||
|
t.Fatalf("failed to init email encryption: %s", err)
|
||
|
}
|
||
|
|
||
|
res, err := ee.Decrypt(encrypted)
|
||
|
if err == nil || res == testData {
|
||
|
t.Fatalf("incorrect decryption, the result is: %s", res)
|
||
|
}
|
||
|
}
|