mirror of https://github.com/docker/compose.git
Fix problems with ddev e2e test and minor cleanup, add tmate (#27)
* Add tmate for debugging * Use -parallel=1 for standaone tests Signed-off-by: Randy Fay <randy@randyfay.com>
This commit is contained in:
parent
a5a1c5f2f1
commit
97d46a14ef
|
@ -5,6 +5,12 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- v2
|
- v2
|
||||||
pull_request:
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
debug_enabled:
|
||||||
|
description: 'To run with tmate enter "debug_enabled"'
|
||||||
|
required: false
|
||||||
|
default: "false"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
@ -125,5 +131,12 @@ jobs:
|
||||||
BUILD_TAGS: e2e
|
BUILD_TAGS: e2e
|
||||||
run: make GIT_TAG=e2e-PR-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }} -f builder.Makefile compose-plugin
|
run: make GIT_TAG=e2e-PR-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }} -f builder.Makefile compose-plugin
|
||||||
|
|
||||||
|
- name: Setup tmate session
|
||||||
|
uses: mxschmitt/action-tmate@v3
|
||||||
|
with:
|
||||||
|
limit-access-to-actor: true
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
|
||||||
|
|
||||||
- name: E2E Test in standalone mode
|
- name: E2E Test in standalone mode
|
||||||
run: make e2e-compose-standalone
|
run: make e2e-compose-standalone
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -51,7 +51,7 @@ e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2
|
||||||
rm -f /usr/local/bin/docker-compose
|
rm -f /usr/local/bin/docker-compose
|
||||||
cp bin/docker-compose /usr/local/bin
|
cp bin/docker-compose /usr/local/bin
|
||||||
docker-compose version
|
docker-compose version
|
||||||
go test $(TEST_FLAGS) -count=1 --tags=standalone ./pkg/e2e
|
go test $(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
|
||||||
|
|
||||||
.PHONY: mocks
|
.PHONY: mocks
|
||||||
mocks:
|
mocks:
|
||||||
|
|
|
@ -27,7 +27,7 @@ import (
|
||||||
"gotest.tools/v3/assert"
|
"gotest.tools/v3/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
const ddevVersion = "v1.18.2"
|
const ddevVersion = "v1.19.1"
|
||||||
|
|
||||||
func TestComposeRunDdev(t *testing.T) {
|
func TestComposeRunDdev(t *testing.T) {
|
||||||
if !composeStandaloneMode {
|
if !composeStandaloneMode {
|
||||||
|
@ -36,10 +36,15 @@ func TestComposeRunDdev(t *testing.T) {
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
t.Skip("Running on Windows. Skipping...")
|
t.Skip("Running on Windows. Skipping...")
|
||||||
}
|
}
|
||||||
|
_ = os.Setenv("DDEV_DEBUG", "true")
|
||||||
|
|
||||||
c := NewParallelE2eCLI(t, binDir)
|
c := NewParallelE2eCLI(t, binDir)
|
||||||
dir, err := os.MkdirTemp("", t.Name()+"-")
|
dir, err := os.MkdirTemp("", t.Name()+"-")
|
||||||
assert.NilError(t, err)
|
assert.NilError(t, err)
|
||||||
|
|
||||||
|
// ddev needs to be able to find mkcert to figure out where certs are.
|
||||||
|
_ = os.Setenv("PATH", fmt.Sprintf("%s:%s", os.Getenv("PATH"), dir))
|
||||||
|
|
||||||
siteName := filepath.Base(dir)
|
siteName := filepath.Base(dir)
|
||||||
|
|
||||||
t.Cleanup(func() {
|
t.Cleanup(func() {
|
||||||
|
@ -60,31 +65,22 @@ func TestComposeRunDdev(t *testing.T) {
|
||||||
compressedFilename))
|
compressedFilename))
|
||||||
|
|
||||||
c.RunCmdInDir(dir, "tar", "-xzf", compressedFilename)
|
c.RunCmdInDir(dir, "tar", "-xzf", compressedFilename)
|
||||||
c.RunDockerCmd("pull", "drud/ddev-ssh-agent:v1.18.0")
|
|
||||||
c.RunDockerCmd("pull", "busybox:stable")
|
|
||||||
c.RunDockerCmd("pull", "phpmyadmin:5")
|
|
||||||
|
|
||||||
c.RunDockerCmd("pull", tagged("drud/ddev-router"))
|
|
||||||
c.RunDockerCmd("pull", tagged("drud/ddev-dbserver-mariadb-10.3"))
|
|
||||||
c.RunDockerCmd("pull", tagged("drud/ddev-webserver"))
|
|
||||||
|
|
||||||
// Create a simple index.php we can test against.
|
// Create a simple index.php we can test against.
|
||||||
c.RunCmdInDir(dir, "sh", "-c", "echo '<?php\nprint \"ddev is working\";' >index.php")
|
c.RunCmdInDir(dir, "sh", "-c", "echo '<?php\nprint \"ddev is working\";' >index.php")
|
||||||
|
|
||||||
c.RunCmdInDir(dir, "./ddev", "config", "--auto")
|
c.RunCmdInDir(dir, "./ddev", "config", "--auto")
|
||||||
c.RunCmdInDir(dir, "./ddev", "config", "global", "--use-docker-compose-from-path")
|
c.RunCmdInDir(dir, "./ddev", "config", "global", "--use-docker-compose-from-path")
|
||||||
|
vRes := c.RunCmdInDir(dir, "./ddev", "version")
|
||||||
|
out := vRes.Stdout()
|
||||||
|
fmt.Printf("ddev version: %s\n", out)
|
||||||
|
|
||||||
c.RunCmdInDir(dir, "./ddev", "poweroff")
|
c.RunCmdInDir(dir, "./ddev", "poweroff")
|
||||||
|
|
||||||
startRes := c.RunCmdInDir(dir, "./ddev", "start", "-y")
|
c.RunCmdInDir(dir, "./ddev", "start", "-y")
|
||||||
assert.Equal(c.test, startRes.ExitCode, 0, "Could not start project")
|
|
||||||
|
|
||||||
curlRes := c.RunCmdInDir(dir, "curl", "-sSL", fmt.Sprintf("http://%s.ddev.site", siteName))
|
curlRes := c.RunCmdInDir(dir, "curl", "-sSL", fmt.Sprintf("http://%s.ddev.site", siteName))
|
||||||
out := curlRes.Stdout()
|
out = curlRes.Stdout()
|
||||||
fmt.Println(out)
|
fmt.Println(out)
|
||||||
assert.Assert(c.test, strings.Contains(out, "ddev is working"), "Could not start project")
|
assert.Assert(c.test, strings.Contains(out, "ddev is working"), "Could not start project")
|
||||||
}
|
}
|
||||||
|
|
||||||
func tagged(img string) string {
|
|
||||||
return fmt.Sprintf("%s:%s", img, ddevVersion)
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue