2019-03-08 16:42:50 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-08 16:42:50 +00:00
|
|
|
|
|
|
|
package secret
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2020-10-05 05:49:33 +00:00
|
|
|
func TestEncryptDecrypt(t *testing.T) {
|
2023-05-07 11:29:43 +00:00
|
|
|
hex, err := EncryptSecret("foo", "baz")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
str, _ := DecryptSecret("foo", hex)
|
2023-04-22 21:56:27 +00:00
|
|
|
assert.Equal(t, "baz", str)
|
2020-10-05 05:49:33 +00:00
|
|
|
|
2023-05-07 11:29:43 +00:00
|
|
|
hex, err = EncryptSecret("bar", "baz")
|
|
|
|
assert.NoError(t, err)
|
2020-10-05 05:49:33 +00:00
|
|
|
str, _ = DecryptSecret("foo", hex)
|
2023-04-22 21:56:27 +00:00
|
|
|
assert.NotEqual(t, "baz", str)
|
2023-05-07 11:29:43 +00: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 05:49:33 +00:00
|
|
|
}
|