gosuite

package module
v0.0.0-...-d5a3671 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 18, 2016 License: MIT Imports: 3 Imported by: 0

README

Go Suite

Build Status codecov

The support for test suites for Golang 1.7 and later.

Golang 1.7 featured Subtests that allowed you to group tests in order to share common setup and teardown logic. While that was a great addition to the testing package, it was a bit clunky syntactically. The GoSuite package leverages Golang's 1.7 Subtests feature, defines a simple TestSuite interface and runs test cases inside of them keeping setup/teardown logic for the whole suite and for single cases in place.

Quick Start

To start with, create a struct with the four methods implemented:

type MyTestSuite struct {
    // DB connection
    // etc
}

// SetUpSuite is called once before the very first test in suite runs
func (s *MyTestSuite) SetUpSuite() {
}

// TearDownSuite is called once after thevery last test in suite runs
func (s *MyTestSuite) TearDownSuite() {
}

// SetUp is called before each test method
func (s *MyTestSuite) SetUp() {
}

// TearDown is called after each test method
func (s *MyTestSuite) TearDown() {
}

Then add one or more test methods to it, prefixing them with Test prefix:

func (s *MyTestSuite) TestMyFirstTestCase(t *testing.T) {
    if !someJob {
        t.Fail("Unexpected failure!")
    }
}

Almost done! The only piece that remains is to run the suite! You do this by calling the Run method. Note, the enclosing TestIt method is a normal testing method you usually write in Go, nothing fancy at all!

func TestIt(t *testing.T) {
	Run(t, &MyTestSuite{})
}

Installation

To install Go Suite, use go get:

go get github.com/pavlo/gosuite

The import the pavlo/gosuite package into your code like this:

package yours

import (
  "testing"
  "github.com/pavlo/gosuite"
)

...

Complete Example

The complete example is shown to help you to see the whole thing on the same page. Note, it leverages the Is package for assertions... the package is great though indeed it is not required to use with Go Suite. The example however demonstrates a slick technique making the assertion methods available on the suite itself!


import (
  "testing"
  "github.com/pavlo/gosuite"
)

type Suite struct {
	*is.Is
	setUpSuiteCalledTimes    int
	tearDownSuiteCalledTimes int
	setUpCalledTimes         int
	tearDownUpCalledTimes    int
}

func (s *Suite) SetUpSuite() {
	s.setUpSuiteCalledTimes++
}

func (s *Suite) TearDownSuite() {
	s.tearDownSuiteCalledTimes++
}

func (s *Suite) SetUp() {
	s.setUpCalledTimes++
}

func (s *Suite) TearDown() {
	s.tearDownUpCalledTimes++
}

func TestIt(t *testing.T) {
    s := &Suite{Is: is.New(s.t)}
	gosuite.Run(t, s)
	
	s.Equal(1, s.setUpSuiteCalledTimes)
	s.Equal(1, s.tearDownSuiteCalledTimes)
	s.Equal(2, s.setUpCalledTimes)
	s.Equal(2, s.tearDownUpCalledTimes)
}

func (s *Suite) TestFirstTestMethod(t *testing.T) {
	s.Equal(1, s.setUpSuiteCalledTimes)
	s.Equal(0, s.tearDownSuiteCalledTimes)
	s.Equal(1, s.setUpCalledTimes)
	s.Equal(0, s.tearDownUpCalledTimes)
}

func (s *Suite) TestSecondTestMethod(t *testing.T) {
	s.Equal(1, s.setUpSuiteCalledTimes)
	s.Equal(0, s.tearDownSuiteCalledTimes)
	s.Equal(2, s.setUpCalledTimes)
	s.Equal(1, s.tearDownUpCalledTimes)
}

Running it with go test -v would emit this:

> go test -v

=== RUN   TestIt
=== RUN   TestIt/TestFirstTestMethod
=== RUN   TestIt/TestSecondTestMethod
--- PASS: TestIt (0.00s)
    --- PASS: TestIt/TestFirstTestMethod (0.00s)
    --- PASS: TestIt/TestSecondTestMethod (0.00s)
PASS
ok  	github.com/pavlo/gosuite	0.009s
Success: Tests passed.

License

Go Suite is released under the MIT License.

Documentation

Overview

Package gosuite provides a simple and tiny tool that brings the support of test suites to Go 1.7 Subtests addition to "testing".

A test suite is an abstraction that allows you to group certain test cases together as well as allowing you to perform setup/teardown logic for each of test cases as well as the setup/teardown stuff for the suite itself.

This is useful, for instance, in cases where you need to set up database schema before your suite as well as truncate the database tables before each test case so each of them is run against an empty database.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Run

func Run(t *testing.T, suite TestSuite)

Run sets up the suite, runs its test cases and tears it down:

  1. Calls `suite.SetUpSuite`
  2. Seeks for any methods that have `Test` prefix, for each of them it: a. Calls `SetUp` b. Calls the test method itself c. Calls `TearDown`
  3. Calls `suite.TearDownSuite`

Types

type TestSuite

type TestSuite interface {
	// SetUpSuite is called once before the very first test in suite runs
	SetUpSuite()

	// TearDownSuite is called once after thevery last test in suite runs
	TearDownSuite()

	// SetUp is called before each test method
	SetUp()

	// TearDown is called after each test method
	TearDown()
}

TestSuite is an interface where you define suite and test case preparation and tear down logic.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL