Socket
Socket
Sign inDemoInstall

github.com/shinshin86/go-te

Package Overview
Dependencies
0
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/shinshin86/go-te

This file acts as a test runner.


Version published

Readme

Source

(WIP) go-te 💨

CI

te(Tiny Expect) is a tiny test library for go.

Note

te is not recommended for use, although I have using it myself in very limited circumstances.
(This one was created with a bit of an idea in mind).

It also does not have all the features needed for testing, so please use it for fun only.

Install

Please install it to perform the test with the command go-te.
(go-te uses generics and should be used with 1.18 or later versions of Go.)

go install github.com/shinshin86/go-te@latest

It must then be added to the project to be used.

go get github.com/shinshin86/go-te

Usage

This is a simple example.

package main

import (
	. "github.com/shinshin86/go-te/te"
)

func main() {
	t := Init()

	t.Describe("Expect to be sample", func() {
		t.It("Expect b is true", func() {
			b := true
			t.Expect(b).ToBe(true)
		})

		t.It("Expect i is 1", func() {
			i := 1
			t.Expect(i).ToBe(1)
		})

		// The name Test is also available. The functionality is the same.
		t.Test("Expect s is helloworld", func() {
			s := "helloworld"
			t.Expect(s).ToBe("helloworld")
		})
	})

	t.Describe("Expoect not to be test", func() {
		t.It("Expect b is not true", func() {
			b := true
			t.Expect(b).NotToBe(false)
		})

		t.It("Expect i is not 1", func() {
			i := 1
			t.Expect(i).NotToBe(2)
		})
	})

	t.Exit()
}

Setup and Teardown

Often, there are cases where you want to do specific processing before and after the test is run. te also provides helper functions to assist in these cases.

Note that these helper functions must be defined prior to test execution.

The functions provided are as follows.

  • BeforeAll
  • AfterAll
  • BeforeEach
  • AfterEach

An example of use can be found here.

func main() {
	t := Init()

	cwd, _ := os.Getwd()

	filename := "test.txt"
	testtxt := "Setup and Teardown test"

	num := 1

	t.BeforeAll(func() {
		fp, err := os.Create(filepath.Join(cwd, "_example", filename))
		if err != nil {
			fmt.Println(err)
			return
		}

		defer fp.Close()

		fp.WriteString(testtxt)
	})

	t.AfterAll(func() {
		if err := os.Remove(filepath.Join(cwd, "_example", filename)); err != nil {
			fmt.Println(err)
		}
	})

	t.BeforeEach(func() {
		num++
	})

	t.AfterEach(func() {
		num++
	})

	t.Describe("Setup and Teardown test", func() {
		t.It("Expected a file strings are the same", func() {
			f, _ := os.Open(filepath.Join(cwd, "_example", filename))

			defer f.Close()

			b, _ := ioutil.ReadAll(f)

			t.Expect(string(b)).ToBe(testtxt)
		})

		t.It("Expected the variable num to be incremented a specified number of times", func() {
			// 1 -> 2(BeforeEach) -> 3(AfterEach) -> 4(BeforeEach: this function)
			t.Expect(num).ToBe(4)
		})
	})

	t.Exit()
}

Command line options

go-te --help

# -c string
#   	Specify config file path (default "te.config.json")
# -d string
#   	Specify test directory (default "test")
# -m string
#   	Specify match files (default "*.go")

Config file

You can create a te.config.json file and put runtime test options there.

{
    "testMatch": ["_example/*.go", "_example/sub/*.go"]
}
  • testMatch - You can specify the path to the test file.

About Test File Names

There are no specific rules about files for testing in go-te. However, as a specification of go, files with _test.go such as foo_test.go cannot be used.

Examples

You can also try the example code for this project.
Execute the following command.

# install
go install github.com/shinshin86/go-te@latest

# project clone
git clone https://github.com/shinshin86/go-te.git
cd go-te

# run
go-te -d _example

Running Tests

Tests are performed on code written under the _example directory.

make test

License

MIT

Author

Yuki Shindo

FAQs

Last updated on 26 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc