1
0
Fork 0
apache2/debian/perl-framework/t/protocol/echo.t
Daniel Baumann f56986e2d9
Adding debian version 2.4.63-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 11:01:27 +02:00

40 lines
778 B
Perl

use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest ();
my @test_strings = (
$0,
$^X,
$$ x 5,
);
my $tests = 1 + @test_strings;
my $vars = Apache::Test::vars();
my @modules = qw(mod_echo);
if (have_ssl) {
$tests *= 2;
unshift @modules, 'mod_echo_ssl';
Apache::TestRequest::set_ca_cert();
}
plan tests => $tests, ['mod_echo'];
for my $module (@modules) {
print "testing $module\n";
my $sock = Apache::TestRequest::vhost_socket($module);
ok $sock;
Apache::TestRequest::socket_trace($sock);
for my $data (@test_strings) {
$sock->print("$data\n");
chomp(my $response = Apache::TestRequest::getline($sock));
ok t_cmp($response, $data, 'echo');
}
}