File: sed.t

package info (click to toggle)
apache2 2.4.66-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 59,500 kB
  • sloc: ansic: 212,331; python: 13,830; perl: 11,307; sh: 7,258; php: 1,320; javascript: 1,314; awk: 749; makefile: 715; lex: 374; yacc: 161; xml: 2
file content (48 lines) | stat: -rw-r--r-- 1,710 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil;

my @ts = (
   # see t/conf/extra.conf.in
   { url => "/apache/sed/out-foo/foobar.html", content => 'barbar', msg => "sed output filter", code => '200' },
   # error after status sent
   { url => "/apache/sed-echo/out-foo-grow/foobar.html", content => "", msg => "sed output filter too large", code => '200', body=>"foo" x (8192*1024), resplen=>0},
   { url => "/apache/sed-echo/input", content => 'barbar', msg => "sed input filter", code => '200', body=>"foobar" },
   { url => "/apache/sed-echo/input", content => undef, msg => "sed input filter", code => '200', body=>"foo" x (1024)},
   # fixme: returns 400 default error doc for some people instead
   # { url => "/apache/sed-echo/input", content => '!!!ERROR!!!', msg => "sed input filter", code => '200', skippable=>true body=>"foo" x (1024*4096)}
);

my $tests = 2*scalar @ts;

plan tests => $tests, need 'LWP::Protocol::AnyEvent::http', need_module('sed');

# Hack to allow streaming of data in/out of mod_echo
require LWP::Protocol::AnyEvent::http;

for my $t (@ts) {
  my $req;
  if (defined($t->{'body'})) { 
    t_debug "posting body of size  ". length($t->{'body'});
    $req = POST  $t->{'url'}, content => $t->{'body'};
    t_debug "... posted body of size  ". length($t->{'body'});
  }
  else { 
    $req = GET $t->{'url'};
  }
  t_debug "Content Length " . length $req->content;
  ok t_cmp($req->code, $t->{'code'}, "status code for " . $t->{'url'});
  if (defined($t->{content})) { 
    my $content = $req->content;
    chomp($content);
    ok t_cmp($content, $t->{content}, $t->{msg});
  }
  else { 
    ok "no body check";
  }
}