mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-24 23:59:08 +02:00
37 lines
1.3 KiB
Go
37 lines
1.3 KiB
Go
//go:build !darwin && !windows
|
|
|
|
package certproof
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestStoreWithToken(t *testing.T) {
|
|
dir := t.TempDir()
|
|
|
|
files, ok := storeWithToken(Config{Dir: dir}).(*FileStore)
|
|
require.True(t, ok, "a directory alone reads that directory alone")
|
|
assert.Equal(t, dir, files.dir, "the configured directory replaces the default")
|
|
|
|
files, ok = storeWithToken(Config{}).(*FileStore)
|
|
require.True(t, ok, "nothing configured reads the PEM directory alone")
|
|
assert.Equal(t, StoreDir(), files.dir, "no directory configured falls back to the environment or the default")
|
|
|
|
assert.IsType(t, &FileStore{}, storeWithToken(Config{PKCS11: PKCS11Config{URI: "not-a-pkcs11-uri"}}), "an invalid URI must not hide the PEM directory")
|
|
|
|
for name, cfg := range map[string]PKCS11Config{
|
|
"pin alone": {PIN: "1234"},
|
|
"uri alone": {URI: "pkcs11:token=netbird?pin-value=1234"},
|
|
} {
|
|
store, ok := storeWithToken(Config{Dir: dir, PKCS11: cfg}).(Stores)
|
|
require.True(t, ok, "%s joins the token to the PEM directory", name)
|
|
require.Len(t, store, 2, name)
|
|
token, ok := store[1].(*PKCS11Store)
|
|
require.True(t, ok, name)
|
|
assert.Equal(t, dir, token.certDir, "%s: the token pairs certificates from the same directory", name)
|
|
}
|
|
}
|