mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Redo build system to properly use autotools and avoid compilation with apxs util.
This commit is contained in:
44
tests/tfn/length.t
Normal file
44
tests/tfn/length.t
Normal file
@@ -0,0 +1,44 @@
|
||||
### Empty
|
||||
{
|
||||
type => "tfn",
|
||||
name => "length",
|
||||
input => "",
|
||||
output => "0",
|
||||
ret => 1,
|
||||
},
|
||||
|
||||
|
||||
### Basic normal and large
|
||||
{
|
||||
type => "tfn",
|
||||
name => "length",
|
||||
input => "0123456789abcdef",
|
||||
output => "16",
|
||||
ret => 1,
|
||||
},
|
||||
# ENH: This sometimes fails w/4096 length
|
||||
#{
|
||||
# type => "tfn",
|
||||
# name => "length",
|
||||
# input => ('x' x 8192),
|
||||
# output => "8192",
|
||||
# ret => 1,
|
||||
#},
|
||||
|
||||
### With TAB
|
||||
{
|
||||
type => "tfn",
|
||||
name => "length",
|
||||
input => "0123456789\tabcdef",
|
||||
output => "17",
|
||||
ret => 1,
|
||||
},
|
||||
|
||||
### With NUL
|
||||
{
|
||||
type => "tfn",
|
||||
name => "length",
|
||||
input => "Test\0Case",
|
||||
output => "9",
|
||||
ret => 1,
|
||||
},
|
Reference in New Issue
Block a user