Compare commits
No commits in common. "main" and "0.7.0" have entirely different histories.
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
|
|
@ -1 +0,0 @@
|
||||||
github: [nalgeon]
|
|
||||||
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
|
@ -7,12 +7,6 @@ on:
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
- Makefile
|
- Makefile
|
||||||
- README.md
|
- README.md
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
paths-ignore:
|
|
||||||
- "docs/**"
|
|
||||||
- Makefile
|
|
||||||
- README.md
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
|
|
@ -24,10 +18,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: "stable"
|
go-version: "stable"
|
||||||
|
|
||||||
|
|
@ -35,7 +29,7 @@ jobs:
|
||||||
run: make test build
|
run: make test build
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codapi
|
name: codapi
|
||||||
path: build/codapi
|
path: build/codapi
|
||||||
|
|
|
||||||
6
.github/workflows/publish.yml
vendored
6
.github/workflows/publish.yml
vendored
|
|
@ -14,15 +14,15 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: "stable"
|
go-version: "stable"
|
||||||
|
|
||||||
- name: Release and publish
|
- name: Release and publish
|
||||||
uses: goreleaser/goreleaser-action@v5
|
uses: goreleaser/goreleaser-action@v4
|
||||||
with:
|
with:
|
||||||
args: release --clean
|
args: release --clean
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
54
README.md
54
README.md
|
|
@ -32,11 +32,51 @@ For an introduction to Codapi, see this post: [Interactive code examples for fun
|
||||||
|
|
||||||
See [Installing Codapi](docs/install.md) for details.
|
See [Installing Codapi](docs/install.md) for details.
|
||||||
|
|
||||||
## Usage
|
## Usage (API)
|
||||||
|
|
||||||
See [API](docs/api.md) to run sandboxed code using the HTTP API.
|
Call `/v1/exec` to run the code in a sandbox:
|
||||||
|
|
||||||
See [codapi-js](https://github.com/nalgeon/codapi-js) to embed the JavaScript widget into a web page.
|
```http
|
||||||
|
POST https://api.codapi.org/v1/exec
|
||||||
|
content-type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"sandbox": "python",
|
||||||
|
"command": "run",
|
||||||
|
"files": {
|
||||||
|
"": "print('hello world')"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
`sandbox` is the name of the pre-configured sandbox, and `command` is the name of a command supported by that sandbox. See [Adding a sandbox](docs/add-sandbox.md) for details on how to add a new sandbox.
|
||||||
|
|
||||||
|
`files` is a map, where the key is a filename and the value is its contents. When executing a single file, it should either be named as the `command` expects, or be an empty string (as in the example above).
|
||||||
|
|
||||||
|
Response:
|
||||||
|
|
||||||
|
```http
|
||||||
|
HTTP/1.1 200 OK
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"id": "python_run_9b7b1afd",
|
||||||
|
"ok": true,
|
||||||
|
"duration": 314,
|
||||||
|
"stdout": "hello world\n",
|
||||||
|
"stderr": ""
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- `id` is the unique execution identifier.
|
||||||
|
- `ok` is `true` if the code executed without errors, or `false` otherwise.
|
||||||
|
- `duration` is the execution time in milliseconds.
|
||||||
|
- `stdout` is what the code printed to the standard output.
|
||||||
|
- `stderr` is what the code printed to the standard error, or a compiler/os error (if any).
|
||||||
|
|
||||||
|
## Usage (JavaScript)
|
||||||
|
|
||||||
|
See [codapi-js](https://github.com/nalgeon/codapi-js) to embed the JavaScript widget into a web page. The widget uses exactly the same API as described above.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
@ -44,12 +84,12 @@ Contributions are welcome. For anything other than bugfixes, please first open a
|
||||||
|
|
||||||
Be sure to add or update tests as appropriate.
|
Be sure to add or update tests as appropriate.
|
||||||
|
|
||||||
## Funding
|
## License
|
||||||
|
|
||||||
Codapi is mostly a [one-man](https://antonz.org/) project, not backed by a VC fund or anything.
|
Copyright 2023 [Anton Zhiyanov](https://antonz.org/).
|
||||||
|
|
||||||
If you find Codapi useful, please consider sponsoring it on GitHub. It really helps to move the project forward.
|
The software is available under the Apache-2.0 license.
|
||||||
|
|
||||||
♥ [Become a sponsor](https://github.com/sponsors/nalgeon) to support Codapi.
|
## Stay tuned
|
||||||
|
|
||||||
★ [Subscribe](https://antonz.org/subscribe/) to stay on top of new features.
|
★ [Subscribe](https://antonz.org/subscribe/) to stay on top of new features.
|
||||||
|
|
|
||||||
42
docs/api.md
42
docs/api.md
|
|
@ -1,42 +0,0 @@
|
||||||
# API
|
|
||||||
|
|
||||||
Call `/v1/exec` to run the code in a sandbox:
|
|
||||||
|
|
||||||
```http
|
|
||||||
POST https://api.codapi.org/v1/exec
|
|
||||||
content-type: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"sandbox": "python",
|
|
||||||
"command": "run",
|
|
||||||
"files": {
|
|
||||||
"": "print('hello world')"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
`sandbox` is the name of the pre-configured sandbox, and `command` is the name of a command supported by that sandbox. See [Adding a sandbox](add-sandbox.md) for details on how to add a new sandbox.
|
|
||||||
|
|
||||||
`files` is a map, where the key is a filename and the value is its contents. When executing a single file, it should either be named as the `command` expects, or be an empty string (as in the example above).
|
|
||||||
|
|
||||||
Response:
|
|
||||||
|
|
||||||
```http
|
|
||||||
HTTP/1.1 200 OK
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"id": "python_run_9b7b1afd",
|
|
||||||
"ok": true,
|
|
||||||
"duration": 314,
|
|
||||||
"stdout": "hello world\n",
|
|
||||||
"stderr": ""
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
- `id` is the unique execution identifier.
|
|
||||||
- `ok` is `true` if the code executed without errors, or `false` otherwise.
|
|
||||||
- `duration` is the execution time in milliseconds.
|
|
||||||
- `stdout` is what the code printed to the standard output.
|
|
||||||
- `stderr` is what the code printed to the standard error, or a compiler/os error (if any).
|
|
||||||
-
|
|
||||||
|
|
@ -28,10 +28,10 @@ docker run hello-world
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cd /opt/codapi
|
cd /opt/codapi
|
||||||
curl -L -O "https://github.com/nalgeon/codapi/releases/download/0.8.0/codapi_0.8.0_linux_amd64.tar.gz"
|
curl -L -O "https://github.com/nalgeon/codapi/releases/download/0.6.0/codapi_0.6.0_linux_amd64.tar.gz"
|
||||||
tar xvzf codapi_0.8.0_linux_amd64.tar.gz
|
tar xvzf codapi_0.6.0_linux_amd64.tar.gz
|
||||||
chmod +x codapi
|
chmod +x codapi
|
||||||
rm -f codapi_0.8.0_linux_amd64.tar.gz
|
rm -f codapi_0.6.0_linux_amd64.tar.gz
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Build Docker images (as codapi):
|
5. Build Docker images (as codapi):
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
)
|
)
|
||||||
|
|
||||||
// A Config describes application config.
|
// A Config describes application cofig.
|
||||||
type Config struct {
|
type Config struct {
|
||||||
PoolSize int `json:"pool_size"`
|
PoolSize int `json:"pool_size"`
|
||||||
Verbose bool `json:"verbose"`
|
Verbose bool `json:"verbose"`
|
||||||
|
|
@ -99,7 +99,6 @@ type Step struct {
|
||||||
Version string `json:"version"`
|
Version string `json:"version"`
|
||||||
User string `json:"user"`
|
User string `json:"user"`
|
||||||
Action string `json:"action"`
|
Action string `json:"action"`
|
||||||
Detach bool `json:"detach"`
|
|
||||||
Stdin bool `json:"stdin"`
|
Stdin bool `json:"stdin"`
|
||||||
Command []string `json:"command"`
|
Command []string `json:"command"`
|
||||||
Timeout int `json:"timeout"`
|
Timeout int `json:"timeout"`
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
@ -23,7 +24,6 @@ var killTimeout = 5 * time.Second
|
||||||
const (
|
const (
|
||||||
actionRun = "run"
|
actionRun = "run"
|
||||||
actionExec = "exec"
|
actionExec = "exec"
|
||||||
actionStop = "stop"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// A Docker engine executes a specific sandbox command
|
// A Docker engine executes a specific sandbox command
|
||||||
|
|
@ -54,10 +54,7 @@ func (e *Docker) Exec(req Request) Execution {
|
||||||
if e.cmd.Entry != "" {
|
if e.cmd.Entry != "" {
|
||||||
// write request files to the temp directory
|
// write request files to the temp directory
|
||||||
err = e.writeFiles(dir, req.Files)
|
err = e.writeFiles(dir, req.Files)
|
||||||
var argErr ArgumentError
|
if err != nil {
|
||||||
if errors.As(err, &argErr) {
|
|
||||||
return Fail(req.ID, err)
|
|
||||||
} else if err != nil {
|
|
||||||
err = NewExecutionError("write files to temp dir", err)
|
err = NewExecutionError("write files to temp dir", err)
|
||||||
return Fail(req.ID, err)
|
return Fail(req.ID, err)
|
||||||
}
|
}
|
||||||
|
|
@ -126,9 +123,9 @@ func (e *Docker) execStep(step *config.Step, req Request, dir string, files File
|
||||||
|
|
||||||
// getBox selects an appropriate box for the step (if any).
|
// getBox selects an appropriate box for the step (if any).
|
||||||
func (e *Docker) getBox(step *config.Step, req Request) (*config.Box, error) {
|
func (e *Docker) getBox(step *config.Step, req Request) (*config.Box, error) {
|
||||||
if step.Action != actionRun {
|
if step.Action == actionExec {
|
||||||
// steps other than "run" use existing containers
|
// exec steps use existing instances
|
||||||
// and do not spin up new ones
|
// and do not spin up new boxes
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
var boxName string
|
var boxName string
|
||||||
|
|
@ -174,12 +171,7 @@ func (e *Docker) writeFiles(dir string, files Files) error {
|
||||||
if name == "" {
|
if name == "" {
|
||||||
name = e.cmd.Entry
|
name = e.cmd.Entry
|
||||||
}
|
}
|
||||||
var path string
|
path := filepath.Join(dir, name)
|
||||||
path, err = fileio.JoinDir(dir, name)
|
|
||||||
if err != nil {
|
|
||||||
err = NewArgumentError(fmt.Sprintf("files[%s]", name), err)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
err = fileio.WriteFile(path, content, 0444)
|
err = fileio.WriteFile(path, content, 0444)
|
||||||
return err == nil
|
return err == nil
|
||||||
})
|
})
|
||||||
|
|
@ -209,7 +201,7 @@ func (e *Docker) exec(box *config.Box, step *config.Step, req Request, dir strin
|
||||||
|
|
||||||
if err.Error() == "signal: killed" {
|
if err.Error() == "signal: killed" {
|
||||||
if step.Action == actionRun {
|
if step.Action == actionRun {
|
||||||
// we have to "docker kill" the container here, because the process
|
// we have to "docker kill" the container here, because the proccess
|
||||||
// inside the container is not related to the "docker run" process,
|
// inside the container is not related to the "docker run" process,
|
||||||
// and will hang forever after the "docker run" process is killed
|
// and will hang forever after the "docker run" process is killed
|
||||||
go func() {
|
go func() {
|
||||||
|
|
@ -245,14 +237,11 @@ func (e *Docker) exec(box *config.Box, step *config.Step, req Request, dir strin
|
||||||
// buildArgs prepares the arguments for the `docker` command.
|
// buildArgs prepares the arguments for the `docker` command.
|
||||||
func (e *Docker) buildArgs(box *config.Box, step *config.Step, req Request, dir string) []string {
|
func (e *Docker) buildArgs(box *config.Box, step *config.Step, req Request, dir string) []string {
|
||||||
var args []string
|
var args []string
|
||||||
switch step.Action {
|
if step.Action == actionRun {
|
||||||
case actionRun:
|
|
||||||
args = dockerRunArgs(box, step, req, dir)
|
args = dockerRunArgs(box, step, req, dir)
|
||||||
case actionExec:
|
} else if step.Action == actionExec {
|
||||||
args = dockerExecArgs(step, req)
|
args = dockerExecArgs(step)
|
||||||
case actionStop:
|
} else {
|
||||||
args = dockerStopArgs(step, req)
|
|
||||||
default:
|
|
||||||
// should never happen if the config is valid
|
// should never happen if the config is valid
|
||||||
args = []string{"version"}
|
args = []string{"version"}
|
||||||
}
|
}
|
||||||
|
|
@ -275,15 +264,12 @@ func dockerRunArgs(box *config.Box, step *config.Step, req Request, dir string)
|
||||||
"--pids-limit", strconv.Itoa(box.NProc),
|
"--pids-limit", strconv.Itoa(box.NProc),
|
||||||
"--user", step.User,
|
"--user", step.User,
|
||||||
}
|
}
|
||||||
if step.Detach {
|
if !box.Writable {
|
||||||
args = append(args, "--detach")
|
args = append(args, "--read-only")
|
||||||
}
|
}
|
||||||
if step.Stdin {
|
if step.Stdin {
|
||||||
args = append(args, "--interactive")
|
args = append(args, "--interactive")
|
||||||
}
|
}
|
||||||
if !box.Writable {
|
|
||||||
args = append(args, "--read-only")
|
|
||||||
}
|
|
||||||
if box.Storage != "" {
|
if box.Storage != "" {
|
||||||
args = append(args, "--storage-opt", fmt.Sprintf("size=%s", box.Storage))
|
args = append(args, "--storage-opt", fmt.Sprintf("size=%s", box.Storage))
|
||||||
}
|
}
|
||||||
|
|
@ -307,23 +293,14 @@ func dockerRunArgs(box *config.Box, step *config.Step, req Request, dir string)
|
||||||
}
|
}
|
||||||
|
|
||||||
// dockerExecArgs prepares the arguments for the `docker exec` command.
|
// dockerExecArgs prepares the arguments for the `docker exec` command.
|
||||||
func dockerExecArgs(step *config.Step, req Request) []string {
|
func dockerExecArgs(step *config.Step) []string {
|
||||||
// :name means executing in the container passed in the request
|
|
||||||
box := strings.Replace(step.Box, ":name", req.ID, 1)
|
|
||||||
return []string{
|
return []string{
|
||||||
actionExec, "--interactive",
|
actionExec, "--interactive",
|
||||||
"--user", step.User,
|
"--user", step.User,
|
||||||
box,
|
step.Box,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// dockerStopArgs prepares the arguments for the `docker stop` command.
|
|
||||||
func dockerStopArgs(step *config.Step, req Request) []string {
|
|
||||||
// :name means executing in the container passed in the request
|
|
||||||
box := strings.Replace(step.Box, ":name", req.ID, 1)
|
|
||||||
return []string{actionStop, box}
|
|
||||||
}
|
|
||||||
|
|
||||||
// filesReader creates a reader over an in-memory collection of files.
|
// filesReader creates a reader over an in-memory collection of files.
|
||||||
func filesReader(files Files) io.Reader {
|
func filesReader(files Files) io.Reader {
|
||||||
var input strings.Builder
|
var input strings.Builder
|
||||||
|
|
@ -339,7 +316,7 @@ func expandVars(command []string, name string) []string {
|
||||||
expanded := make([]string, len(command))
|
expanded := make([]string, len(command))
|
||||||
copy(expanded, command)
|
copy(expanded, command)
|
||||||
for i, cmd := range expanded {
|
for i, cmd := range expanded {
|
||||||
expanded[i] = strings.Replace(cmd, ":name", name, -1)
|
expanded[i] = strings.Replace(cmd, ":name", name, 1)
|
||||||
}
|
}
|
||||||
return expanded
|
return expanded
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
package engine
|
package engine
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
|
@ -59,27 +58,6 @@ var dockerCfg = &config.Config{
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Commands: map[string]config.SandboxCommands{
|
Commands: map[string]config.SandboxCommands{
|
||||||
"alpine": map[string]*config.Command{
|
|
||||||
"echo": {
|
|
||||||
Engine: "docker",
|
|
||||||
Before: &config.Step{
|
|
||||||
Box: "alpine", User: "sandbox", Action: "run", Detach: true,
|
|
||||||
Command: []string{"echo", "before"},
|
|
||||||
NOutput: 4096,
|
|
||||||
},
|
|
||||||
Steps: []*config.Step{
|
|
||||||
{
|
|
||||||
Box: ":name", User: "sandbox", Action: "exec",
|
|
||||||
Command: []string{"sh", "main.sh"},
|
|
||||||
NOutput: 4096,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
After: &config.Step{
|
|
||||||
Box: ":name", User: "sandbox", Action: "stop",
|
|
||||||
NOutput: 4096,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"go": map[string]*config.Command{
|
"go": map[string]*config.Command{
|
||||||
"run": {
|
"run": {
|
||||||
Engine: "docker",
|
Engine: "docker",
|
||||||
|
|
@ -253,29 +231,6 @@ func TestDockerRun(t *testing.T) {
|
||||||
t.Errorf("Stderr: unexpected value: %s", out.Stderr)
|
t.Errorf("Stderr: unexpected value: %s", out.Stderr)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("directory traversal attack", func(t *testing.T) {
|
|
||||||
mem.Clear()
|
|
||||||
const fileName = "../../opt/codapi/codapi"
|
|
||||||
engine := NewDocker(dockerCfg, "python", "run")
|
|
||||||
req := Request{
|
|
||||||
ID: "http_42",
|
|
||||||
Sandbox: "python",
|
|
||||||
Command: "run",
|
|
||||||
Files: map[string]string{
|
|
||||||
"": "print('hello world')",
|
|
||||||
fileName: "hehe",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
out := engine.Exec(req)
|
|
||||||
if out.OK {
|
|
||||||
t.Error("OK: expected false")
|
|
||||||
}
|
|
||||||
want := fmt.Sprintf("files[%s]: invalid name", fileName)
|
|
||||||
if out.Stderr != want {
|
|
||||||
t.Errorf("Stderr: unexpected value: %s", out.Stderr)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDockerExec(t *testing.T) {
|
func TestDockerExec(t *testing.T) {
|
||||||
|
|
@ -318,55 +273,11 @@ func TestDockerExec(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDockerStop(t *testing.T) {
|
|
||||||
logx.Mock()
|
|
||||||
commands := map[string]execy.CmdOut{
|
|
||||||
"docker run": {Stdout: "c958ff2", Stderr: "", Err: nil},
|
|
||||||
"docker exec": {Stdout: "hello", Stderr: "", Err: nil},
|
|
||||||
"docker stop": {Stdout: "alpine_42", Stderr: "", Err: nil},
|
|
||||||
}
|
|
||||||
mem := execy.Mock(commands)
|
|
||||||
engine := NewDocker(dockerCfg, "alpine", "echo")
|
|
||||||
|
|
||||||
t.Run("success", func(t *testing.T) {
|
|
||||||
req := Request{
|
|
||||||
ID: "alpine_42",
|
|
||||||
Sandbox: "alpine",
|
|
||||||
Command: "echo",
|
|
||||||
Files: map[string]string{
|
|
||||||
"": "echo hello",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
out := engine.Exec(req)
|
|
||||||
|
|
||||||
if out.ID != req.ID {
|
|
||||||
t.Errorf("ID: expected %s, got %s", req.ID, out.ID)
|
|
||||||
}
|
|
||||||
if !out.OK {
|
|
||||||
t.Error("OK: expected true")
|
|
||||||
}
|
|
||||||
want := "hello"
|
|
||||||
if out.Stdout != want {
|
|
||||||
t.Errorf("Stdout: expected %q, got %q", want, out.Stdout)
|
|
||||||
}
|
|
||||||
if out.Stderr != "" {
|
|
||||||
t.Errorf("Stderr: expected %q, got %q", "", out.Stdout)
|
|
||||||
}
|
|
||||||
if out.Err != nil {
|
|
||||||
t.Errorf("Err: expected nil, got %v", out.Err)
|
|
||||||
}
|
|
||||||
mem.MustHave(t, "docker run --rm --name alpine_42", "--detach")
|
|
||||||
mem.MustHave(t, "docker exec --interactive --user sandbox alpine_42 sh main.sh")
|
|
||||||
mem.MustHave(t, "docker stop alpine_42")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func Test_expandVars(t *testing.T) {
|
func Test_expandVars(t *testing.T) {
|
||||||
const name = "codapi_01"
|
const name = "codapi_01"
|
||||||
commands := map[string]string{
|
commands := map[string]string{
|
||||||
"python main.py": "python main.py",
|
"python main.py": "python main.py",
|
||||||
"sh create.sh :name": "sh create.sh " + name,
|
"sh create.sh :name": "sh create.sh " + name,
|
||||||
"sh copy.sh :name new-:name": "sh copy.sh " + name + " new-" + name,
|
|
||||||
}
|
}
|
||||||
for cmd, want := range commands {
|
for cmd, want := range commands {
|
||||||
src := strings.Fields(cmd)
|
src := strings.Fields(cmd)
|
||||||
|
|
|
||||||
|
|
@ -62,25 +62,6 @@ func (err ExecutionError) Unwrap() error {
|
||||||
return err.inner
|
return err.inner
|
||||||
}
|
}
|
||||||
|
|
||||||
// An ArgumentError is returned if code execution failed
|
|
||||||
// due to the invalid value of the request argument.
|
|
||||||
type ArgumentError struct {
|
|
||||||
name string
|
|
||||||
reason error
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewArgumentError(name string, reason error) ArgumentError {
|
|
||||||
return ArgumentError{name: name, reason: reason}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (err ArgumentError) Error() string {
|
|
||||||
return err.name + ": " + err.reason.Error()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (err ArgumentError) Unwrap() error {
|
|
||||||
return err.reason
|
|
||||||
}
|
|
||||||
|
|
||||||
// Files are a collection of files to be executed by the engine.
|
// Files are a collection of files to be executed by the engine.
|
||||||
type Files map[string]string
|
type Files map[string]string
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ func (p *Program) RunStdin(stdin io.Reader, id, name string, arg ...string) (std
|
||||||
cmd.Stdout = LimitWriter(&cmdout, p.nOutput)
|
cmd.Stdout = LimitWriter(&cmdout, p.nOutput)
|
||||||
cmd.Stderr = LimitWriter(&cmderr, p.nOutput)
|
cmd.Stderr = LimitWriter(&cmderr, p.nOutput)
|
||||||
err = execy.Run(cmd)
|
err = execy.Run(cmd)
|
||||||
stdout = strings.TrimSpace(cmdout.String())
|
stdout = cmdout.String()
|
||||||
stderr = strings.TrimSpace(cmderr.String())
|
stderr = cmderr.String()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,17 +12,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Exists checks if the specified path exists.
|
|
||||||
func Exists(path string) bool {
|
|
||||||
_, err := os.Stat(path)
|
|
||||||
// we need a double negation here, because
|
|
||||||
// errors.Is(err, os.ErrExist)
|
|
||||||
// does not work
|
|
||||||
return !errors.Is(err, os.ErrNotExist)
|
|
||||||
}
|
|
||||||
|
|
||||||
// CopyFile copies all files matching the pattern
|
// CopyFile copies all files matching the pattern
|
||||||
// to the destination directory. Does not overwrite existing file.
|
// to the destination directory.
|
||||||
func CopyFiles(pattern string, dstDir string, perm fs.FileMode) error {
|
func CopyFiles(pattern string, dstDir string, perm fs.FileMode) error {
|
||||||
matches, err := filepath.Glob(pattern)
|
matches, err := filepath.Glob(pattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
@ -37,10 +28,6 @@ func CopyFiles(pattern string, dstDir string, perm fs.FileMode) error {
|
||||||
defer src.Close()
|
defer src.Close()
|
||||||
|
|
||||||
dstFile := filepath.Join(dstDir, filepath.Base(match))
|
dstFile := filepath.Join(dstDir, filepath.Base(match))
|
||||||
if Exists(dstFile) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
dst, err := os.OpenFile(dstFile, os.O_RDWR|os.O_CREATE|os.O_TRUNC, perm)
|
dst, err := os.OpenFile(dstFile, os.O_RDWR|os.O_CREATE|os.O_TRUNC, perm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
@ -75,61 +62,23 @@ func ReadJson[T any](path string) (T, error) {
|
||||||
// e.g. data:application/octet-stream;base64,MTIz
|
// e.g. data:application/octet-stream;base64,MTIz
|
||||||
func WriteFile(path, content string, perm fs.FileMode) (err error) {
|
func WriteFile(path, content string, perm fs.FileMode) (err error) {
|
||||||
var data []byte
|
var data []byte
|
||||||
if !strings.HasPrefix(content, "data:") {
|
if strings.HasPrefix(content, "data:") {
|
||||||
|
// data-url encoded file
|
||||||
|
_, encoded, found := strings.Cut(content, ",")
|
||||||
|
if !found {
|
||||||
|
return errors.New("invalid data-url encoding")
|
||||||
|
}
|
||||||
|
data, err = base64.StdEncoding.DecodeString(encoded)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
// text file
|
// text file
|
||||||
data = []byte(content)
|
data = []byte(content)
|
||||||
return os.WriteFile(path, data, perm)
|
|
||||||
}
|
|
||||||
|
|
||||||
// data-url encoded file
|
|
||||||
meta, encoded, found := strings.Cut(content, ",")
|
|
||||||
if !found {
|
|
||||||
return errors.New("invalid data-url encoding")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.HasSuffix(meta, "base64") {
|
|
||||||
// no need to decode
|
|
||||||
data = []byte(encoded)
|
|
||||||
return os.WriteFile(path, data, perm)
|
|
||||||
}
|
|
||||||
|
|
||||||
// decode base64-encoded data
|
|
||||||
data, err = base64.StdEncoding.DecodeString(encoded)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
return os.WriteFile(path, data, perm)
|
return os.WriteFile(path, data, perm)
|
||||||
}
|
}
|
||||||
|
|
||||||
// JoinDir joins a directory path with a relative file path,
|
|
||||||
// making sure that the resulting path is still inside the directory.
|
|
||||||
// Returns an error otherwise.
|
|
||||||
func JoinDir(dir string, name string) (string, error) {
|
|
||||||
if dir == "" {
|
|
||||||
return "", errors.New("invalid dir")
|
|
||||||
}
|
|
||||||
|
|
||||||
cleanName := filepath.Clean(name)
|
|
||||||
if cleanName == "" {
|
|
||||||
return "", errors.New("invalid name")
|
|
||||||
}
|
|
||||||
if cleanName == "." || cleanName == "/" || filepath.IsAbs(cleanName) {
|
|
||||||
return "", errors.New("invalid name")
|
|
||||||
}
|
|
||||||
|
|
||||||
path := filepath.Join(dir, cleanName)
|
|
||||||
|
|
||||||
dirPrefix := filepath.Clean(dir)
|
|
||||||
if dirPrefix != "/" {
|
|
||||||
dirPrefix += string(os.PathSeparator)
|
|
||||||
}
|
|
||||||
if !strings.HasPrefix(path, dirPrefix) {
|
|
||||||
return "", errors.New("invalid name")
|
|
||||||
}
|
|
||||||
|
|
||||||
return path, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// MkdirTemp creates a new temporary directory with given permissions
|
// MkdirTemp creates a new temporary directory with given permissions
|
||||||
// and returns the pathname of the new directory.
|
// and returns the pathname of the new directory.
|
||||||
func MkdirTemp(perm fs.FileMode) (string, error) {
|
func MkdirTemp(perm fs.FileMode) (string, error) {
|
||||||
|
|
|
||||||
|
|
@ -8,119 +8,57 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestExists(t *testing.T) {
|
|
||||||
t.Run("exists", func(t *testing.T) {
|
|
||||||
path := filepath.Join(t.TempDir(), "file.txt")
|
|
||||||
err := os.WriteFile(path, []byte{1, 2, 3}, 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
if !Exists(path) {
|
|
||||||
t.Fatalf("Exists: %s does not exist", filepath.Base(path))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
t.Run("does not exist", func(t *testing.T) {
|
|
||||||
path := filepath.Join(t.TempDir(), "file.txt")
|
|
||||||
if Exists(path) {
|
|
||||||
t.Fatalf("Exists: %s should not exist", filepath.Base(path))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCopyFiles(t *testing.T) {
|
func TestCopyFiles(t *testing.T) {
|
||||||
// create a temporary directory for testing
|
// Create a temporary directory for testing
|
||||||
srcDir, err := os.MkdirTemp("", "src")
|
srcDir, err := os.MkdirTemp("", "src")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
defer os.RemoveAll(srcDir)
|
defer os.RemoveAll(srcDir)
|
||||||
|
|
||||||
// create a source file
|
// Create a source file
|
||||||
srcFile := filepath.Join(srcDir, "source.txt")
|
srcFile := filepath.Join(srcDir, "source.txt")
|
||||||
err = os.WriteFile(srcFile, []byte("test data"), 0644)
|
err = os.WriteFile(srcFile, []byte("test data"), 0644)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// specify the destination directory
|
// Specify the destination directory
|
||||||
dstDir, err := os.MkdirTemp("", "dst")
|
dstDir, err := os.MkdirTemp("", "dst")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
defer os.RemoveAll(dstDir)
|
defer os.RemoveAll(dstDir)
|
||||||
|
|
||||||
t.Run("copy", func(t *testing.T) {
|
// Call the CopyFiles function
|
||||||
// call the CopyFiles function
|
const perm = fs.FileMode(0444)
|
||||||
const perm = fs.FileMode(0444)
|
pattern := filepath.Join(srcDir, "*.txt")
|
||||||
pattern := filepath.Join(srcDir, "*.txt")
|
err = CopyFiles(pattern, dstDir, perm)
|
||||||
err = CopyFiles(pattern, dstDir, perm)
|
if err != nil {
|
||||||
if err != nil {
|
t.Fatal(err)
|
||||||
t.Fatal(err)
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// verify that the file was copied correctly
|
// Verify that the file was copied correctly
|
||||||
dstFile := filepath.Join(dstDir, "source.txt")
|
dstFile := filepath.Join(dstDir, "source.txt")
|
||||||
fileInfo, err := os.Stat(dstFile)
|
fileInfo, err := os.Stat(dstFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("file not copied: %s", err)
|
t.Fatalf("file not copied: %s", err)
|
||||||
}
|
}
|
||||||
if fileInfo.Mode() != perm {
|
if fileInfo.Mode() != perm {
|
||||||
t.Errorf("unexpected file permissions: got %v, want %v", fileInfo.Mode(), perm)
|
t.Errorf("unexpected file permissions: got %v, want %v", fileInfo.Mode(), perm)
|
||||||
}
|
}
|
||||||
|
|
||||||
// read the contents of the copied file
|
// Read the contents of the copied file
|
||||||
data, err := os.ReadFile(dstFile)
|
data, err := os.ReadFile(dstFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// verify the contents of the copied file
|
// Verify the contents of the copied file
|
||||||
expected := []byte("test data")
|
expected := []byte("test data")
|
||||||
if string(data) != string(expected) {
|
if string(data) != string(expected) {
|
||||||
t.Errorf("unexpected file content: got %q, want %q", data, expected)
|
t.Errorf("unexpected file content: got %q, want %q", data, expected)
|
||||||
}
|
}
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("skip existing", func(t *testing.T) {
|
|
||||||
// existing file in the destination dir
|
|
||||||
path := filepath.Join(dstDir, "existing.txt")
|
|
||||||
err := os.WriteFile(path, []byte("v1"), 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// same file in the source dir
|
|
||||||
path = filepath.Join(srcDir, "existing.txt")
|
|
||||||
err = os.WriteFile(path, []byte("v2"), 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// copy files
|
|
||||||
pattern := filepath.Join(srcDir, "*.txt")
|
|
||||||
err = CopyFiles(pattern, dstDir, 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// verify that the new file was copied correctly
|
|
||||||
newFile := filepath.Join(dstDir, "source.txt")
|
|
||||||
_, err = os.Stat(newFile)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("new file not copied: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// verify that the existing file remained unchanged
|
|
||||||
existFile := filepath.Join(dstDir, "existing.txt")
|
|
||||||
data, err := os.ReadFile(existFile)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
expected := []byte("v1")
|
|
||||||
if string(data) != string(expected) {
|
|
||||||
t.Error("existing file got overwritten")
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestReadJson(t *testing.T) {
|
func TestReadJson(t *testing.T) {
|
||||||
|
|
@ -173,8 +111,8 @@ func TestWriteFile(t *testing.T) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("data-octet-stream", func(t *testing.T) {
|
t.Run("binary", func(t *testing.T) {
|
||||||
path := filepath.Join(dir, "data-1.bin")
|
path := filepath.Join(dir, "data.bin")
|
||||||
err = WriteFile(path, "data:application/octet-stream;base64,MTIz", 0444)
|
err = WriteFile(path, "data:application/octet-stream;base64,MTIz", 0444)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("expected nil err, got %v", err)
|
t.Fatalf("expected nil err, got %v", err)
|
||||||
|
|
@ -189,38 +127,6 @@ func TestWriteFile(t *testing.T) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("data-base64", func(t *testing.T) {
|
|
||||||
path := filepath.Join(dir, "data-2.bin")
|
|
||||||
err = WriteFile(path, "data:;base64,MTIz", 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("expected nil err, got %v", err)
|
|
||||||
}
|
|
||||||
got, err := os.ReadFile(path)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("read file: expected nil err, got %v", err)
|
|
||||||
}
|
|
||||||
want := []byte("123")
|
|
||||||
if !reflect.DeepEqual(got, want) {
|
|
||||||
t.Errorf("read file: expected %v, got %v", want, got)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("data-text-plain", func(t *testing.T) {
|
|
||||||
path := filepath.Join(dir, "data-3.bin")
|
|
||||||
err = WriteFile(path, "data:text/plain;,123", 0444)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("expected nil err, got %v", err)
|
|
||||||
}
|
|
||||||
got, err := os.ReadFile(path)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("read file: expected nil err, got %v", err)
|
|
||||||
}
|
|
||||||
want := []byte("123")
|
|
||||||
if !reflect.DeepEqual(got, want) {
|
|
||||||
t.Errorf("read file: expected %v, got %v", want, got)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
t.Run("perm", func(t *testing.T) {
|
t.Run("perm", func(t *testing.T) {
|
||||||
const perm = 0444
|
const perm = 0444
|
||||||
path := filepath.Join(dir, "perm.txt")
|
path := filepath.Join(dir, "perm.txt")
|
||||||
|
|
@ -247,107 +153,13 @@ func TestWriteFile(t *testing.T) {
|
||||||
|
|
||||||
t.Run("invalid binary value", func(t *testing.T) {
|
t.Run("invalid binary value", func(t *testing.T) {
|
||||||
path := filepath.Join(dir, "data.bin")
|
path := filepath.Join(dir, "data.bin")
|
||||||
err = WriteFile(path, "data:;base64,12345", 0444)
|
err = WriteFile(path, "data:application/octet-stream;base64,12345", 0444)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatal("expected error, got nil")
|
t.Fatal("expected error, got nil")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestJoinDir(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
dir string
|
|
||||||
filename string
|
|
||||||
want string
|
|
||||||
wantErr bool
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "regular join",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "docs/report.txt",
|
|
||||||
want: "/home/user/docs/report.txt",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "join with dot",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: ".",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "join with absolute path",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "/etc/passwd",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "join with parent directory",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "../user2/docs/report.txt",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "empty directory",
|
|
||||||
dir: "",
|
|
||||||
filename: "report.txt",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "empty filename",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "directory with trailing slash",
|
|
||||||
dir: "/home/user/",
|
|
||||||
filename: "docs/report.txt",
|
|
||||||
want: "/home/user/docs/report.txt",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "filename with leading slash",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "/docs/report.txt",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "root directory",
|
|
||||||
dir: "/",
|
|
||||||
filename: "report.txt",
|
|
||||||
want: "/report.txt",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "dot dot slash filename",
|
|
||||||
dir: "/home/user",
|
|
||||||
filename: "..",
|
|
||||||
want: "",
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
got, err := JoinDir(tt.dir, tt.filename)
|
|
||||||
if (err != nil) != tt.wantErr {
|
|
||||||
t.Errorf("JoinDir() error = %v, wantErr %v", err, tt.wantErr)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if got != tt.want {
|
|
||||||
t.Errorf("JoinDir() = %v, want %v", got, tt.want)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestMkdirTemp(t *testing.T) {
|
func TestMkdirTemp(t *testing.T) {
|
||||||
t.Run("default permissions", func(t *testing.T) {
|
t.Run("default permissions", func(t *testing.T) {
|
||||||
const perm = 0755
|
const perm = 0755
|
||||||
|
|
|
||||||
|
|
@ -30,16 +30,9 @@ func (m *Memory) WriteString(s string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Has returns true if the memory has the message.
|
// Has returns true if the memory has the message.
|
||||||
func (m *Memory) Has(message ...string) bool {
|
func (m *Memory) Has(msg string) bool {
|
||||||
for _, line := range m.Lines {
|
for _, line := range m.Lines {
|
||||||
containsAll := true
|
if strings.Contains(line, msg) {
|
||||||
for _, part := range message {
|
|
||||||
if !strings.Contains(line, part) {
|
|
||||||
containsAll = false
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if containsAll {
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -47,22 +40,20 @@ func (m *Memory) Has(message ...string) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
// MustHave checks if the memory has the message.
|
// MustHave checks if the memory has the message.
|
||||||
// If the message consists of several parts,
|
func (m *Memory) MustHave(t *testing.T, msg string) {
|
||||||
// they must all be in the same memory line.
|
if !m.Has(msg) {
|
||||||
func (m *Memory) MustHave(t *testing.T, message ...string) {
|
t.Errorf("%s must have: %s", m.Name, msg)
|
||||||
if !m.Has(message...) {
|
|
||||||
t.Errorf("%s must have: %v", m.Name, message)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// MustNotHave checks if the memory does not have the message.
|
// MustNotHave checks if the memory does not have the message.
|
||||||
func (m *Memory) MustNotHave(t *testing.T, message ...string) {
|
func (m *Memory) MustNotHave(t *testing.T, msg string) {
|
||||||
if m.Has(message...) {
|
if m.Has(msg) {
|
||||||
t.Errorf("%s must NOT have: %v", m.Name, message)
|
t.Errorf("%s must NOT have: %s", m.Name, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear clears the memory.
|
// Clear cleares the memory.
|
||||||
func (m *Memory) Clear() {
|
func (m *Memory) Clear() {
|
||||||
m.Lines = []string{}
|
m.Lines = []string{}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,23 +40,4 @@ func TestMemory_Has(t *testing.T) {
|
||||||
if !mem.Has("hello world") {
|
if !mem.Has("hello world") {
|
||||||
t.Error("Has: unexpected false")
|
t.Error("Has: unexpected false")
|
||||||
}
|
}
|
||||||
_, _ = mem.Write([]byte("one two three four"))
|
|
||||||
if !mem.Has("one two") {
|
|
||||||
t.Error("Has: one two: unexpected false")
|
|
||||||
}
|
|
||||||
if !mem.Has("two three") {
|
|
||||||
t.Error("Has: two three: unexpected false")
|
|
||||||
}
|
|
||||||
if mem.Has("one three") {
|
|
||||||
t.Error("Has: one three: unexpected true")
|
|
||||||
}
|
|
||||||
if !mem.Has("one", "three") {
|
|
||||||
t.Error("Has: [one three]: unexpected false")
|
|
||||||
}
|
|
||||||
if !mem.Has("one", "three", "four") {
|
|
||||||
t.Error("Has: [one three four]: unexpected false")
|
|
||||||
}
|
|
||||||
if !mem.Has("four", "three") {
|
|
||||||
t.Error("Has: [four three]: unexpected false")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ var engineConstr = map[string]func(*config.Config, string, string) engine.Engine
|
||||||
}
|
}
|
||||||
|
|
||||||
// engines is the registry of command executors.
|
// engines is the registry of command executors.
|
||||||
// Each engine executes a specific command in a specific sandbox.
|
// Each engine executes a specific command in a specifix sandbox.
|
||||||
// sandbox : command : engine
|
// sandbox : command : engine
|
||||||
// TODO: Maybe it's better to create a single instance of each engine
|
// TODO: Maybe it's better to create a single instance of each engine
|
||||||
// and pass the sandbox and command as arguments to the Exec.
|
// and pass the sandbox and command as arguments to the Exec.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user