1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package piv
import (
"errors"
"strings"
"testing"
)
func runContextTest(t *testing.T, f func(t *testing.T, c *scContext)) {
ctx, err := newSCContext()
if err != nil {
t.Fatalf("creating context: %v", err)
}
defer func() {
if err := ctx.Close(); err != nil {
t.Errorf("closing context: %v", err)
}
}()
f(t, ctx)
}
func TestContextClose(t *testing.T) {
runContextTest(t, func(t *testing.T, c *scContext) {})
}
func TestContextListReaders(t *testing.T) {
runContextTest(t, testContextListReaders)
}
func testContextListReaders(t *testing.T, c *scContext) {
if _, err := c.ListReaders(); err != nil {
t.Errorf("listing readers: %v", err)
}
}
func runHandleTest(t *testing.T, f func(t *testing.T, h *scHandle)) {
runContextTest(t, func(t *testing.T, c *scContext) {
readers, err := c.ListReaders()
if err != nil {
t.Fatalf("listing smartcard readers: %v", err)
}
reader := ""
for _, r := range readers {
if strings.Contains(strings.ToLower(r), "yubikey") {
reader = r
break
}
}
if reader == "" {
t.Skip("could not find yubikey, skipping testing")
}
h, err := c.Connect(reader)
if err != nil {
t.Fatalf("connecting to %s: %v", reader, err)
}
defer func() {
if err := h.Close(); err != nil {
t.Errorf("disconnecting from handle: %v", err)
}
}()
f(t, h)
})
}
func TestHandle(t *testing.T) {
runHandleTest(t, func(t *testing.T, h *scHandle) {})
}
func TestTransaction(t *testing.T) {
runHandleTest(t, func(t *testing.T, h *scHandle) {
tx, err := h.Begin()
if err != nil {
t.Fatalf("beginning transaction: %v", err)
}
if err := tx.Close(); err != nil {
t.Fatalf("closing transaction: %v", err)
}
})
}
func TestErrors(t *testing.T) {
var tests = []struct {
sw1, sw2 byte
isErrNotFound bool
isAuthErr bool
retries int
desc string
}{
{0x68, 0x82, false, false, 0, "secure messaging not supported"},
{0x63, 0x00, false, true, 0, "verification failed"},
{0x63, 0xc0, false, true, 0, "verification failed (0 retries remaining)"},
{0x63, 0xc1, false, true, 1, "verification failed (1 retry remaining)"},
{0x63, 0xcf, false, true, 15, "verification failed (15 retries remaining)"},
{0x63, 0x01, false, true, 1, "verification failed (1 retry remaining)"},
{0x63, 0x0f, false, true, 15, "verification failed (15 retries remaining)"},
{0x69, 0x83, false, true, 0, "authentication method blocked"},
{0x6a, 0x82, true, false, 0, "data object or application not found"},
}
for _, tc := range tests {
err := &apduErr{tc.sw1, tc.sw2}
if errors.Is(err, ErrNotFound) != tc.isErrNotFound {
var s string
if !tc.isErrNotFound {
s = " not"
}
t.Errorf("%q should%s be ErrNotFound", tc.desc, s)
}
var authErr AuthErr
if errors.As(err, &authErr) != tc.isAuthErr {
var s string
if !tc.isAuthErr {
s = " not"
}
t.Errorf("%q should%s be AuthErr", tc.desc, s)
}
if authErr.Retries != tc.retries {
t.Errorf("%q retries should be %d, got %d", tc.desc, tc.retries, authErr.Retries)
}
if !strings.Contains(err.Error(), tc.desc) {
t.Errorf("Error %v should contain text %v", err, tc.desc)
}
}
}
|