blob: 5b6dd8857db2bced475bbf294679431b6b75c21d [file] [log] [blame]
David Benjamin491b9212015-02-11 14:18:45 -05001/* Copyright (c) 2015, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15package main
16
17import (
18 "bytes"
David Benjamin5f237bc2015-02-11 17:14:15 -050019 "encoding/json"
David Benjamin491b9212015-02-11 14:18:45 -050020 "flag"
21 "fmt"
22 "os"
23 "os/exec"
24 "path"
25 "strings"
David Benjamin5f237bc2015-02-11 17:14:15 -050026 "time"
David Benjamin491b9212015-02-11 14:18:45 -050027)
28
29// TODO(davidben): Link tests with the malloc shim and port -malloc-test to this runner.
30
31var (
32 useValgrind = flag.Bool("valgrind", false, "If true, run code under valgrind")
33 buildDir = flag.String("build-dir", "build", "The build directory to run the tests from.")
David Benjamin5f237bc2015-02-11 17:14:15 -050034 jsonOutput = flag.String("json-output", "", "The file to output JSON results to.")
David Benjamin491b9212015-02-11 14:18:45 -050035)
36
37type test []string
38
39var tests = []test{
40 {"crypto/base64/base64_test"},
41 {"crypto/bio/bio_test"},
42 {"crypto/bn/bn_test"},
43 {"crypto/bytestring/bytestring_test"},
44 {"crypto/cipher/aead_test", "aes-128-gcm", "crypto/cipher/test/aes_128_gcm_tests.txt"},
45 {"crypto/cipher/aead_test", "aes-128-key-wrap", "crypto/cipher/test/aes_128_key_wrap_tests.txt"},
46 {"crypto/cipher/aead_test", "aes-256-gcm", "crypto/cipher/test/aes_256_gcm_tests.txt"},
47 {"crypto/cipher/aead_test", "aes-256-key-wrap", "crypto/cipher/test/aes_256_key_wrap_tests.txt"},
48 {"crypto/cipher/aead_test", "chacha20-poly1305", "crypto/cipher/test/chacha20_poly1305_tests.txt"},
49 {"crypto/cipher/aead_test", "rc4-md5-tls", "crypto/cipher/test/rc4_md5_tls_tests.txt"},
50 {"crypto/cipher/aead_test", "rc4-sha1-tls", "crypto/cipher/test/rc4_sha1_tls_tests.txt"},
51 {"crypto/cipher/aead_test", "aes-128-cbc-sha1-tls", "crypto/cipher/test/aes_128_cbc_sha1_tls_tests.txt"},
52 {"crypto/cipher/aead_test", "aes-128-cbc-sha1-tls-implicit-iv", "crypto/cipher/test/aes_128_cbc_sha1_tls_implicit_iv_tests.txt"},
53 {"crypto/cipher/aead_test", "aes-128-cbc-sha256-tls", "crypto/cipher/test/aes_128_cbc_sha256_tls_tests.txt"},
54 {"crypto/cipher/aead_test", "aes-256-cbc-sha1-tls", "crypto/cipher/test/aes_256_cbc_sha1_tls_tests.txt"},
55 {"crypto/cipher/aead_test", "aes-256-cbc-sha1-tls-implicit-iv", "crypto/cipher/test/aes_256_cbc_sha1_tls_implicit_iv_tests.txt"},
56 {"crypto/cipher/aead_test", "aes-256-cbc-sha256-tls", "crypto/cipher/test/aes_256_cbc_sha256_tls_tests.txt"},
57 {"crypto/cipher/aead_test", "aes-256-cbc-sha384-tls", "crypto/cipher/test/aes_256_cbc_sha384_tls_tests.txt"},
58 {"crypto/cipher/aead_test", "des-ede3-cbc-sha1-tls", "crypto/cipher/test/des_ede3_cbc_sha1_tls_tests.txt"},
59 {"crypto/cipher/aead_test", "des-ede3-cbc-sha1-tls-implicit-iv", "crypto/cipher/test/des_ede3_cbc_sha1_tls_implicit_iv_tests.txt"},
60 {"crypto/cipher/aead_test", "rc4-md5-ssl3", "crypto/cipher/test/rc4_md5_ssl3_tests.txt"},
61 {"crypto/cipher/aead_test", "rc4-sha1-ssl3", "crypto/cipher/test/rc4_sha1_ssl3_tests.txt"},
62 {"crypto/cipher/aead_test", "aes-128-cbc-sha1-ssl3", "crypto/cipher/test/aes_128_cbc_sha1_ssl3_tests.txt"},
63 {"crypto/cipher/aead_test", "aes-256-cbc-sha1-ssl3", "crypto/cipher/test/aes_256_cbc_sha1_ssl3_tests.txt"},
64 {"crypto/cipher/aead_test", "des-ede3-cbc-sha1-ssl3", "crypto/cipher/test/des_ede3_cbc_sha1_ssl3_tests.txt"},
Adam Langley0e782a92015-03-13 12:11:00 -070065 {"crypto/cipher/aead_test", "aes-128-ctr-hmac-sha256", "crypto/cipher/test/aes_128_ctr_hmac_sha256.txt"},
66 {"crypto/cipher/aead_test", "aes-256-ctr-hmac-sha256", "crypto/cipher/test/aes_256_ctr_hmac_sha256.txt"},
David Benjamin491b9212015-02-11 14:18:45 -050067 {"crypto/cipher/cipher_test", "crypto/cipher/test/cipher_test.txt"},
Adam Langley0d107e12015-05-05 16:36:32 -070068 {"crypto/cmac/cmac_test"},
David Benjamin491b9212015-02-11 14:18:45 -050069 {"crypto/constant_time_test"},
70 {"crypto/dh/dh_test"},
71 {"crypto/digest/digest_test"},
72 {"crypto/dsa/dsa_test"},
73 {"crypto/ec/ec_test"},
74 {"crypto/ec/example_mul"},
75 {"crypto/ecdsa/ecdsa_test"},
76 {"crypto/err/err_test"},
David Benjamin0f869652015-05-09 22:52:33 -040077 {"crypto/evp/evp_extra_test"},
David Benjamin5c694e32015-05-11 15:58:08 -040078 {"crypto/evp/evp_test", "crypto/evp/evp_tests.txt"},
79 {"crypto/evp/evp_test", "crypto/hmac/hmac_tests.txt"},
David Benjamin491b9212015-02-11 14:18:45 -050080 {"crypto/evp/pbkdf_test"},
81 {"crypto/hkdf/hkdf_test"},
David Benjamin06b94de2015-05-09 22:46:47 -040082 {"crypto/hmac/hmac_test", "crypto/hmac/hmac_tests.txt"},
David Benjamin491b9212015-02-11 14:18:45 -050083 {"crypto/lhash/lhash_test"},
84 {"crypto/modes/gcm_test"},
85 {"crypto/pkcs8/pkcs12_test"},
Adam Langley6f2e7332015-05-15 12:01:29 -070086 {"crypto/refcount_test"},
David Benjamin491b9212015-02-11 14:18:45 -050087 {"crypto/rsa/rsa_test"},
Adam Langleyd7c5dfb2015-03-16 12:48:56 -070088 {"crypto/thread_test"},
David Benjamin491b9212015-02-11 14:18:45 -050089 {"crypto/x509/pkcs7_test"},
90 {"crypto/x509v3/tab_test"},
91 {"crypto/x509v3/v3name_test"},
92 {"ssl/pqueue/pqueue_test"},
93 {"ssl/ssl_test"},
94}
95
David Benjamin5f237bc2015-02-11 17:14:15 -050096// testOutput is a representation of Chromium's JSON test result format. See
97// https://www.chromium.org/developers/the-json-test-results-format
98type testOutput struct {
99 Version int `json:"version"`
100 Interrupted bool `json:"interrupted"`
101 PathDelimiter string `json:"path_delimiter"`
102 SecondsSinceEpoch float64 `json:"seconds_since_epoch"`
103 NumFailuresByType map[string]int `json:"num_failures_by_type"`
104 Tests map[string]testResult `json:"tests"`
105}
106
107type testResult struct {
David Benjamin7ead6052015-04-04 03:57:26 -0400108 Actual string `json:"actual"`
109 Expected string `json:"expected"`
110 IsUnexpected bool `json:"is_unexpected"`
David Benjamin5f237bc2015-02-11 17:14:15 -0500111}
112
113func newTestOutput() *testOutput {
114 return &testOutput{
115 Version: 3,
116 PathDelimiter: ".",
117 SecondsSinceEpoch: float64(time.Now().UnixNano()) / float64(time.Second/time.Nanosecond),
118 NumFailuresByType: make(map[string]int),
119 Tests: make(map[string]testResult),
120 }
121}
122
123func (t *testOutput) addResult(name, result string) {
124 if _, found := t.Tests[name]; found {
125 panic(name)
126 }
David Benjamin7ead6052015-04-04 03:57:26 -0400127 t.Tests[name] = testResult{
128 Actual: result,
129 Expected: "PASS",
130 IsUnexpected: result != "PASS",
131 }
David Benjamin5f237bc2015-02-11 17:14:15 -0500132 t.NumFailuresByType[result]++
133}
134
135func (t *testOutput) writeTo(name string) error {
136 file, err := os.Create(name)
137 if err != nil {
138 return err
139 }
140 defer file.Close()
141 out, err := json.MarshalIndent(t, "", " ")
142 if err != nil {
143 return err
144 }
145 _, err = file.Write(out)
146 return err
147}
148
David Benjamin491b9212015-02-11 14:18:45 -0500149func valgrindOf(dbAttach bool, path string, args ...string) *exec.Cmd {
150 valgrindArgs := []string{"--error-exitcode=99", "--track-origins=yes", "--leak-check=full"}
151 if dbAttach {
152 valgrindArgs = append(valgrindArgs, "--db-attach=yes", "--db-command=xterm -e gdb -nw %f %p")
153 }
154 valgrindArgs = append(valgrindArgs, path)
155 valgrindArgs = append(valgrindArgs, args...)
156
157 return exec.Command("valgrind", valgrindArgs...)
158}
159
160func runTest(test test) (passed bool, err error) {
161 prog := path.Join(*buildDir, test[0])
162 args := test[1:]
163 var cmd *exec.Cmd
164 if *useValgrind {
165 cmd = valgrindOf(false, prog, args...)
166 } else {
167 cmd = exec.Command(prog, args...)
168 }
169 var stdoutBuf bytes.Buffer
170 cmd.Stdout = &stdoutBuf
171 cmd.Stderr = os.Stderr
172
173 if err := cmd.Start(); err != nil {
174 return false, err
175 }
176 if err := cmd.Wait(); err != nil {
177 return false, err
178 }
179
180 // Account for Windows line-endings.
181 stdout := bytes.Replace(stdoutBuf.Bytes(), []byte("\r\n"), []byte("\n"), -1)
182
183 if bytes.HasSuffix(stdout, []byte("PASS\n")) &&
184 (len(stdout) == 5 || stdout[len(stdout)-6] == '\n') {
185 return true, nil
186 }
187 return false, nil
188}
189
David Benjamin5c694e32015-05-11 15:58:08 -0400190// shortTestName returns the short name of a test. Except for evp_test, it
191// assumes that any argument which ends in .txt is a path to a data file and not
192// relevant to the test's uniqueness.
David Benjamin5f237bc2015-02-11 17:14:15 -0500193func shortTestName(test test) string {
194 var args []string
195 for _, arg := range test {
David Benjamin5c694e32015-05-11 15:58:08 -0400196 if test[0] == "crypto/evp/evp_test" || !strings.HasSuffix(arg, ".txt") {
David Benjamin5f237bc2015-02-11 17:14:15 -0500197 args = append(args, arg)
198 }
199 }
200 return strings.Join(args, " ")
201}
202
David Benjamin491b9212015-02-11 14:18:45 -0500203func main() {
204 flag.Parse()
205
David Benjamin5f237bc2015-02-11 17:14:15 -0500206 testOutput := newTestOutput()
David Benjamin491b9212015-02-11 14:18:45 -0500207 var failed []test
208 for _, test := range tests {
209 fmt.Printf("%s\n", strings.Join([]string(test), " "))
David Benjamin5f237bc2015-02-11 17:14:15 -0500210
211 name := shortTestName(test)
David Benjamin491b9212015-02-11 14:18:45 -0500212 passed, err := runTest(test)
213 if err != nil {
David Benjamin5f237bc2015-02-11 17:14:15 -0500214 fmt.Printf("%s failed to complete: %s\n", test[0], err)
David Benjamin491b9212015-02-11 14:18:45 -0500215 failed = append(failed, test)
David Benjamin5f237bc2015-02-11 17:14:15 -0500216 testOutput.addResult(name, "CRASHED")
217 } else if !passed {
David Benjamin491b9212015-02-11 14:18:45 -0500218 fmt.Printf("%s failed to print PASS on the last line.\n", test[0])
219 failed = append(failed, test)
David Benjamin5f237bc2015-02-11 17:14:15 -0500220 testOutput.addResult(name, "FAIL")
221 } else {
222 testOutput.addResult(name, "PASS")
David Benjamin491b9212015-02-11 14:18:45 -0500223 }
224 }
225
David Benjamin5f237bc2015-02-11 17:14:15 -0500226 if *jsonOutput != "" {
227 if err := testOutput.writeTo(*jsonOutput); err != nil {
228 fmt.Fprintf(os.Stderr, "Error: %s\n", err)
229 }
230 }
David Benjamin2ab7a862015-04-04 17:02:18 -0400231
232 if len(failed) > 0 {
233 fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(tests))
234 for _, test := range failed {
235 fmt.Printf("\t%s\n", strings.Join([]string(test), " "))
236 }
237 os.Exit(1)
238 }
239
240 fmt.Printf("\nAll tests passed!\n")
David Benjamin491b9212015-02-11 14:18:45 -0500241}