github.com/containers/podman/v4@v4.9.4/pkg/bindings/images/build_test.go (about) 1 package images 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/assert" 7 ) 8 9 func TestBuildMatchIID(t *testing.T) { 10 assert.True(t, iidRegex.MatchString("a883dafc480d466ee04e0d6da986bd78eb1fdd2178d04693723da3a8f95d42f4")) 11 assert.True(t, iidRegex.MatchString("3da3a8f95d42")) 12 assert.False(t, iidRegex.MatchString("3da3")) 13 } 14 15 func TestBuildNotMatchStatusMessage(t *testing.T) { 16 assert.False(t, iidRegex.MatchString("Copying config a883dafc480d466ee04e0d6da986bd78eb1fdd2178d04693723da3a8f95d42f4")) 17 }