mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
c810628a20
There were a few problems with the go/packages package. While it is more
or less designed for our purpose, it didn't work quite well as it didn't
provide access to indirectly imported packages (most importantly the
runtime package). This led to a workaround that sometimes broke
`tinygo test`.
This PR contains a number of related changes:
* It uses `go list` directly to retrieve the list of packages/files to
compile, instead of relying on the go/packages package.
* It replaces our custom TestMain replace code with the standard code
for running tests (generated by `go list`).
* It adds a dummy runtime/pprof package and modifies the testing
package, to get tests to run again with the code generated by
`go list`.
218 lines
5.4 KiB
Go
218 lines
5.4 KiB
Go
// 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.
|
|
//
|
|
// This file has been modified for use by the TinyGo compiler.
|
|
// src: https://github.com/golang/go/blob/61bb56ad/src/testing/testing.go
|
|
|
|
// Package testing provides support for automated testing of Go packages.
|
|
package testing
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
// common holds the elements common between T and B and
|
|
// captures common methods such as Errorf.
|
|
type common struct {
|
|
output io.Writer
|
|
|
|
failed bool // Test or benchmark has failed.
|
|
skipped bool // Test of benchmark has been skipped.
|
|
finished bool // Test function has completed.
|
|
name string // Name of test or benchmark.
|
|
}
|
|
|
|
// TB is the interface common to T and B.
|
|
type TB interface {
|
|
Error(args ...interface{})
|
|
Errorf(format string, args ...interface{})
|
|
Fail()
|
|
FailNow()
|
|
Failed() bool
|
|
Fatal(args ...interface{})
|
|
Fatalf(format string, args ...interface{})
|
|
Log(args ...interface{})
|
|
Logf(format string, args ...interface{})
|
|
Name() string
|
|
Skip(args ...interface{})
|
|
SkipNow()
|
|
Skipf(format string, args ...interface{})
|
|
Skipped() bool
|
|
// Helper()
|
|
}
|
|
|
|
var _ TB = (*T)(nil)
|
|
var _ TB = (*B)(nil)
|
|
|
|
// 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 output when done.
|
|
//
|
|
type T struct {
|
|
common
|
|
}
|
|
|
|
// Name returns the name of the running test or benchmark.
|
|
func (c *common) Name() string {
|
|
return c.name
|
|
}
|
|
|
|
// Fail marks the function as having failed but continues execution.
|
|
func (c *common) Fail() {
|
|
c.failed = true
|
|
}
|
|
|
|
// Failed reports whether the function has failed.
|
|
func (c *common) Failed() bool {
|
|
failed := c.failed
|
|
return failed
|
|
}
|
|
|
|
// FailNow marks the function as having failed and stops its execution
|
|
// by calling runtime.Goexit (which then runs all deferred calls in the
|
|
// current goroutine).
|
|
func (c *common) FailNow() {
|
|
c.Fail()
|
|
|
|
c.finished = true
|
|
c.Error("FailNow is incomplete, requires runtime.Goexit()")
|
|
}
|
|
|
|
// log generates the output.
|
|
func (c *common) log(s string) {
|
|
// This doesn't print the same as in upstream go, but works for now.
|
|
fmt.Fprintf(c.output, "\t")
|
|
fmt.Fprintln(c.output, s)
|
|
}
|
|
|
|
// Log formats its arguments using default formatting, analogous to Println,
|
|
// and records the text in the error log. For tests, the text will be printed only if
|
|
// the test fails or the -test.v flag is set. For benchmarks, the text is always
|
|
// printed to avoid having performance depend on the value of the -test.v flag.
|
|
func (c *common) Log(args ...interface{}) { c.log(fmt.Sprintln(args...)) }
|
|
|
|
// Logf formats its arguments according to the format, analogous to Printf, and
|
|
// records the text in the error log. A final newline is added if not provided. For
|
|
// tests, the text will be printed only if the test fails or the -test.v flag is
|
|
// set. For benchmarks, the text is always printed to avoid having performance
|
|
// depend on the value of the -test.v flag.
|
|
func (c *common) Logf(format string, args ...interface{}) { c.log(fmt.Sprintf(format, args...)) }
|
|
|
|
// Error is equivalent to Log followed by Fail.
|
|
func (c *common) Error(args ...interface{}) {
|
|
c.log(fmt.Sprintln(args...))
|
|
c.Fail()
|
|
}
|
|
|
|
// Errorf is equivalent to Logf followed by Fail.
|
|
func (c *common) Errorf(format string, args ...interface{}) {
|
|
c.log(fmt.Sprintf(format, args...))
|
|
c.Fail()
|
|
}
|
|
|
|
// Fatal is equivalent to Log followed by FailNow.
|
|
func (c *common) Fatal(args ...interface{}) {
|
|
c.log(fmt.Sprintln(args...))
|
|
c.FailNow()
|
|
}
|
|
|
|
// Fatalf is equivalent to Logf followed by FailNow.
|
|
func (c *common) Fatalf(format string, args ...interface{}) {
|
|
c.log(fmt.Sprintf(format, args...))
|
|
c.FailNow()
|
|
}
|
|
|
|
// Skip is equivalent to Log followed by SkipNow.
|
|
func (c *common) Skip(args ...interface{}) {
|
|
c.log(fmt.Sprintln(args...))
|
|
c.SkipNow()
|
|
}
|
|
|
|
// Skipf is equivalent to Logf followed by SkipNow.
|
|
func (c *common) Skipf(format string, args ...interface{}) {
|
|
c.log(fmt.Sprintf(format, args...))
|
|
c.SkipNow()
|
|
}
|
|
|
|
// SkipNow marks the test as having been skipped and stops its execution
|
|
// by calling runtime.Goexit.
|
|
func (c *common) SkipNow() {
|
|
c.skip()
|
|
c.finished = true
|
|
c.Error("SkipNow is incomplete, requires runtime.Goexit()")
|
|
}
|
|
|
|
func (c *common) skip() {
|
|
c.skipped = true
|
|
}
|
|
|
|
// Skipped reports whether the test was skipped.
|
|
func (c *common) Skipped() bool {
|
|
return c.skipped
|
|
}
|
|
|
|
// InternalTest is a reference to a test that should be called during a test suite run.
|
|
type InternalTest struct {
|
|
Name string
|
|
F func(*T)
|
|
}
|
|
|
|
// M is a test suite.
|
|
type M struct {
|
|
// tests is a list of the test names to execute
|
|
Tests []InternalTest
|
|
}
|
|
|
|
// Run the test suite.
|
|
func (m *M) Run() int {
|
|
failures := 0
|
|
for _, test := range m.Tests {
|
|
t := &T{
|
|
common: common{
|
|
name: test.Name,
|
|
output: &bytes.Buffer{},
|
|
},
|
|
}
|
|
|
|
fmt.Printf("=== RUN %s\n", test.Name)
|
|
test.F(t)
|
|
|
|
if t.failed {
|
|
fmt.Printf("--- FAIL: %s\n", test.Name)
|
|
} else {
|
|
fmt.Printf("--- PASS: %s\n", test.Name)
|
|
}
|
|
fmt.Println(t.output)
|
|
|
|
if t.failed {
|
|
failures++
|
|
}
|
|
}
|
|
|
|
if failures > 0 {
|
|
fmt.Printf("exit status %d\n", failures)
|
|
fmt.Println("FAIL")
|
|
}
|
|
return failures
|
|
}
|
|
|
|
func TestMain(m *M) {
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func MainStart(deps interface{}, tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) *M {
|
|
return &M{
|
|
Tests: tests,
|
|
}
|
|
}
|
|
|
|
type InternalExample struct {
|
|
Name string
|
|
F func()
|
|
Output string
|
|
Unordered bool
|
|
}
|