gvisor/test/runtimes
Samantha Sample fb996668e4 Alter Dockerfiles to include common.go and use a prebuilt JDK.
After the refactoring of the proctor binaries, the Dockerfiles for each
language must be altered to copy the common folder into their image.
Additionally, Java has been changed to use the pre-built version of
JDK-11 from Ubuntu, instead of building it from the source.  This allows
for a smaller image and faster test execution within the container.

PiperOrigin-RevId: 261805158
2019-08-05 17:20:05 -07:00
..
common Refactor ListTests() to common.Search(). 2019-08-01 18:53:35 -07:00
go Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
java Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
nodejs Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
php Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
python Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
BUILD Move runtimes tests to appropriate directory. 2019-07-29 14:17:11 -07:00
README.md Alter Dockerfiles to include common.go and use a prebuilt JDK. 2019-08-05 17:20:05 -07:00
runtimes.go Move runtimes tests to appropriate directory. 2019-07-29 14:17:11 -07:00
runtimes_test.go Expand runtimes test suite to include Go, Java, PHP, and Python. 2019-08-05 16:11:18 -07:00

README.md

Runtimes Tests Dockerfiles

The Dockerfiles defined under this path are configured to host the execution of the runtimes language tests. Each Dockerfile can support the language indicated by its directory.

The following runtimes are currently supported:

  • Go 1.12
  • Java 11
  • Node.js 12
  • PHP 7.3
  • Python 3.7

Prerequisites:

  1. Install and configure Docker

  2. Build each Docker container from the runtimes directory:

$ docker build -f $LANG/Dockerfile [-t $NAME] .

Testing:

If the prerequisites have been fulfilled, you can run the tests with the following command:

$ docker run --rm -it $NAME [FLAG]

Running the command with no flags will cause all the available tests to execute.

Flags can be added for additional functionality:

  • --list: Print a list of all available tests
  • --test <name>: Run a single test from the list of available tests
  • --v: Print the language version