diff mbox series

[ovs-dev] tests: Fix Port_Binding up test.

Message ID 25EABDC7-0F9B-46CD-90B0-BF72EF7EA2B0@tencent.com
State Superseded
Headers show
Series [ovs-dev] tests: Fix Port_Binding up test. | expand

Commit Message

gmingchen(陈供明) Feb. 5, 2021, 4:26 a.m. UTC
After setting the iface-id, immediately check the up status of the port
binding, it will occasionally fail, especially when the port binding
status is reported later.

When it fails, the following will be output:
Checking values in sb Port_Binding with logical_port=lsp1 against false... found false
ovs-vsctl add-port br-int lsp1 -- set Interface lsp1 external-ids:iface-id=lsp1
./ovn-macros.at:307: "$@"
Checking values in sb Port_Binding with logical_port=lsp1 against true... found false
_uuid               : 15ebabb6-3dbb-4806-aa85-d1c03e3b39f6
logical_port        : lsp1
up                  : true
./ovn-macros.at:393: hard failure

Fixes: 4d3cb42b076b("binding: Set Logical_Switch_Port.up when all OVS flows are installed")
Signed-off-by: Gongming Chen <gmingchen@tencent.com>
---
tests/ovn.at | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

dev mailing list
dev@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Comments

Dumitru Ceara Feb. 5, 2021, 7:37 p.m. UTC | #1
On 2/5/21 5:26 AM, gmingchen(陈供明) wrote:
> After setting the iface-id, immediately check the up status of the port
> binding, it will occasionally fail, especially when the port binding
> status is reported later.
> 
> When it fails, the following will be output:
> Checking values in sb Port_Binding with logical_port=lsp1 against false... found false
> ovs-vsctl add-port br-int lsp1 -- set Interface lsp1 external-ids:iface-id=lsp1
> ./ovn-macros.at:307: "$@"
> Checking values in sb Port_Binding with logical_port=lsp1 against true... found false
> _uuid               : 15ebabb6-3dbb-4806-aa85-d1c03e3b39f6
> logical_port        : lsp1
> up                  : true
> ./ovn-macros.at:393: hard failure
> 
> Fixes: 4d3cb42b076b("binding: Set Logical_Switch_Port.up when all OVS flows are installed")
> Signed-off-by: Gongming Chen <gmingchen@tencent.com>

Hi Gongming,

Thanks for the fix, looks good to me.

However, the patch seems to be incorrectly formatted. Would you mind 
resubmitting?

Patch submission guidelines are here:

https://github.com/ovn-org/ovn/blob/master/Documentation/internals/contributing/submitting-patches.rst

Thanks,
Dumitru

> ---
> tests/ovn.at | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/ovn.at b/tests/ovn.at
> index 80c9fe138..43dc16dd8 100644
> --- a/tests/ovn.at
> +++ b/tests/ovn.at
> @@ -23885,7 +23885,7 @@ check ovn-nbctl --wait=hv sync
> check_column "false" Port_Binding up logical_port=lsp1
>   check ovs-vsctl add-port br-int lsp1 -- set Interface lsp1 external-ids:iface-id=lsp1
> -check_column "true" Port_Binding up logical_port=lsp1
> +wait_column "true" Port_Binding up logical_port=lsp1
> wait_column "true" nb:Logical_Switch_Port up name=lsp1
> OVS_WAIT_UNTIL([test `ovs-vsctl get Interface lsp1 external_ids:ovn-installed` = '"true"'])
> 
> _______________________________________________
> dev mailing list
> dev@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
>
diff mbox series

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index 80c9fe138..43dc16dd8 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -23885,7 +23885,7 @@  check ovn-nbctl --wait=hv sync
check_column "false" Port_Binding up logical_port=lsp1
 check ovs-vsctl add-port br-int lsp1 -- set Interface lsp1 external-ids:iface-id=lsp1
-check_column "true" Port_Binding up logical_port=lsp1
+wait_column "true" Port_Binding up logical_port=lsp1
wait_column "true" nb:Logical_Switch_Port up name=lsp1
OVS_WAIT_UNTIL([test `ovs-vsctl get Interface lsp1 external_ids:ovn-installed` = '"true"'])

_______________________________________________