summaryrefslogtreecommitdiffstats
path: root/routing/routing-impl/src/test/resources/ipv4
diff options
context:
space:
mode:
Diffstat (limited to 'routing/routing-impl/src/test/resources/ipv4')
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithClassifier.json37
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithNoRouteAttrs.json35
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithoutClassifier.json37
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteNoRouteAttrs.json7
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithClassifier.json11
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithoutClassifier.json9
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteBlackhole.json5
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteProhibited.json5
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteReceive.json5
-rw-r--r--routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteUnreachable.json7
10 files changed, 84 insertions, 74 deletions
diff --git a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithClassifier.json b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithClassifier.json
index 99c987e03..5b4012d83 100644
--- a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithClassifier.json
+++ b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithClassifier.json
@@ -3,29 +3,30 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "vpp-ipv4-route": {
+ "vpp-v4ur:vpp-ipv4-route": {
"classify-table": "classify-table-one"
},
- "next-hop-list": {
- "next-hop": [
- {
- "id": "1",
- "address": "192.168.2.1",
- "outgoing-interface": "iface",
- "weight": "2"
- },
- {
- "id": "2",
- "address": "192.168.2.2",
- "outgoing-interface": "iface",
- "weight": "3"
- }
- ]
+ "next-hop":{
+ "next-hop-list": {
+ "next-hop": [
+ {
+ "index": "1",
+ "next-hop-address": "192.168.2.1",
+ "outgoing-interface": "iface",
+ "weight": "2"
+ },
+ {
+ "index": "2",
+ "next-hop-address": "192.168.2.2",
+ "outgoing-interface": "iface",
+ "weight": "3"
+ }
+ ]
+ }
}
}
]
}
}
-} \ No newline at end of file
+}
diff --git a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithNoRouteAttrs.json b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithNoRouteAttrs.json
index 71cefa6cb..a509076aa 100644
--- a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithNoRouteAttrs.json
+++ b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithNoRouteAttrs.json
@@ -3,26 +3,27 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "next-hop-list": {
- "next-hop": [
- {
- "id": "1",
- "address": "192.168.2.1",
- "outgoing-interface": "iface",
- "weight": "2"
- },
- {
- "id": "2",
- "address": "192.168.2.2",
- "outgoing-interface": "iface",
- "weight": "3"
- }
- ]
+ "next-hop": {
+ "next-hop-list": {
+ "next-hop": [
+ {
+ "index": "1",
+ "next-hop-address": "192.168.2.1",
+ "outgoing-interface": "iface",
+ "weight": "2"
+ },
+ {
+ "index": "2",
+ "next-hop-address": "192.168.2.2",
+ "outgoing-interface": "iface",
+ "weight": "3"
+ }
+ ]
+ }
}
}
]
}
}
-} \ No newline at end of file
+}
diff --git a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithoutClassifier.json b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithoutClassifier.json
index d4d4a0693..4c49ba9a8 100644
--- a/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithoutClassifier.json
+++ b/routing/routing-impl/src/test/resources/ipv4/multihop/multiHopRouteWithoutClassifier.json
@@ -3,28 +3,29 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "vpp-ipv4-route": {
+ "vpp-v4ur:vpp-ipv4-route": {
},
- "next-hop-list": {
- "next-hop": [
- {
- "id": "1",
- "address": "192.168.2.1",
- "outgoing-interface": "iface",
- "weight": "2"
- },
- {
- "id": "2",
- "address": "192.168.2.2",
- "outgoing-interface": "iface",
- "weight": "3"
- }
- ]
+ "next-hop": {
+ "next-hop-list": {
+ "next-hop": [
+ {
+ "index": "1",
+ "next-hop-address": "192.168.2.1",
+ "outgoing-interface": "iface",
+ "weight": "2"
+ },
+ {
+ "index": "2",
+ "next-hop-address": "192.168.2.2",
+ "outgoing-interface": "iface",
+ "weight": "3"
+ }
+ ]
+ }
}
}
]
}
}
-} \ No newline at end of file
+}
diff --git a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteNoRouteAttrs.json b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteNoRouteAttrs.json
index d987bb6b1..b28ff6e9b 100644
--- a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteNoRouteAttrs.json
+++ b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteNoRouteAttrs.json
@@ -3,10 +3,11 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "next-hop": "192.168.2.2",
- "outgoing-interface": "iface"
+ "next-hop": {
+ "next-hop-address" : "192.168.2.2",
+ "outgoing-interface": "iface"
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithClassifier.json b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithClassifier.json
index d00d9a06a..369ddd828 100644
--- a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithClassifier.json
+++ b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithClassifier.json
@@ -3,13 +3,14 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "vpp-ipv4-route": {
- "classify-table": "classify-table-one"
+ "next-hop": {
+ "next-hop-address" : "192.168.2.2",
+ "outgoing-interface": "iface"
},
- "next-hop": "192.168.2.2",
- "outgoing-interface": "iface"
+ "vpp-ipv4-route" : {
+ "classify-table": "classify-table-one"
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithoutClassifier.json b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithoutClassifier.json
index 0ef7cf765..9080943c8 100644
--- a/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithoutClassifier.json
+++ b/routing/routing-impl/src/test/resources/ipv4/simplehop/simpleHopRouteWithoutClassifier.json
@@ -3,12 +3,13 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "vpp-ipv4-route": {
+ "next-hop": {
+ "next-hop-address" : "192.168.2.2",
+ "outgoing-interface": "iface"
},
- "next-hop": "192.168.2.2",
- "outgoing-interface": "iface"
+ "vpp-v4ur:vpp-ipv4-route": {
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteBlackhole.json b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteBlackhole.json
index b2ddc238b..04972478e 100644
--- a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteBlackhole.json
+++ b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteBlackhole.json
@@ -3,9 +3,10 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "special-next-hop": "blackhole"
+ "next-hop": {
+ "special-next-hop-enum": "blackhole"
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteProhibited.json b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteProhibited.json
index fe9faf44c..cee2e1977 100644
--- a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteProhibited.json
+++ b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteProhibited.json
@@ -3,9 +3,10 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "special-next-hop": "prohibit"
+ "next-hop": {
+ "special-next-hop-enum": "prohibit"
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteReceive.json b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteReceive.json
index c967aa542..8000df11d 100644
--- a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteReceive.json
+++ b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteReceive.json
@@ -3,9 +3,10 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "special-next-hop": "receive"
+ "next-hop": {
+ "special-next-hop-enum": "receive"
+ }
}
]
}
diff --git a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteUnreachable.json b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteUnreachable.json
index bae467fbd..b52982c47 100644
--- a/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteUnreachable.json
+++ b/routing/routing-impl/src/test/resources/ipv4/specialhop/specialHopRouteUnreachable.json
@@ -3,11 +3,12 @@
"ipv4": {
"route": [
{
- "id": 1,
"destination-prefix": "192.168.2.1/24",
- "special-next-hop": "unreachable"
+ "next-hop": {
+ "special-next-hop-enum": "unreachable"
+ }
}
]
}
}
-} \ No newline at end of file
+}