Files
releases/internal/jwx/buffer/buffer_test.go
T
Will Beason 3be1d08b87 Change check-lint to use golangci-lint (#3465)
golint is deprecated. The author of the code no longer supports the
codebase. golangci-lint is faster than golint, and is in use by other
opa repositories (e.g. Gatekeeper).

This commit changes tools.go to reference golangci (so it ends up in
vendor) and modifies check-lint to use golangci instead.

Breaking API Changes:

- plugins/rest/rest.go: Fix typo "AllowInsureTLS" -> "AllowInsecureTLS"
- storage/errors.go: Removed unused IndexingNotSupportedErr

Signed-off-by: Will Beason <willbeason@google.com>
2021-05-19 07:52:02 +02:00

90 lines
2.0 KiB
Go

package buffer
import (
"bytes"
"encoding/json"
"testing"
)
func TestBuffer_FromUint(t *testing.T) {
b := FromUint(1)
if !bytes.Equal([]byte{1}, b.Bytes()) {
t.Fatal("mismatched buffer values")
}
}
func TestBuffer_Convert(t *testing.T) {
v1 := []byte{'a', 'b', 'c'}
b := Buffer(v1)
if !bytes.Equal(v1, b.Bytes()) {
t.Fatal("mismatched buffer values")
}
v2 := "abc"
b = Buffer(v2)
if !bytes.Equal([]byte(v2), b.Bytes()) {
t.Fatal("mismatched buffer values")
}
}
func TestBuffer_Base64Encode(t *testing.T) {
b := Buffer{'a', 'b', 'c'}
v, err := b.Base64Encode()
if err != nil {
t.Fatal("failed to base64 encode")
}
if !bytes.Equal([]byte{'Y', 'W', 'J', 'j'}, v) {
t.Fatal("mismatched buffer values")
}
}
func TestJSON(t *testing.T) {
b1 := Buffer{'a', 'b', 'c'}
jsontxt, err := json.Marshal(b1)
if err != nil {
t.Fatal("failed to marshal buffer")
}
if `"YWJj"` != string(jsontxt) {
t.Fatal("mismatched json values")
}
var b2 Buffer
err = json.Unmarshal(jsontxt, &b2)
if err != nil {
t.Fatal("failed to marshal buffer")
}
if !bytes.Equal(b1, b2) {
t.Fatal("mismatched buffer values")
}
}
func TestFunky(t *testing.T) {
s := `QD4_B3ghg0PNu-c_EAlXn3Xlb0gzAFPJSYQSI1cZZ8sPIxISgPMtNJTzgncC281IaKDXLV1aEnYuH5eH-4u4f383zlyBCGKSKSQWmqKNE7xcIqleFVNsfzOucTL4QRxfbcyHcli_symC_RGWJ6GdocE0VgyYN8t9_0sm_Nq5lcwtYEQs_hNlf1ileCjjdsUfC05zTbbrLpMjgI3IK5_QxOU81FLei4LMx3iQ1kqrIGH5FxxQMKGdx_fDaRQ-YBAA2YVqn7rs3TcwQ7NUjjz8JyDE168NlMV1WxoDC9nwOe0O6K4NzFuWpoGHTh0M-0lT5M3dy9kEBYgPtWoe_u9dogA`
b := Buffer{}
err := b.Base64Decode([]byte(s))
if err != nil {
t.Fatal("failed to base64 decode")
}
if 257 != b.Len() {
t.Fatal("Mismatched buffer lengths")
}
}
func TestBuffer_NData(t *testing.T) {
payload := []byte("Alice")
nd := Buffer(payload).NData()
if !bytes.Equal([]byte{0, 0, 0, 5, 65, 108, 105, 99, 101}, nd) {
t.Fatal("mismatched byte buffer values")
}
b1, err := FromNData(nd)
if err != nil {
t.Fatal("failed to extract data")
}
if !bytes.Equal(payload, b1.Bytes()) {
t.Fatal("mismatched byte values ")
}
}