Add some trivial unit tests to internal/oidc/csrftoken.

This change is primarily to test that our test coverage reporting is working as expected.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer
2021-02-02 09:29:09 -06:00
parent b871a02ca3
commit 5b4e58f0b8

View File

@@ -0,0 +1,22 @@
// Copyright 2021 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package csrftoken
import (
"bytes"
"testing"
"github.com/stretchr/testify/require"
)
func TestCSRFToken(t *testing.T) {
tok, err := Generate()
require.NoError(t, err)
require.Len(t, tok, 64)
var empty bytes.Buffer
tok, err = generate(&empty)
require.EqualError(t, err, "could not generate CSRFToken: EOF")
require.Empty(t, tok)
}