Skip to content

Commit 0834f70

Browse files
committed
improve error messages
1 parent b28f2c4 commit 0834f70

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

pkg/connectivity/probe/pod.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,25 +63,25 @@ func (p *Pod) Host(probeMode generator.ProbeMode) string {
6363
}
6464
}
6565

66-
func (p *Pod) IsEqualToKubePod(kubePod v1.Pod) bool {
66+
func (p *Pod) IsEqualToKubePod(kubePod v1.Pod) (string, bool) {
6767
kubeConts := kubePod.Spec.Containers
6868
if len(kubeConts) != len(p.Containers) {
69-
return false
69+
return fmt.Sprintf("have %d containers, expected %d", len(p.Containers), len(kubeConts)), false
7070
}
7171
for i, kubeCont := range kubeConts {
7272
cont := p.Containers[i]
7373
if len(kubeCont.Ports) != 1 {
74-
return false
74+
return fmt.Sprintf("container %d: expected 1 port, found %d", i, len(kubeCont.Ports)), false
7575
}
7676
if int(kubeCont.Ports[0].ContainerPort) != cont.Port {
77-
return false
77+
return fmt.Sprintf("container %d: expected port %d, found %d", i, cont.Port, kubeCont.Ports[0].ContainerPort), false
7878
}
7979
if kubeCont.Ports[0].Protocol != cont.Protocol {
80-
return false
80+
return fmt.Sprintf("container %d: expected protocol %s, found %s", i, cont.Protocol, kubeCont.Ports[0].Protocol), false
8181
}
8282
}
8383

84-
return true
84+
return "", true
8585
}
8686

8787
func (p *Pod) ServiceName() string {

pkg/connectivity/testcasestate.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ func (t *TestCaseState) verifyClusterStateHelper() error {
200200
if actualPod.Status.PodIP != expectedPod.IP {
201201
return errors.Errorf("for pod %s, expected ip %s (found %s)", expectedPod.PodString().String(), expectedPod.IP, actualPod.Status.PodIP)
202202
}
203-
if !expectedPod.IsEqualToKubePod(actualPod) {
204-
return errors.Errorf("for pod %s, expected containers %+v (found %+v)", expectedPod.PodString().String(), expectedPod.Containers, actualPod.Spec.Containers)
203+
if diff, ok := expectedPod.IsEqualToKubePod(actualPod); !ok {
204+
return errors.Errorf("for pod %s, %s", expectedPod.PodString().String(), diff)
205205
}
206206
} else {
207207
return errors.Errorf("missing expected pod %s", expectedPod.PodString().String())

pkg/kube/ikubernetes.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ func (m *MockKubernetes) GetNamespace(namespace string) (*v1.Namespace, error) {
120120
labels["kubernetes.io/metadata.name"] = namespace
121121
return &v1.Namespace{
122122
ObjectMeta: metav1.ObjectMeta{
123-
Name: ns.NamespaceObject.Name,
124-
Labels:labels,
123+
Name: ns.NamespaceObject.Name,
124+
Labels: labels,
125125
},
126126
}, nil
127127
}

0 commit comments

Comments
 (0)