blob: e9c4e7731545e879422784863999b4f648b4386c [file] [log] [blame]
// 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
//
// http://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 testutil_test
import (
"encoding/json"
"os"
"path/filepath"
"testing"
"github.com/google/tink/go/testutil"
)
func TestWycheproofParsing(t *testing.T) {
type AeadTest struct {
testutil.WycheproofCase
Key string `json:"key"`
IV string `json:"iv"`
AAD string `json:"aad"`
Message string `json:"msg"`
Ciphertext string `json:"ct"`
Tag string `json:"tag"`
}
type AeadGroup struct {
testutil.WycheproofGroup
Tests []*AeadTest `json:"tests"`
}
type AeadSuite struct {
testutil.WycheproofSuite
TestGroups []*AeadGroup `json:"testGroups"`
}
srcDir, ok := os.LookupEnv("TEST_SRCDIR")
if !ok {
t.Skip("TEST_SRCDIR not set")
}
f, err := os.Open(filepath.Join(srcDir, "wycheproof/testvectors/aes_gcm_test.json"))
if err != nil {
t.Fatalf("cannot open file: %s", err)
}
parser := json.NewDecoder(f)
suite := new(AeadSuite)
if err := parser.Decode(suite); err != nil {
t.Fatalf("cannot decode test data: %s", err)
}
if suite.Algorithm != "AES-GCM" {
t.Errorf("suite.Algorithm=%s, want AES-GCM", suite.Algorithm)
}
if suite.TestGroups[0].Tests[0].Key == "" {
t.Error("suite.TestGroups[0].Tests[0].Key is empty")
}
}