Skip to content
Snippets Groups Projects
testing.go 3.38 KiB
Newer Older
  • Learn to ignore specific revisions
  • Rob Pike's avatar
    Rob Pike committed
    // 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.
    
    
    // The testing package provides support for automated testing of Go packages.
    // 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 by 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.
    
    Rob Pike's avatar
    Rob Pike committed
    package testing
    
    
    Russ Cox's avatar
    Russ Cox committed
    import (
    
    	"os";
    	"runtime";
    
    // Report as tests are run; default is silent for success.
    
    var chatty = flag.Bool("chatty", false, "chatty")
    
    Russ Cox's avatar
    Russ Cox committed
    
    
    // Insert tabs after newlines - but not the last one
    
    Rob Pike's avatar
    Rob Pike committed
    func tabify(s string) string {
    
    	for i := 0; i < len(s) - 1; i++ {	// -1 because if last char is newline, don't bother
    		if s[i] == '\n' {
    
    Rob Pike's avatar
    Rob Pike committed
    			return s[0:i+1] + "\t" + tabify(s[i+1:len(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.
    
    Russ Cox's avatar
    Russ Cox committed
    type T struct {
    
    	errors	string;
    	failed	bool;
    
    // Fail marks the Test function as having failed but continues execution.
    
    func (t *T) Fail() {
    	t.failed = true
    }
    
    
    // FailNow marks the Test function as having failed and stops its execution.
    // Execution will continue at the next Test.
    
    func (t *T) FailNow() {
    	t.Fail();
    	t.ch <- t;
    
    	runtime.Goexit();
    
    // Log formats its arguments using default formatting, analogous to Print(),
    // and records the text in the error log.
    
    func (t *T) Log(args ...) {
    
    Rob Pike's avatar
    Rob Pike committed
    	t.errors += "\t" + tabify(fmt.Sprintln(args));
    
    // Log formats its arguments according to the format, analogous to Printf(),
    // and records the text in the error log.
    
    func (t *T) Logf(format string, args ...) {
    
    Rob Pike's avatar
    Rob Pike committed
    	t.errors += tabify(fmt.Sprintf("\t" + format, args));
    
    	l := len(t.errors);
    	if l > 0 && t.errors[l-1] != '\n' {
    		t.errors += "\n"
    	}
    }
    
    
    // Error is equivalent to Log() followed by Fail().
    
    func (t *T) Error(args ...) {
    	t.Log(args);
    	t.Fail();
    }
    
    
    // Errorf is equivalent to Logf() followed by Fail().
    
    func (t *T) Errorf(format string, args ...) {
    	t.Logf(format, args);
    	t.Fail();
    }
    
    
    // Fatal is equivalent to Log() followed by FailNow().
    
    func (t *T) Fatal(args ...) {
    	t.Log(args);
    	t.FailNow();
    }
    
    
    // Fatalf is equivalent to Logf() followed by FailNow().
    
    func (t *T) Fatalf(format string, args ...) {
    	t.Logf(format, args);
    	t.FailNow();
    }
    
    
    // An internal type but exported because it is cross-package; part of the implementation
    // of gotest.
    
    Russ Cox's avatar
    Russ Cox committed
    type Test struct {
    
    	Name string;
    
    	F func(*T);
    
    Rob Pike's avatar
    Rob Pike committed
    func tRunner(t *T, test *Test) {
    
    	test.F(t);
    
    // An internal function but exported because it is cross-package; part of the implementation
    // of gotest.
    
    Russ Cox's avatar
    Russ Cox committed
    func Main(tests []Test) {
    
    Russ Cox's avatar
    Russ Cox committed
    	flag.Parse();
    
    Rob Pike's avatar
    Rob Pike committed
    	ok := true;
    
    	if len(tests) == 0 {
    
    		println("testing: warning: no tests to run");
    
    Rob Pike's avatar
    Rob Pike committed
    	for i := 0; i < len(tests); i++ {
    
    			println("=== RUN ", tests[i].Name);
    
    Russ Cox's avatar
    Russ Cox committed
    		}
    
    Russ Cox's avatar
    Russ Cox committed
    		t := new(T);
    		t.ch = make(chan *T);
    
    Rob Pike's avatar
    Rob Pike committed
    		go tRunner(t, &tests[i]);
    
    		<-t.ch;
    		if t.failed {
    
    			println("--- FAIL:", tests[i].Name);
    
    			print(t.errors);
    
    Russ Cox's avatar
    Russ Cox committed
    			ok = false;
    
    			println("--- PASS:", tests[i].Name);
    
    			print(t.errors);
    
    Rob Pike's avatar
    Rob Pike committed
    		}
    	}
    	if !ok {
    
    		println("FAIL");
    
    		os.Exit(1);
    
    Rob Pike's avatar
    Rob Pike committed
    	}
    
    Russ Cox's avatar
    Russ Cox committed
    	println("PASS");
    
    Rob Pike's avatar
    Rob Pike committed
    }