mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #11521 from duglin/AddLABELCacher
Add LABEL config check to runconfig compare
This commit is contained in:
commit
df8110519a
2 changed files with 23 additions and 2 deletions
|
@ -4585,14 +4585,29 @@ func TestBuildLabelsCache(t *testing.T) {
|
||||||
`FROM busybox
|
`FROM busybox
|
||||||
LABEL Vendor=Acme1`, true)
|
LABEL Vendor=Acme1`, true)
|
||||||
if err != nil || id1 == id2 {
|
if err != nil || id1 == id2 {
|
||||||
t.Fatalf("Build 2 should have worked & NOT used cache(%s,%s): %v", id1, id2, err)
|
t.Fatalf("Build 3 should have worked & NOT used cache(%s,%s): %v", id1, id2, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
id2, err = buildImage(name,
|
id2, err = buildImage(name,
|
||||||
`FROM busybox
|
`FROM busybox
|
||||||
LABEL Vendor Acme`, true) // Note: " " and "=" should be same
|
LABEL Vendor Acme`, true) // Note: " " and "=" should be same
|
||||||
if err != nil || id1 != id2 {
|
if err != nil || id1 != id2 {
|
||||||
t.Fatalf("Build 3 should have worked & used cache(%s,%s): %v", id1, id2, err)
|
t.Fatalf("Build 4 should have worked & used cache(%s,%s): %v", id1, id2, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Now make sure the cache isn't used by mistake
|
||||||
|
id1, err = buildImage(name,
|
||||||
|
`FROM busybox
|
||||||
|
LABEL f1=b1 f2=b2`, false)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Build 5 should have worked: %q", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
id2, err = buildImage(name,
|
||||||
|
`FROM busybox
|
||||||
|
LABEL f1="b1 f2=b2"`, true)
|
||||||
|
if err != nil || id1 == id2 {
|
||||||
|
t.Fatalf("Build 6 should have worked & NOT used the cache(%s,%s): %q", id1, id2, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
logDone("build - label cache")
|
logDone("build - label cache")
|
||||||
|
|
|
@ -19,6 +19,7 @@ func Compare(a, b *Config) bool {
|
||||||
}
|
}
|
||||||
if len(a.Cmd) != len(b.Cmd) ||
|
if len(a.Cmd) != len(b.Cmd) ||
|
||||||
len(a.Env) != len(b.Env) ||
|
len(a.Env) != len(b.Env) ||
|
||||||
|
len(a.Labels) != len(b.Labels) ||
|
||||||
len(a.PortSpecs) != len(b.PortSpecs) ||
|
len(a.PortSpecs) != len(b.PortSpecs) ||
|
||||||
len(a.ExposedPorts) != len(b.ExposedPorts) ||
|
len(a.ExposedPorts) != len(b.ExposedPorts) ||
|
||||||
len(a.Entrypoint) != len(b.Entrypoint) ||
|
len(a.Entrypoint) != len(b.Entrypoint) ||
|
||||||
|
@ -36,6 +37,11 @@ func Compare(a, b *Config) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for k, v := range a.Labels {
|
||||||
|
if v != b.Labels[k] {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
for i := 0; i < len(a.PortSpecs); i++ {
|
for i := 0; i < len(a.PortSpecs); i++ {
|
||||||
if a.PortSpecs[i] != b.PortSpecs[i] {
|
if a.PortSpecs[i] != b.PortSpecs[i] {
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Add table
Reference in a new issue