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