Skip to content

Commit b147fdf

Browse files
Merge pull request #2725 from gemmahou/fix-ipaddress
(Part 4)Fix diffs in compute forwarding rule: normalize `IPAddress` in golden logs
2 parents 0432fc9 + ff58381 commit b147fdf

File tree

3 files changed

+11
-8
lines changed
  • pkg/test/resourcefixture/testdata/basic/compute/v1beta1/computeforwardingrule
  • tests/e2e

3 files changed

+11
-8
lines changed

pkg/test/resourcefixture/testdata/basic/compute/v1beta1/computeforwardingrule/globalcomputeforwardingrule/_http.log

+4-4
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ User-Agent: kcc/controller-manager
747747
x-goog-request-params: project=${projectId}
748748

749749
{
750-
"IPAddress": "0.0.0.0",
750+
"IPAddress": "8.8.8.8",
751751
"description": "A global forwarding rule",
752752
"labels": {
753753
"cnrm-test": "true",
@@ -840,7 +840,7 @@ X-Frame-Options: SAMEORIGIN
840840
X-Xss-Protection: 0
841841

842842
{
843-
"IPAddress": "0.0.0.0",
843+
"IPAddress": "8.8.8.8",
844844
"IPProtocol": "TCP",
845845
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
846846
"description": "A global forwarding rule",
@@ -919,7 +919,7 @@ X-Frame-Options: SAMEORIGIN
919919
X-Xss-Protection: 0
920920

921921
{
922-
"IPAddress": "0.0.0.0",
922+
"IPAddress": "8.8.8.8",
923923
"IPProtocol": "TCP",
924924
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
925925
"description": "A global forwarding rule",
@@ -1031,7 +1031,7 @@ X-Frame-Options: SAMEORIGIN
10311031
X-Xss-Protection: 0
10321032

10331033
{
1034-
"IPAddress": "0.0.0.0",
1034+
"IPAddress": "8.8.8.8",
10351035
"IPProtocol": "TCP",
10361036
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
10371037
"description": "A global forwarding rule",

pkg/test/resourcefixture/testdata/basic/compute/v1beta1/computeforwardingrule/globalcomputeforwardingrulefull/_http.log

+4-4
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ User-Agent: kcc/controller-manager
747747
x-goog-request-params: project=${projectId}
748748

749749
{
750-
"IPAddress": "0.0.0.0",
750+
"IPAddress": "8.8.8.8",
751751
"IPProtocol": "TCP",
752752
"description": "A global forwarding rule",
753753
"ipVersion": "IPV4",
@@ -854,7 +854,7 @@ X-Frame-Options: SAMEORIGIN
854854
X-Xss-Protection: 0
855855

856856
{
857-
"IPAddress": "0.0.0.0",
857+
"IPAddress": "8.8.8.8",
858858
"IPProtocol": "TCP",
859859
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
860860
"description": "A global forwarding rule",
@@ -945,7 +945,7 @@ X-Frame-Options: SAMEORIGIN
945945
X-Xss-Protection: 0
946946

947947
{
948-
"IPAddress": "0.0.0.0",
948+
"IPAddress": "8.8.8.8",
949949
"IPProtocol": "TCP",
950950
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
951951
"description": "A global forwarding rule",
@@ -1112,7 +1112,7 @@ X-Frame-Options: SAMEORIGIN
11121112
X-Xss-Protection: 0
11131113

11141114
{
1115-
"IPAddress": "0.0.0.0",
1115+
"IPAddress": "8.8.8.8",
11161116
"IPProtocol": "TCP",
11171117
"creationTimestamp": "2024-04-01T12:34:56.123456Z",
11181118
"description": "A global forwarding rule",

tests/e2e/unified_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,9 @@ func runScenario(ctx context.Context, t *testing.T, testPause bool, fixture reso
527527
addReplacement("natIP", "192.0.0.10")
528528
addReplacement("labelFingerprint", "abcdef0123A=")
529529
addReplacement("fingerprint", "abcdef0123A=")
530+
// Matches the mock ip address of Compute forwarding rule
531+
addReplacement("IPAddress", "8.8.8.8")
532+
530533
// Extract resource targetID numbers from compute operations
531534
for _, event := range events {
532535
body := event.Response.ParseBody()

0 commit comments

Comments
 (0)