mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 03:34:29 +03:00
Redo build system to properly use autotools and avoid compilation with apxs util.
This commit is contained in:
50
tests/tfn/hexDecode.t
Normal file
50
tests/tfn/hexDecode.t
Normal file
@@ -0,0 +1,50 @@
|
||||
### Empty
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "",
|
||||
output => "",
|
||||
ret => 1,
|
||||
},
|
||||
|
||||
### Basic
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "5465737443617365",
|
||||
output => "TestCase",
|
||||
ret => 1,
|
||||
},
|
||||
|
||||
### Basic w/NULL
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "546573740043617365",
|
||||
output => "Test\0Case",
|
||||
ret => 1,
|
||||
},
|
||||
|
||||
### Invalid
|
||||
# What should happen here? Probably just fail and leave alone.
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "01234567890a0z01234567890a",
|
||||
output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "01234567890az",
|
||||
output => "\x01#Eg\x89\x0a",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "tfn",
|
||||
name => "hexDecode",
|
||||
input => "01234567890a0",
|
||||
output => "\x01#Eg\x89\x0a",
|
||||
ret => 1,
|
||||
},
|
Reference in New Issue
Block a user