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:
parent
b871a02ca3
commit
5b4e58f0b8
22
internal/oidc/csrftoken/csrftoken_test.go
Normal file
22
internal/oidc/csrftoken/csrftoken_test.go
Normal 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)
|
||||
}
|
Loading…
Reference in New Issue
Block a user