diff mbox series

tests/py: add test for empty string match

Message ID 20171128112549.24734-1-harshasharmaiitr@gmail.com
State Accepted
Delegated to: Pablo Neira
Headers show
Series tests/py: add test for empty string match | expand

Commit Message

Harsha Sharma Nov. 28, 2017, 11:25 a.m. UTC
This patch add tests for empty string match which fails with error "Empty
string is not allowed".

Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
---
 tests/py/any/ct.t   | 1 +
 tests/py/any/meta.t | 2 ++
 2 files changed, 3 insertions(+)

Comments

Pablo Neira Ayuso Nov. 28, 2017, 3:49 p.m. UTC | #1
On Tue, Nov 28, 2017 at 04:55:49PM +0530, Harsha Sharma wrote:
> This patch add tests for empty string match which fails with error "Empty
> string is not allowed".

Applied, thanks Harsha.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/tests/py/any/ct.t b/tests/py/any/ct.t
index fb3ae09..9c88140 100644
--- a/tests/py/any/ct.t
+++ b/tests/py/any/ct.t
@@ -75,6 +75,7 @@  ct expiration != {33-55};ok; ct expiration != { 33s-55s}
 
 ct helper "ftp";ok
 ct helper "12345678901234567";fail
+ct helper '""';fail
 
 ct state . ct mark { new . 0x12345678};ok
 ct state . ct mark { new . 0x12345678, new . 0x34127856, established . 0x12785634};ok
diff --git a/tests/py/any/meta.t b/tests/py/any/meta.t
index dd335ab..a38c501 100644
--- a/tests/py/any/meta.t
+++ b/tests/py/any/meta.t
@@ -71,6 +71,7 @@  meta iifname {"dummy0", "lo"};ok
 meta iifname != {"dummy0", "lo"};ok
 meta iifname "dummy*";ok;iifname "dummy*"
 meta iifname "dummy\*";ok;iifname "dummy\*"
+meta iifname '""';fail
 
 meta iiftype {ether, ppp, ipip, ipip6, loopback, sit, ipgre};ok
 meta iiftype != {ether, ppp, ipip, ipip6, loopback, sit, ipgre};ok
@@ -89,6 +90,7 @@  meta oifname != "dummy0";ok;oifname != "dummy0"
 meta oifname { "dummy0", "lo"};ok
 meta oifname "dummy*";ok;oifname "dummy*"
 meta oifname "dummy\*";ok;oifname "dummy\*"
+meta oifname '""';fail
 
 meta oiftype {ether, ppp, ipip, ipip6, loopback, sit, ipgre};ok
 meta oiftype != {ether, ppp, ipip, ipip6, loopback, sit, ipgre};ok