Merge "- Put duplicate code in flow_add_delete_test into a common function - Added...
authorChristopher O'Shea <christopher.o.shea@ericsson.com>
Thu, 16 Oct 2014 19:59:10 +0000 (19:59 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 16 Oct 2014 19:59:10 +0000 (19:59 +0000)
30 files changed:
test/csit/libraries/XmlComparator.py
test/csit/suites/clustering/datastore/routedrpc/023_routed_rpc_crud_test.txt [new file with mode: 0644]
test/csit/suites/clustering/datastore/routedrpc/024_routed_rpc_crud_test.txt [new file with mode: 0644]
test/csit/variables/xmls/f111.xml
test/csit/variables/xmls/f215.xml
test/csit/variables/xmls/f216.xml
test/csit/variables/xmls/f217.xml
test/csit/variables/xmls/f218.xml
test/csit/variables/xmls/f219.xml
test/csit/variables/xmls/f220.xml
test/csit/variables/xmls/f221.xml
test/csit/variables/xmls/f29.xml
test/csit/variables/xmls/f31.xml
test/csit/variables/xmls/f32.xml
test/csit/variables/xmls/f33.xml
test/csit/variables/xmls/f34.xml
test/csit/variables/xmls/f35.xml
test/csit/variables/xmls/f37.xml
test/csit/variables/xmls/f38.xml
test/csit/variables/xmls/f39.xml
test/csit/variables/xmls/f40.xml
test/csit/variables/xmls/f41.xml
test/csit/variables/xmls/f42.xml
test/csit/variables/xmls/f43.xml
test/csit/variables/xmls/f44.xml
test/csit/variables/xmls/f45.xml
test/csit/variables/xmls/f46.xml
test/csit/variables/xmls/f47.xml
test/csit/variables/xmls/f48.xml
test/csit/variables/xmls/f49.xml

index 3dca1c1ba507c1c089229be0701cd59129b9dfb6..5685ca2f2019d81c8e21ec88c661ab2a34a6b09b 100644 (file)
@@ -77,7 +77,7 @@ class XMLtoDictParserTools():
                 if key in ['ipv4-destination', 'ipv4-source', 'ipv6-destination', 'ipv6-source', 'ipv6-nd-target']:
                     nvalue = _allign_address(value)
                     m_dict[key] = nvalue
-                elif key in ['tunnel-mask','type','metadata-mask']:
+                elif key in ['tunnel-mask','type','metadata-mask','out_port','out_group']:
                     nvalue = _convert_numbers(value)
                     m_dict[key] = nvalue
                 else:
diff --git a/test/csit/suites/clustering/datastore/routedrpc/023_routed_rpc_crud_test.txt b/test/csit/suites/clustering/datastore/routedrpc/023_routed_rpc_crud_test.txt
new file mode 100644 (file)
index 0000000..1e1781d
--- /dev/null
@@ -0,0 +1,64 @@
+*** Settings ***
+Documentation     Test suite for Routed RPC. 
+Library           Collections
+Library           ../../../../libraries/RequestsLibrary.py
+Library           ../../../../libraries/Common.py
+Library           ../../../../libraries/CrudLibrary.py
+Library           ../../../../libraries/SettingsLibrary.py
+Library           ../../../../libraries/UtilLibrary.py
+Variables         ../../../../variables/Variables.py
+
+*** Variables ***
+${REST_CONTEXT}    /restconf/config/
+
+
+*** Test Cases *** 
+Add cars and get cars from Leader 
+    [Documentation]    Add 100 cars and get added cars from Leader
+       ${resp}         AddCar  ${LEADER}       ${PORT} ${100}  
+       ${resp}         Getcars ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain     ${resp.content}   manufacturer1      
+               
+Add persons and get persons from Leader 
+    [Documentation]    Add 100 persons and get persons
+    [Documentation]    Note: There should be one person added first to enable rpc
+       ${resp}         AddPerson       ${LEADER}       ${PORT} ${0}    
+       ${resp}         AddPerson       ${LEADER}       ${PORT} ${100}  
+       ${resp}         GetPersons      ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain     ${resp.content}   user5
+       SLEEP   10      
+
+Add car-person mapping and get car-person mapping from Follower1
+    [Documentation]    Add car-person and get car-person from Leader
+    [Documentation]    Note: This is done to enable working of rpc
+        ${resp}                AddCarPerson    ${FOLLOWER1}    ${PORT} ${0}
+        ${resp}                GetCarPersonMappings    ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings      ${resp.status_code}     200
+        Should Contain ${resp.content} user0
+       SLEEP   5
+
+Purchase 100 cars using Follower1 
+    [Documentation]  Purchase 100 cars using Follower1
+       ${resp}         BuyCar  ${FOLLOWER1}    ${PORT} ${100}
+       ${resp}         GetCarPersonMappings    ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+
+Get Cars from Leader
+    [Documentation]    Get 100 using Leader
+       ${resp}         Getcars ${LEADER}       ${PORT} ${0}
+        Should Be Equal As Strings    ${resp.status_code}    200
+        Should Contain     ${resp.content}   manufacturer99
+
+Get persons from Leader
+    [Documentation]    Get 101 Persons from Leader
+       ${resp}         GetPersons      ${LEADER}       ${PORT} ${0}
+        Should Be Equal As Strings    ${resp.status_code}    200
+        Should Contain     ${resp.content}   user100
+
+Get car-person mappings using Leader
+   [Documentation]     Get 101 car-person mappings using Leader to see 100 entry
+       ${resp}         GetCarPersonMappings    ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain     ${resp.content}   user100
diff --git a/test/csit/suites/clustering/datastore/routedrpc/024_routed_rpc_crud_test.txt b/test/csit/suites/clustering/datastore/routedrpc/024_routed_rpc_crud_test.txt
new file mode 100644 (file)
index 0000000..82d4acc
--- /dev/null
@@ -0,0 +1,118 @@
+*** Settings ***
+Documentation     Test suite for Routed RPC. 
+Library           Collections
+Library           ../../../../libraries/RequestsLibrary.py
+Library           ../../../../libraries/Common.py
+Library           ../../../../libraries/CrudLibrary.py
+Library           ../../../../libraries/SettingsLibrary.py
+Library           ../../../../libraries/UtilLibrary.py
+Library           ../../../../libraries/ClusterStateLibrary.py
+Variables         ../../../../variables/Variables.py
+
+*** Variables ***
+${REST_CONTEXT}    /restconf/config/
+
+*** Test Cases *** 
+Add cars and get cars from Leader 
+    [Documentation]    Add 100 cars and get added cars from Leader
+       ${resp}         AddCar  ${LEADER}       ${PORT} ${100}  
+       ${resp}         Getcars ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain     ${resp.content}   manufacturer1      
+       
+Add persons and get persons from Leader 
+    [Documentation]    Add 100 persons and get persons
+    [Documentation]    Note: There should be one person added first to enable rpc
+       ${resp}         AddPerson       ${LEADER}       ${PORT} ${0}    
+       ${resp}         AddPerson       ${LEADER}       ${PORT} ${100}  
+       ${resp}         GetPersons      ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain     ${resp.content}   user5      
+
+Add car-person mapping and get car-person mapping from Follower1
+    [Documentation]     Add car-person and get car-person from Follower1
+    [Documentation]  Note: This is done to enable working of rpc
+       ${resp}         AddCarPerson    ${FOLLOWER1}    ${PORT} ${0}
+       ${resp}         GetCarPersonMappings    ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content} user0
+
+Purchase 100 cars using Follower 
+    [Documentation]  Purchase 100 cars using Follower
+       SLEEP   10
+       ${resp}         BuyCar  ${FOLLOWER1}    ${PORT} ${100}  
+       ${resp}         GetCarPersonMappings    ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+
+Get Cars from Leader
+    [Documentation]    Get 100 using Leader
+       ${resp}         Getcars ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         manufacturer9
+
+Get persons from Leader
+    [Documentation]    Get 11 Persons from Leader
+       ${resp}         GetPersons      ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         user100
+
+Get car-person mappings using Leader
+   [Documentation]     Get car-person mappings using Leader to see 100 entry
+       ${resp}         GetCarPersonMappings    ${LEADER}       ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         user100
+
+Stop Leader
+   [Documentation]     Stop Leader controller
+       ${resp}         Stopcontroller  ${LEADER}       root    Ecp123  /opt/clustering/dist
+       SLEEP   30
+       ${resp}         Killcontroller  ${LEADER}       root    Ecp123  /opt/clustering/dist
+
+       
+Add cars and get cars from Follower1 
+    [Documentation]    Add 100 cars and get added cars from Follower
+       ${resp}         AddCar  ${FOLLOWER1}    ${PORT} ${100}  
+       ${resp}         Getcars ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         manufacturer1
+
+Add persons and get persons from Follower1
+    [Documentation]    Add 100 persons and get persons
+    [Documentation]    Note: There should be one person added first to enable rpc
+       ${resp}         AddPerson       ${FOLLOWER1}    ${PORT} ${0}    
+       ${resp}         AddPerson       ${FOLLOWER1}    ${PORT} ${100}  
+       ${resp}         GetPersons      ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         user5
+       SLEEP   10
+       
+Purchase 100 cars using Follower2 
+    [Documentation]  Purchase 100 cars using Follower2
+       ${resp}         BuyCar  ${FOLLOWER2}    ${PORT} ${100}
+       SLEEP   10
+       ${resp}         GetCarPersonMappings    ${FOLLOWER2}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+
+Get Cars from Follower1
+    [Documentation]    Get 100 using Follower1
+       ${resp}         Getcars ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         manufacturer9
+
+Get persons from Follower1
+    [Documentation]    Get 11 Persons from Follower1
+       ${resp}         GetPersons      ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         user100
+
+Get car-person mappings using Follower1
+   [Documentation]     Get car-person mappings using Follower1 to see 100 entry
+       ${resp}         GetCarPersonMappings    ${FOLLOWER1}    ${PORT} ${0}
+       Should Be Equal As Strings    ${resp.status_code}    200
+       Should Contain  ${resp.content}         user100
+
+Start Leader
+   [Documentation]     Start Leader controller 
+       ${resp}         Startcontroller ${LEADER}       root    Ecp123  /opt/clustering/dist
+       SLEEP   20
+
index 34eea91edbc7e309a18f55df48642d35ae6906d2..4c9413caf04c0db8581735a48de39006ac93eea6 100644 (file)
@@ -16,7 +16,7 @@
     <id>234</id>
     <cookie_mask>10</cookie_mask>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index c03c3a398b784f918c0a14571e2a2814e39b3e73..099e02abf9968f1d8b81268bc6c4652703012583 100644 (file)
