Skip to content

test: enable parallel on more integration tests #400

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ func TestGitSSHAuth(t *testing.T) {
base64Key := base64.StdEncoding.EncodeToString([]byte(testSSHKey))

t.Run("Base64/Success", func(t *testing.T) {
t.Parallel()

signer, err := gossh.ParsePrivateKey([]byte(testSSHKey))
require.NoError(t, err)
require.NotNil(t, signer)
Expand All @@ -440,6 +442,8 @@ func TestGitSSHAuth(t *testing.T) {
})

t.Run("Base64/Failure", func(t *testing.T) {
t.Parallel()

_, randomKey, err := ed25519.GenerateKey(nil)
require.NoError(t, err)
signer, err := gossh.NewSignerFromKey(randomKey)
Expand Down Expand Up @@ -591,6 +595,8 @@ func TestBuildFromDockerfile(t *testing.T) {
}

func TestBuildPrintBuildOutput(t *testing.T) {
t.Parallel()

// Ensures that a Git repository with a Dockerfile is cloned and built.
srv := gittest.CreateGitServer(t, gittest.Options{
Files: map[string]string{
Expand Down Expand Up @@ -619,6 +625,8 @@ func TestBuildPrintBuildOutput(t *testing.T) {
}

func TestBuildIgnoreVarRunSecrets(t *testing.T) {
t.Parallel()

// Ensures that a Git repository with a Dockerfile is cloned and built.
srv := gittest.CreateGitServer(t, gittest.Options{
Files: map[string]string{
Expand All @@ -631,6 +639,8 @@ func TestBuildIgnoreVarRunSecrets(t *testing.T) {
require.NoError(t, err)

t.Run("ReadWrite", func(t *testing.T) {
t.Parallel()

ctr, err := runEnvbuilder(t, runOpts{
env: []string{
envbuilderEnv("GIT_URL", srv.URL),
Expand All @@ -645,6 +655,8 @@ func TestBuildIgnoreVarRunSecrets(t *testing.T) {
})

t.Run("ReadOnly", func(t *testing.T) {
t.Parallel()

ctr, err := runEnvbuilder(t, runOpts{
env: []string{
envbuilderEnv("GIT_URL", srv.URL),
Expand All @@ -660,6 +672,8 @@ func TestBuildIgnoreVarRunSecrets(t *testing.T) {
}

func TestBuildWithSetupScript(t *testing.T) {
t.Parallel()

// Ensures that a Git repository with a Dockerfile is cloned and built.
srv := gittest.CreateGitServer(t, gittest.Options{
Files: map[string]string{
Expand Down Expand Up @@ -751,6 +765,8 @@ func TestBuildFromDevcontainerInRoot(t *testing.T) {
}

func TestBuildCustomCertificates(t *testing.T) {
t.Parallel()

srv := gittest.CreateGitServer(t, gittest.Options{
Files: map[string]string{
"Dockerfile": "FROM " + testImageAlpine,
Expand All @@ -772,6 +788,8 @@ func TestBuildCustomCertificates(t *testing.T) {
}

func TestBuildStopStartCached(t *testing.T) {
t.Parallel()

// Ensures that a Git repository with a Dockerfile is cloned and built.
srv := gittest.CreateGitServer(t, gittest.Options{
Files: map[string]string{
Expand Down Expand Up @@ -1269,6 +1287,8 @@ func setupPassthroughRegistry(t *testing.T, image string, opts *setupPassthrough
}

func TestNoMethodFails(t *testing.T) {
t.Parallel()

_, err := runEnvbuilder(t, runOpts{env: []string{}})
require.ErrorContains(t, err, envbuilder.ErrNoFallbackImage.Error())
}
Expand Down Expand Up @@ -1340,6 +1360,8 @@ COPY %s .`, testImageAlpine, inclFile)
tc := tc

t.Run(tc.name, func(t *testing.T) {
t.Parallel()

srv := gittest.CreateGitServer(t, gittest.Options{
Files: tc.files,
})
Expand Down