Skip to content

01-edu/go-tests

Repository files navigation

🐹 go-tests

🐳 On Master - Build and Test Docker Image

Private repository that holds the files needed to build the Go tests Docker image.

To run the tests make sure the two repositories are right next to each other:

To test an exercise, run this command in the go-tests folder:

./test_one.sh isnegative

To run all the exercises, run this command in the go-tests folder:

./test_all.sh

Run an exercise in the Docker container

First you need to build the image, for example to build it locally you may run:

docker build -t go_tests .

To run an exercise as close as it can get to production environment you can call test_with_docker.sh as follows:

./test_with_docker.sh [EXERCISE_NAME] [EXERCISE_PATH] [ALLOWED_FUNCTION]*

As an example:

./test_with_docker getalpha getalpha/main.go --allow-builtin github.com/01-edu/z01.PrintRune strconv.Atoi os.Args

For convenience to do bulk tests you may want to store this info in a meta.txt file that will separate them with : and then use awk to run tests on all of them.

As an example:

# The meta.txt file
getalpha:getalpha/main.go:--allow-builtin github.com/01-edu/z01.PrintRune strconv.Atoi os.Args

# The command to run
cat meta.txt | awk -F ":" '{print system("./test_with_docker.sh "$1" "$2" "$3)}'

About

🐹 Private repository that holds the files needed to build the Go tests Docker image.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks