Merge pull request #8858 from ulyssessouza/avoid-test-flakyness-by-ordering-volumes

Avoid test flakyness by ordering volumes before checking
This commit is contained in:
Ulysses Souza 2021-10-31 01:31:23 +00:00 committed by GitHub
commit 76fe903deb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@ package compose
import (
"os"
"path/filepath"
"sort"
"testing"
"github.com/compose-spec/compose-go/types"
@ -124,12 +125,18 @@ func TestBuildContainerMountOptions(t *testing.T) {
}
mounts, err := buildContainerMountOptions(project, project.Services[0], moby.ImageInspect{}, inherit)
sort.Slice(mounts, func(i, j int) bool {
return mounts[i].Target < mounts[j].Target
})
assert.NilError(t, err)
assert.Assert(t, len(mounts) == 2)
assert.Equal(t, mounts[0].Target, "/var/myvolume1")
assert.Equal(t, mounts[1].Target, "/var/myvolume2")
mounts, err = buildContainerMountOptions(project, project.Services[0], moby.ImageInspect{}, inherit)
sort.Slice(mounts, func(i, j int) bool {
return mounts[i].Target < mounts[j].Target
})
assert.NilError(t, err)
assert.Assert(t, len(mounts) == 2)
assert.Equal(t, mounts[0].Target, "/var/myvolume1")