2019-03-08 17:42:50 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-08 17:42:50 +01:00
|
|
|
|
|
|
|
package secret
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2020-10-05 07:49:33 +02:00
|
|
|
func TestEncryptDecrypt(t *testing.T) {
|
2023-05-07 13:29:43 +02:00
|
|
|
hex, err := EncryptSecret("foo", "baz")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
str, _ := DecryptSecret("foo", hex)
|
2023-04-22 23:56:27 +02:00
|
|
|
assert.Equal(t, "baz", str)
|
2020-10-05 07:49:33 +02:00
|
|
|
|
2023-05-07 13:29:43 +02:00
|
|
|
hex, err = EncryptSecret("bar", "baz")
|
|
|
|
assert.NoError(t, err)
|
2020-10-05 07:49:33 +02:00
|
|
|
str, _ = DecryptSecret("foo", hex)
|
2023-04-22 23:56:27 +02:00
|
|
|
assert.NotEqual(t, "baz", str)
|
2023-05-07 13:29:43 +02:00
|
|
|
|
|
|
|
_, err = DecryptSecret("a", "b")
|
|
|
|
assert.ErrorContains(t, err, "invalid hex string")
|
|
|
|
|
|
|
|
_, err = DecryptSecret("a", "bb")
|
|
|
|
assert.ErrorContains(t, err, "the key (maybe SECRET_KEY?) might be incorrect: AesDecrypt ciphertext too short")
|
|
|
|
|
|
|
|
_, err = DecryptSecret("a", "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef")
|
|
|
|
assert.ErrorContains(t, err, "the key (maybe SECRET_KEY?) might be incorrect: AesDecrypt invalid decrypted base64 string")
|
2020-10-05 07:49:33 +02:00
|
|
|
}
|