1
0
mirror of https://github.com/golang/go synced 2024-10-05 04:21:22 -06:00
go/src/lib/testing.go

100 lines
1.5 KiB
Go
Raw Normal View History

// 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.
package testing
import (
"fmt";
"flag";
)
var chatty bool;
func init() {
flag.Bool("chatty", false, &chatty, "chatty");
}
export type T struct {
errors string;
failed bool;
ch *chan *T;
}
func (t *T) Fail() {
t.failed = true
}
func (t *T) FailNow() {
t.Fail();
t.ch <- t;
sys.goexit();
}
func (t *T) Log(args ...) {
t.errors += "\t" + fmt.sprintln(args);
}
func (t *T) Logf(format string, args ...) {
t.errors += fmt.sprintf("\t" + format, args);
l := len(t.errors);
if l > 0 && t.errors[l-1] != '\n' {
t.errors += "\n"
}
}
func (t *T) Error(args ...) {
t.Log(args);
t.Fail();
}
func (t *T) Errorf(format string, args ...) {
t.Logf(format, args);
t.Fail();
}
func (t *T) Fatal(args ...) {
t.Log(args);
t.FailNow();
}
func (t *T) Fatalf(format string, args ...) {
t.Logf(format, args);
t.FailNow();
}
export type Test struct {
name string;
f *(*T);
}
func TRunner(t *T, test *Test) {
test.f(t);
t.ch <- t;
}
export func Main(tests *[]Test) {
ok := true;
for i := 0; i < len(tests); i++ {
if chatty {
println("=== RUN ", tests[i].name);
}
t := new(T);
t.ch = new(chan *T);
go TRunner(t, &tests[i]);
<-t.ch;
if t.failed {
println("--- FAIL:", tests[i].name);
print(t.errors);
ok = false;
} else if chatty {
println("--- PASS:", tests[i].name);
print(t.errors);
}
}
if !ok {
println("FAIL");
sys.exit(1);
}
println("PASS");
}