@@ -18,9 +18,9 @@
     <table_id>2</table_id>
     <id>338</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>
index 2ca734410fab74b3ac3ff68a0aa86346af3d9197..f21fc4e11f7980a866b87b899943e6be05f62b93 100644 (file)
@@ -16,9 +16,9 @@
     <table_id>2</table_id>
     <id>339</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>
index 3cfc3b772a56104a79a63e8a18753c4c5a4c8a31..a84bb2f7c5381f214fbd632709c288fde6103879 100644 (file)
@@ -13,9 +13,9 @@
     <table_id>2</table_id>
     <id>340</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>
index f7d0dd5baa20b4ea46cfb86880f1672128f04781..93a1ae70546791e1558baa85c7afa697c4bb13fb 100644 (file)
@@ -12,9 +12,9 @@
     <table_id>2</table_id>
     <id>341</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <tunnel>
             <tunnel-mask>0xf7d120c</tunnel-mask>
index 068865db7f9d00784e3c6780fa6a08c59d6ea05c..750599a1858f2006503925db3090d82bbf1a93d0 100644 (file)
@@ -18,9 +18,9 @@
     <table_id>2</table_id>
     <id>342</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>
index 59b0a664f9a7c209b33707bcb1c76d2c6c82cb1a..ebfd0a3e751cefc76e33d02606b6503408f89fc2 100644 (file)
@@ -13,9 +13,9 @@
     <table_id>2</table_id>
     <id>343</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index caf8e96b6ecb2455328225719b703ab6b4ba4ce9..5131b6c84edfba2ac15585281bf71863d6880090 100644 (file)
