internal/testdata/filter/samples.txt

# One expression per line. Blank lines and '#' comments are ignored by
# the fuzz harness in internal/filter/expr/parser_test.go.

method=GET
method=GET and status>=400
host="shop.example.com" or host="api.example.com"
path~"^/api/v[0-9]+/"
not method=POST
body_size>=1024
header:content-type = "application/json"
(method=GET and status<500) or (method=POST and status=201)
status>=200 and status<300