forked from google/keytransparency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
58 lines (52 loc) · 1.89 KB
/
main_test.go
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
// Copyright 2018 Google Inc. All Rights Reserved.
//
// 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 integration
import (
"context"
"flag"
"testing"
"github.com/google/keytransparency/core/integration"
"github.com/google/keytransparency/core/testdata"
"github.com/google/trillian/storage/testdb"
tpb "github.com/google/keytransparency/core/testdata/transcript_go_proto"
)
var generate = flag.Bool("generate", false, "Defines if test vectors should be generated")
// TestIntegration runs all KeyTransparency integration tests.
func TestIntegration(t *testing.T) {
// We can only run the integration tests if there is a MySQL instance available.
testdb.SkipIfNoMySQL(t)
for _, test := range integration.AllTests {
t.Run(test.Name, func(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
env := NewEnv(ctx, t)
defer env.Close()
cctx, cancel := context.WithCancel(ctx)
actions := test.Fn(cctx, env.Env, t)
// Cancel the test function context (and thus exit any
// background sequencer loops) *before* shutting down
// the server and canceling the master context.
cancel()
if *generate {
if err := testdata.WriteTranscript(test.Name, &tpb.Transcript{
Description: test.Name,
Directory: env.Env.Directory,
Actions: actions,
}); err != nil {
t.Fatalf("WriteTranscript() failed: %v", err)
}
}
})
}
}