Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit 4aad1ce

Browse files
author
B&R
committed
fix: Test not starting because of permissions conflict
1 parent 723c232 commit 4aad1ce

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ require (
6262
github.com/opencontainers/go-digest v1.0.0 // indirect
6363
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
6464
github.com/opencontainers/runc v1.1.3 // indirect
65+
github.com/otiai10/copy v1.14.0 // indirect
6566
github.com/pmezard/go-difflib v1.0.0 // indirect
6667
github.com/shopspring/decimal v1.3.1 // indirect
6768
github.com/spf13/cast v1.5.0 // indirect
@@ -72,6 +73,7 @@ require (
7273
golang.org/x/crypto v0.5.0 // indirect
7374
golang.org/x/net v0.8.0 // indirect
7475
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
76+
golang.org/x/sync v0.3.0 // indirect
7577
golang.org/x/sys v0.6.0 // indirect
7678
golang.org/x/term v0.6.0 // indirect
7779
golang.org/x/text v0.8.0 // indirect

go.sum

+5
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ github.com/opencontainers/runc v1.1.3 h1:vIXrkId+0/J2Ymu2m7VjGvbSlAId9XNRPhn2p4b
254254
github.com/opencontainers/runc v1.1.3/go.mod h1:1J5XiS+vdZ3wCyZybsuxXZWGrgSr8fFJHLXuG2PsnNg=
255255
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
256256
github.com/opencontainers/selinux v1.10.0/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI=
257+
github.com/otiai10/copy v1.14.0 h1:dCI/t1iTdYGtkvCuBG2BgR6KZa83PTclw4U5n2wAllU=
258+
github.com/otiai10/copy v1.14.0/go.mod h1:ECfuL02W+/FkTWZWgQqXPWZgW9oeKCSQ5qVfSc4qc4w=
259+
github.com/otiai10/mint v1.5.1 h1:XaPLeE+9vGbuyEHem1JNk3bYc7KKqyI/na0/mLd/Kks=
257260
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
258261
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
259262
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
@@ -415,6 +418,8 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ
415418
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
416419
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
417420
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
421+
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
422+
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
418423
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
419424
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
420425
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

pkg/generate/e2e_util_test.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"context"
66
"encoding/json"
77
"fmt"
8+
cp "github.com/otiai10/copy"
89
"github.com/pkg/errors"
910
generate2 "github.com/riotkit-org/br-backup-maker/pkg/generate"
1011
log "github.com/sirupsen/logrus"
@@ -163,6 +164,7 @@ func loginToServer(serverHost string, serverPort int, user string, password stri
163164
func createServerContainer(ctx context.Context, postgresHost string, postgresPort int, minioHost string, minioPort int) (testcontainers.Container, string, int) {
164165
version := os.Getenv("TEST_BACKUP_REPOSITORY_VERSION")
165166
req := testcontainers.ContainerRequest{
167+
User: "root",
166168
Image: "ghcr.io/riotkit-org/backup-repository:" + version,
167169
Env: map[string]string{
168170
"BR_DB_HOSTNAME": postgresHost,
@@ -193,9 +195,12 @@ func createServerContainer(ctx context.Context, postgresHost string, postgresPor
193195
},
194196
}
195197
wd, _ := os.Getwd()
198+
buildPath := wd + "/../../.build"
199+
_ = cp.Copy(wd+"/../../resources/filesystem-config", buildPath+"/filesystem-config")
200+
196201
req.Mounts = testcontainers.ContainerMounts{
197202
testcontainers.ContainerMount{
198-
Source: testcontainers.GenericBindMountSource{HostPath: wd + "/../../.build"},
203+
Source: testcontainers.GenericBindMountSource{HostPath: buildPath},
199204
Target: "/mnt",
200205
ReadOnly: false,
201206
},

versions.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
# Used in E2E testing
6-
TEST_BACKUP_REPOSITORY_VERSION="v4.0.0"
6+
TEST_BACKUP_REPOSITORY_VERSION="v4.1.0-rc1"
77
TEST_POSTGRES_VERSION="14.2-alpine"
88
TEST_MINIO_VERSION="2022.4.8-debian-10-r0"
99
TEST_MARIADB_VERSION="10.7.3-focal"

0 commit comments

Comments
 (0)