2010-12-03 04:34:57 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2011-05-20 00:18:15 +00:00
|
|
|
// Package testing provides support for automated testing of Go packages.
|
2010-12-03 04:34:57 +00:00
|
|
|
// It is intended to be used in concert with the ``gotest'' utility, which automates
|
|
|
|
// execution of any function of the form
|
|
|
|
// func TestXxx(*testing.T)
|
|
|
|
// where Xxx can be any alphanumeric string (but the first letter must not be in
|
|
|
|
// [a-z]) and serves to identify the test routine.
|
|
|
|
// These TestXxx routines should be declared within the package they are testing.
|
|
|
|
//
|
|
|
|
// Functions of the form
|
|
|
|
// func BenchmarkXxx(*testing.B)
|
2011-03-16 23:05:44 +00:00
|
|
|
// are considered benchmarks, and are executed by gotest when the -test.bench
|
2010-12-03 04:34:57 +00:00
|
|
|
// flag is provided.
|
|
|
|
//
|
|
|
|
// A sample benchmark function looks like this:
|
|
|
|
// func BenchmarkHello(b *testing.B) {
|
|
|
|
// for i := 0; i < b.N; i++ {
|
|
|
|
// fmt.Sprintf("hello")
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// The benchmark package will vary b.N until the benchmark function lasts
|
|
|
|
// long enough to be timed reliably. The output
|
|
|
|
// testing.BenchmarkHello 500000 4076 ns/op
|
|
|
|
// means that the loop ran 500000 times at a speed of 4076 ns per loop.
|
|
|
|
//
|
|
|
|
// If a benchmark needs some expensive setup before running, the timer
|
|
|
|
// may be stopped:
|
|
|
|
// func BenchmarkBigLen(b *testing.B) {
|
|
|
|
// b.StopTimer()
|
|
|
|
// big := NewBig()
|
|
|
|
// b.StartTimer()
|
|
|
|
// for i := 0; i < b.N; i++ {
|
|
|
|
// big.Len()
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"runtime"
|
2011-03-24 23:46:17 +00:00
|
|
|
"runtime/pprof"
|
2011-09-16 15:47:21 +00:00
|
|
|
"strconv"
|
2011-10-26 23:57:58 +00:00
|
|
|
"strings"
|
2011-03-16 23:05:44 +00:00
|
|
|
"time"
|
2010-12-03 04:34:57 +00:00
|
|
|
)
|
|
|
|
|
2011-03-24 23:46:17 +00:00
|
|
|
var (
|
2011-03-30 15:33:16 +00:00
|
|
|
// The short flag requests that tests run more quickly, but its functionality
|
|
|
|
// is provided by test writers themselves. The testing package is just its
|
|
|
|
// home. The all.bash installation script sets it to make installation more
|
|
|
|
// efficient, but by default the flag is off so a plain "gotest" will do a
|
|
|
|
// full test of the package.
|
|
|
|
short = flag.Bool("test.short", false, "run smaller test suite to save time")
|
|
|
|
|
2011-03-24 23:46:17 +00:00
|
|
|
// Report as tests are run; default is silent for success.
|
|
|
|
chatty = flag.Bool("test.v", false, "verbose: print additional output")
|
|
|
|
match = flag.String("test.run", "", "regular expression to select tests to run")
|
|
|
|
memProfile = flag.String("test.memprofile", "", "write a memory profile to the named file after execution")
|
|
|
|
memProfileRate = flag.Int("test.memprofilerate", 0, "if >=0, sets runtime.MemProfileRate")
|
|
|
|
cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to the named file during execution")
|
2011-03-31 22:36:10 +00:00
|
|
|
timeout = flag.Int64("test.timeout", 0, "if > 0, sets time limit for tests in seconds")
|
2011-09-16 15:47:21 +00:00
|
|
|
cpuListStr = flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
|
2011-10-26 23:57:58 +00:00
|
|
|
parallel = flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
|
2011-09-16 15:47:21 +00:00
|
|
|
|
|
|
|
cpuList []int
|
2011-03-24 23:46:17 +00:00
|
|
|
)
|
2010-12-03 04:34:57 +00:00
|
|
|
|
2011-03-30 15:33:16 +00:00
|
|
|
// Short reports whether the -test.short flag is set.
|
|
|
|
func Short() bool {
|
|
|
|
return *short
|
|
|
|
}
|
|
|
|
|
2011-12-12 23:40:51 +00:00
|
|
|
// decorate inserts the a final newline if needed and indentation tabs for formatting.
|
|
|
|
// If addFileLine is true, it also prefixes the string with the file and line of the call site.
|
|
|
|
func decorate(s string, addFileLine bool) string {
|
|
|
|
if addFileLine {
|
|
|
|
_, file, line, ok := runtime.Caller(3) // decorate + log + public function.
|
|
|
|
if ok {
|
|
|
|
// Truncate file name at last file name separator.
|
|
|
|
if index := strings.LastIndex(file, "/"); index >= 0 {
|
|
|
|
file = file[index+1:]
|
|
|
|
} else if index = strings.LastIndex(file, "\\"); index >= 0 {
|
|
|
|
file = file[index+1:]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
file = "???"
|
|
|
|
line = 1
|
|
|
|
}
|
|
|
|
s = fmt.Sprintf("%s:%d: %s", file, line, s)
|
|
|
|
}
|
|
|
|
s = "\t" + s // Every line is indented at least one tab.
|
2010-12-03 04:34:57 +00:00
|
|
|
n := len(s)
|
|
|
|
if n > 0 && s[n-1] != '\n' {
|
|
|
|
s += "\n"
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
for i := 0; i < n-1; i++ { // -1 to avoid final newline
|
|
|
|
if s[i] == '\n' {
|
2011-12-12 23:40:51 +00:00
|
|
|
// Second and subsequent lines are indented an extra tab.
|
|
|
|
return s[0:i+1] + "\t" + decorate(s[i+1:n], false)
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// T is a type passed to Test functions to manage test state and support formatted test logs.
|
|
|
|
// Logs are accumulated during execution and dumped to standard error when done.
|
|
|
|
type T struct {
|
2011-10-26 23:57:58 +00:00
|
|
|
name string // Name of test.
|
|
|
|
errors string // Error string from test.
|
|
|
|
failed bool // Test has failed.
|
|
|
|
ch chan *T // Output for serial tests.
|
|
|
|
startParallel chan bool // Parallel tests will wait on this.
|
|
|
|
ns int64 // Duration of test in nanoseconds.
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fail marks the Test function as having failed but continues execution.
|
|
|
|
func (t *T) Fail() { t.failed = true }
|
|
|
|
|
|
|
|
// Failed returns whether the Test function has failed.
|
|
|
|
func (t *T) Failed() bool { return t.failed }
|
|
|
|
|
|
|
|
// FailNow marks the Test function as having failed and stops its execution.
|
|
|
|
// Execution will continue at the next Test.
|
|
|
|
func (t *T) FailNow() {
|
2011-10-26 23:57:58 +00:00
|
|
|
t.ns = time.Nanoseconds() - t.ns
|
2010-12-03 04:34:57 +00:00
|
|
|
t.Fail()
|
|
|
|
t.ch <- t
|
|
|
|
runtime.Goexit()
|
|
|
|
}
|
|
|
|
|
2011-12-12 23:40:51 +00:00
|
|
|
// log generates the output. It's always at the same stack depth.
|
|
|
|
func (t *T) log(s string) { t.errors += decorate(s, true) }
|
|
|
|
|
2010-12-03 04:34:57 +00:00
|
|
|
// Log formats its arguments using default formatting, analogous to Print(),
|
|
|
|
// and records the text in the error log.
|
2011-12-12 23:40:51 +00:00
|
|
|
func (t *T) Log(args ...interface{}) { t.log(fmt.Sprintln(args...)) }
|
2010-12-03 04:34:57 +00:00
|
|
|
|
2011-03-16 23:05:44 +00:00
|
|
|
// Logf formats its arguments according to the format, analogous to Printf(),
|
2010-12-03 04:34:57 +00:00
|
|
|
// and records the text in the error log.
|
2011-12-12 23:40:51 +00:00
|
|
|
func (t *T) Logf(format string, args ...interface{}) { t.log(fmt.Sprintf(format, args...)) }
|
2010-12-03 04:34:57 +00:00
|
|
|
|
|
|
|
// Error is equivalent to Log() followed by Fail().
|
|
|
|
func (t *T) Error(args ...interface{}) {
|
2011-12-12 23:40:51 +00:00
|
|
|
t.log(fmt.Sprintln(args...))
|
2010-12-03 04:34:57 +00:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Errorf is equivalent to Logf() followed by Fail().
|
|
|
|
func (t *T) Errorf(format string, args ...interface{}) {
|
2011-12-12 23:40:51 +00:00
|
|
|
t.log(fmt.Sprintf(format, args...))
|
2010-12-03 04:34:57 +00:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fatal is equivalent to Log() followed by FailNow().
|
|
|
|
func (t *T) Fatal(args ...interface{}) {
|
2011-12-12 23:40:51 +00:00
|
|
|
t.log(fmt.Sprintln(args...))
|
2010-12-03 04:34:57 +00:00
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fatalf is equivalent to Logf() followed by FailNow().
|
|
|
|
func (t *T) Fatalf(format string, args ...interface{}) {
|
2011-12-12 23:40:51 +00:00
|
|
|
t.log(fmt.Sprintf(format, args...))
|
2010-12-03 04:34:57 +00:00
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
2011-10-26 23:57:58 +00:00
|
|
|
// Parallel signals that this test is to be run in parallel with (and only with)
|
|
|
|
// other parallel tests in this CPU group.
|
|
|
|
func (t *T) Parallel() {
|
|
|
|
t.ch <- nil // Release main testing loop
|
|
|
|
<-t.startParallel // Wait for serial tests to finish
|
|
|
|
}
|
|
|
|
|
2010-12-03 04:34:57 +00:00
|
|
|
// An internal type but exported because it is cross-package; part of the implementation
|
|
|
|
// of gotest.
|
|
|
|
type InternalTest struct {
|
|
|
|
Name string
|
|
|
|
F func(*T)
|
|
|
|
}
|
|
|
|
|
|
|
|
func tRunner(t *T, test *InternalTest) {
|
2011-10-26 23:57:58 +00:00
|
|
|
t.ns = time.Nanoseconds()
|
2010-12-03 04:34:57 +00:00
|
|
|
test.F(t)
|
2011-10-26 23:57:58 +00:00
|
|
|
t.ns = time.Nanoseconds() - t.ns
|
2010-12-03 04:34:57 +00:00
|
|
|
t.ch <- t
|
|
|
|
}
|
|
|
|
|
|
|
|
// An internal function but exported because it is cross-package; part of the implementation
|
|
|
|
// of gotest.
|
2011-12-03 02:17:34 +00:00
|
|
|
func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
|
2010-12-03 04:34:57 +00:00
|
|
|
flag.Parse()
|
2011-09-16 15:47:21 +00:00
|
|
|
parseCpuList()
|
2011-03-24 23:46:17 +00:00
|
|
|
|
|
|
|
before()
|
2011-03-31 22:36:10 +00:00
|
|
|
startAlarm()
|
2011-10-26 23:57:58 +00:00
|
|
|
testOk := RunTests(matchString, tests)
|
|
|
|
exampleOk := RunExamples(examples)
|
|
|
|
if !testOk || !exampleOk {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Println("FAIL")
|
2011-10-26 23:57:58 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Println("PASS")
|
2011-03-31 22:36:10 +00:00
|
|
|
stopAlarm()
|
2011-03-24 23:46:17 +00:00
|
|
|
RunBenchmarks(matchString, benchmarks)
|
|
|
|
after()
|
|
|
|
}
|
|
|
|
|
2011-10-26 23:57:58 +00:00
|
|
|
func report(t *T) {
|
|
|
|
tstr := fmt.Sprintf("(%.2f seconds)", float64(t.ns)/1e9)
|
|
|
|
format := "--- %s: %s %s\n%s"
|
|
|
|
if t.failed {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Printf(format, "FAIL", t.name, tstr, t.errors)
|
2011-10-26 23:57:58 +00:00
|
|
|
} else if *chatty {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Printf(format, "PASS", t.name, tstr, t.errors)
|
2011-10-26 23:57:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-03 02:17:34 +00:00
|
|
|
func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
|
2011-10-26 23:57:58 +00:00
|
|
|
ok = true
|
2010-12-03 04:34:57 +00:00
|
|
|
if len(tests) == 0 {
|
2011-10-26 23:57:58 +00:00
|
|
|
fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
|
|
|
|
return
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
2011-10-26 23:57:58 +00:00
|
|
|
ch := make(chan *T)
|
|
|
|
for _, procs := range cpuList {
|
|
|
|
runtime.GOMAXPROCS(procs)
|
|
|
|
|
|
|
|
numParallel := 0
|
|
|
|
startParallel := make(chan bool)
|
|
|
|
|
|
|
|
for i := 0; i < len(tests); i++ {
|
|
|
|
matched, err := matchString(*match, tests[i].Name)
|
|
|
|
if err != nil {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "testing: invalid regexp for -test.run: %s\n", err)
|
2011-10-26 23:57:58 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
if !matched {
|
|
|
|
continue
|
|
|
|
}
|
2011-09-16 15:47:21 +00:00
|
|
|
testName := tests[i].Name
|
|
|
|
if procs != 1 {
|
|
|
|
testName = fmt.Sprintf("%s-%d", tests[i].Name, procs)
|
|
|
|
}
|
2011-10-26 23:57:58 +00:00
|
|
|
t := &T{ch: ch, name: testName, startParallel: startParallel}
|
2011-09-16 15:47:21 +00:00
|
|
|
if *chatty {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Printf("=== RUN %s\n", t.name)
|
2011-09-16 15:47:21 +00:00
|
|
|
}
|
|
|
|
go tRunner(t, &tests[i])
|
2011-10-26 23:57:58 +00:00
|
|
|
out := <-t.ch
|
|
|
|
if out == nil { // Parallel run.
|
|
|
|
numParallel++
|
|
|
|
continue
|
2011-09-16 15:47:21 +00:00
|
|
|
}
|
2011-10-26 23:57:58 +00:00
|
|
|
report(t)
|
|
|
|
ok = ok && !out.failed
|
|
|
|
}
|
|
|
|
|
|
|
|
running := 0
|
|
|
|
for numParallel+running > 0 {
|
|
|
|
if running < *parallel && numParallel > 0 {
|
|
|
|
startParallel <- true
|
|
|
|
running++
|
|
|
|
numParallel--
|
|
|
|
continue
|
2011-09-16 15:47:21 +00:00
|
|
|
}
|
2011-10-26 23:57:58 +00:00
|
|
|
t := <-ch
|
|
|
|
report(t)
|
|
|
|
ok = ok && !t.failed
|
|
|
|
running--
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-26 23:57:58 +00:00
|
|
|
return
|
2010-12-03 04:34:57 +00:00
|
|
|
}
|
2011-03-24 23:46:17 +00:00
|
|
|
|
|
|
|
// before runs before all testing.
|
|
|
|
func before() {
|
|
|
|
if *memProfileRate > 0 {
|
|
|
|
runtime.MemProfileRate = *memProfileRate
|
|
|
|
}
|
|
|
|
if *cpuProfile != "" {
|
2011-04-07 17:09:10 +00:00
|
|
|
f, err := os.Create(*cpuProfile)
|
2011-03-24 23:46:17 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "testing: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := pprof.StartCPUProfile(f); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "testing: can't start cpu profile: %s", err)
|
|
|
|
f.Close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Could save f so after can call f.Close; not worth the effort.
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// after runs after all testing.
|
|
|
|
func after() {
|
|
|
|
if *cpuProfile != "" {
|
|
|
|
pprof.StopCPUProfile() // flushes profile to disk
|
|
|
|
}
|
|
|
|
if *memProfile != "" {
|
2011-04-07 17:09:10 +00:00
|
|
|
f, err := os.Create(*memProfile)
|
2011-03-24 23:46:17 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "testing: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err = pprof.WriteHeapProfile(f); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "testing: can't write %s: %s", *memProfile, err)
|
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
}
|
|
|
|
}
|
2011-03-31 22:36:10 +00:00
|
|
|
|
|
|
|
var timer *time.Timer
|
|
|
|
|
|
|
|
// startAlarm starts an alarm if requested.
|
|
|
|
func startAlarm() {
|
|
|
|
if *timeout > 0 {
|
|
|
|
timer = time.AfterFunc(*timeout*1e9, alarm)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// stopAlarm turns off the alarm.
|
|
|
|
func stopAlarm() {
|
|
|
|
if *timeout > 0 {
|
|
|
|
timer.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// alarm is called if the timeout expires.
|
|
|
|
func alarm() {
|
|
|
|
panic("test timed out")
|
|
|
|
}
|
2011-09-16 15:47:21 +00:00
|
|
|
|
|
|
|
func parseCpuList() {
|
|
|
|
if len(*cpuListStr) == 0 {
|
|
|
|
cpuList = append(cpuList, runtime.GOMAXPROCS(-1))
|
|
|
|
} else {
|
|
|
|
for _, val := range strings.Split(*cpuListStr, ",") {
|
|
|
|
cpu, err := strconv.Atoi(val)
|
|
|
|
if err != nil || cpu <= 0 {
|
2011-12-12 23:40:51 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "testing: invalid value %q for -test.cpu", val)
|
2011-09-16 15:47:21 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
cpuList = append(cpuList, cpu)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|