@@ -27,9 +27,9 @@
     <table_id>2</table_id>
     <id>344</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>
index 5f30c9e0cceaa4fb54f3efa4c65d941eabbf666c..2dc105ed4d09f781ac59011660ee2cba21c41c38 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>152</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 0af0f8bff29b78fbbe58e9c8649377387b08b062..a025f53117526f3c656b0f06cecf4d2d1fbad797 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>154</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 4ab4519e2aa87cb0e320ddd4d7e9915917c6b750..2547abbf7f6bfa834480b6eb7c95a53090d3648c 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>155</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 94240850b0f06edb25fb266053dde182c032ef01..c3f8b405ceee76cb6de1d341f0a52e179390ac4e 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>156</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index d3ad498eb9362369b47a31e6edb405a5d2af0636..f81c4cf9d2a073e1a66b60053eacf6248172fd61 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>157</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index d918f755f14e1353a238461a099513b5103a14b7..7a550e0ea576abe3b7c028c43fc309f1c20ae731 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>158</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index b128a1cddee26f1d872767f9176fde38c69d5fdd..0b3ecba3916e63cb3c4f758dabac44edc2138420 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>160</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index ddf5813db920bf223a5e522b7d865d178633f44c..4ed7cd027dc17fb5e431cb3dc7d028e5df443152 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>161</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 4a68a9eb03d07cd5334660aff16b23e7d4b4d404..81142d36e538a338653d89cae259dea35ce7aa12 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>162</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 15f724438e288eeac94920a022e2dd6253199d40..0fb886078e5ce842a32efaf432644690fc31e48a 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>163</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 2be638603eadb477ed8c1588df532caa0cbee8f9..1640a97aa23cf734cd53754e2e801f61fa72e110 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>164</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 80de6495a8a0644bd5cbc7f737f64367e292535a..d22d3944b60861d2b0fdb7c01a4f2334eeee08e4 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>165</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index cd6bb29981d94222677ae0b958f56fe928f8fe58..0f2be4c7e58577042c3bd4e62ea3c5ab9cec3c19 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>166</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 2bf6630fa89576124654fc1874b2c2cad9c8ef20..b0c0d556d30a93d483e481a89544606e980d2e53 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>167</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <in-port>202</in-port>
         <in-phy-port>10122</in-phy-port>
