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:
52
tests/op/within.t
Normal file
52
tests/op/within.t
Normal file
@@ -0,0 +1,52 @@
|
||||
### Empty
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "",
|
||||
input => "",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "TestCase",
|
||||
input => "",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "",
|
||||
input => "TestCase",
|
||||
ret => 0,
|
||||
},
|
||||
|
||||
### General
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "abcdefghi",
|
||||
input => "abc",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "abcdefghi",
|
||||
input => "def",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "abcdefghi",
|
||||
input => "ghi",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "op",
|
||||
name => "within",
|
||||
param => "abcdefghi",
|
||||
input => "ghij",
|
||||
ret => 0,
|
||||
},
|
Reference in New Issue
Block a user