index d0a252cfc1951208e30e9c3464a8ea9cd8b4a97a..1acaca792bdbc5494e31e769f40d35c6d2118250 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>168</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <metadata>
             <metadata-mask>0x46645a66</metadata-mask>
index aa4b089ecda2a788b913f2f0ed3e10e8d893d4b0..9e68bd7f9cbdb42030752953dd3ecaa8004f8e9b 100644 (file)
@@ -15,9 +15,9 @@
     <table_id>2</table_id>
     <id>169</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index ffaafcac2f1bfd8f5f6f3f03f28ccf2e9469c8c8..7c384f6777a5916c5d45141fc65d9a3dc8455af2 100644 (file)
@@ -17,9 +17,9 @@
     <table_id>2</table_id>
     <id>170</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <ethernet-match>
             <ethernet-type>
index 3051b1e8a283ccc1aae3c586924b1da819ef19cc..993a1f8571d275b19f275a4c7dcf2843a7e1f5c8 100644 (file)
@@ -12,9 +12,9 @@
     <table_id>2</table_id>
     <id>171</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <tunnel>
             <tunnel-mask>0xf7d120c</tunnel-mask>
index 35947972335a83c59b198eba41c223a277549238..b54a3c591f3c508994da80f6580c83453d3f448d 100644 (file)
@@ -13,9 +13,9 @@
     <table_id>2</table_id>
     <id>172</id>
     <cookie_mask>10</cookie_mask>
-    <out_port>10</out_port>
+    <out_port>0xffffffff</out_port>
     <installHw>false</installHw>
-    <out_group>2</out_group>
+    <out_group>0xffffffff</out_group>
     <match>
         <vlan-match>
             <vlan-id>