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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
|
package Test::Nginx::Socket;
use lib 'lib';
use lib 'inc';
use Test::Base -Base;
our $VERSION = '0.17';
use Encode;
use Data::Dumper;
use Time::HiRes qw(sleep time);
use Test::LongString;
use List::MoreUtils qw( any );
use IO::Select ();
our $ServerAddr = 'localhost';
our $Timeout = $ENV{TEST_NGINX_TIMEOUT} || 2;
use Test::Nginx::Util qw(
setup_server_root
write_config_file
get_canon_version
get_nginx_version
trim
show_all_chars
parse_headers
run_tests
$ServerPortForClient
$ServerPort
$PidFile
$ServRoot
$ConfFile
$RunTestHelper
$RepeatEach
worker_connections
master_process_enabled
config_preamble
repeat_each
workers
master_on
log_level
no_shuffle
no_root_location
server_root
html_dir
server_port
no_nginx_manager
);
#use Smart::Comments::JSON '###';
use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
use POSIX qw(EAGAIN);
use IO::Socket;
#our ($PrevRequest, $PrevConfig);
our $NoLongString = undef;
our @EXPORT = qw( plan run_tests run_test
repeat_each config_preamble worker_connections
master_process_enabled
no_long_string workers master_on
log_level no_shuffle no_root_location
server_addr server_root html_dir server_port
timeout no_nginx_manager
);
sub send_request ($$$$@);
sub run_test_helper ($$);
sub error_event_handler ($);
sub read_event_handler ($);
sub write_event_handler ($);
sub no_long_string () {
$NoLongString = 1;
}
sub server_addr (@) {
if (@_) {
#warn "setting server addr to $_[0]\n";
$ServerAddr = shift;
}
else {
return $ServerAddr;
}
}
sub timeout (@) {
if (@_) {
$Timeout = shift;
}
else {
$Timeout;
}
}
$RunTestHelper = \&run_test_helper;
# This will parse a "request"" string. The expected format is:
# - One line for the HTTP verb (POST, GET, etc.) plus optional relative URL
# (default is /) plus optional HTTP version (default is HTTP/1.1).
# - More lines considered as the body of the request.
# Most people don't care about headers and this is enough.
#
# This function will return a reference to a hash with the parsed elements
# plus information on the parsing itself like "how many white spaces were
# skipped before the VERB" (skipped_before_method), "was the version provided"
# (http_ver_size = 0).
sub parse_request ($$) {
my ( $name, $rrequest ) = @_;
open my $in, '<', $rrequest;
my $first = <$in>;
if ( !$first ) {
Test::More::BAIL_OUT("$name - Request line should be non-empty");
die;
}
#$first =~ s/^\s+|\s+$//gs;
my ($before_meth, $meth, $after_meth);
my ($rel_url, $rel_url_size, $after_rel_url);
my ($http_ver, $http_ver_size, $after_http_ver);
my $end_line_size;
if ($first =~ /^(\s*)(\S+)( *)((\S+)( *))?((\S+)( *))?(\s*)/) {
$before_meth = defined $1 ? length($1) : undef;
$meth = $2;
$after_meth = defined $3 ? length($3) : undef;
$rel_url = $5;
$rel_url_size = defined $5 ? length($5) : undef;
$after_rel_url = defined $6 ? length($6) : undef;
$http_ver = $8;
if (!defined $8) {
$http_ver_size = undef;
} else {
$http_ver_size = defined $8 ? length($8) : undef;
}
if (!defined $9) {
$after_http_ver = undef;
} else {
$after_http_ver = defined $9 ? length($9) : undef;
}
$end_line_size = defined $10 ? length($10) : undef;
} else {
Test::More::BAIL_OUT("$name - Request line is not valid. Should be 'meth [url [version]]'");
die;
}
if ( !defined $rel_url ) {
$rel_url = '/';
$rel_url_size = 0;
$after_rel_url = 0;
}
if ( !defined $http_ver ) {
$http_ver = 'HTTP/1.1';
$http_ver_size = 0;
$after_http_ver = 0;
}
#my $url = "http://localhost:$ServerPortForClient" . $rel_url;
my $content = do { local $/; <$in> };
my $content_size;
if ( !defined $content ) {
$content = "";
$content_size = 0;
} else {
$content_size = length($content);
}
#warn Dumper($content);
close $in;
return {
method => $meth,
url => $rel_url,
content => $content,
http_ver => $http_ver,
skipped_before_method => $before_meth,
method_size => length($meth),
skipped_after_method => $after_meth,
url_size => $rel_url_size,
skipped_after_url => $after_rel_url,
http_ver_size => $http_ver_size,
skipped_after_http_ver => $after_http_ver + $end_line_size,
content_size => $content_size,
};
}
# From a parsed request, builds the "moves" to apply to the original request
# to transform it (e.g. add missing version). Elements of the returned array
# are of 2 types:
# - d : number of characters to remove.
# - s_* : number of characters (s_s) to replace by value (s_v).
sub get_moves($) {
my ($parsed_req) = @_;
return ({d => $parsed_req->{skipped_before_method}},
{s_s => $parsed_req->{method_size},
s_v => $parsed_req->{method}},
{d => $parsed_req->{skipped_after_method}},
{s_s => $parsed_req->{url_size},
s_v => $parsed_req->{url}},
{d => $parsed_req->{skipped_after_url}},
{s_s => $parsed_req->{http_ver_size},
s_v => $parsed_req->{http_ver}},
{d => $parsed_req->{skipped_after_http_ver}},
{s_s => 0,
s_v => $parsed_req->{headers}},
{s_s => $parsed_req->{content_size},
s_v => $parsed_req->{content}}
);
}
# Apply moves (see above) to an array of packets that correspond to a request.
# The use of this function is explained in the build_request_from_packets
# function.
sub apply_moves($$) {
my ($r_packet, $r_move) = @_;
my $current_packet = shift @$r_packet;
my $current_move = shift @$r_move;
my $in_packet_cursor = 0;
my @result = ();
while (defined $current_packet) {
if (!defined $current_move) {
push @result, $current_packet;
$current_packet = shift @$r_packet;
$in_packet_cursor = 0;
} elsif (defined $current_move->{d}) {
# Remove stuff from packet
if ($current_move->{d} > length($current_packet) - $in_packet_cursor) {
# Eat up what is left of packet.
$current_move->{d} -= length($current_packet) - $in_packet_cursor;
if ($in_packet_cursor > 0) {
# Something in packet from previous iteration.
push @result, $current_packet;
}
$current_packet = shift @$r_packet;
$in_packet_cursor = 0;
} else {
# Remove from current point in current packet
substr($current_packet, $in_packet_cursor, $current_move->{d}) = '';
$current_move = shift @$r_move;
}
} else {
# Substitute stuff
if ($current_move->{s_s} > length($current_packet) - $in_packet_cursor) {
# {s_s=>3, s_v=>GET} on ['GE', 'T /foo']
$current_move->{s_s} -= length($current_packet) - $in_packet_cursor;
substr($current_packet, $in_packet_cursor) = substr($current_move->{s_v}, 0, length($current_packet) - $in_packet_cursor);
push @result, $current_packet;
$current_move->{s_v} = substr($current_move->{s_v}, length($current_packet) - $in_packet_cursor);
$current_packet = shift @$r_packet;
$in_packet_cursor = 0;
} else {
substr($current_packet, $in_packet_cursor, $current_move->{s_s}) = $current_move->{s_v};
$in_packet_cursor += length($current_move->{s_v});
$current_move = shift @$r_move;
}
}
}
return \@result;
}
# Given a request as an array of packets, will parse it, append the appropriate
# headers and return another array of packets.
# The function implemented here can be high-level summarized as:
# 1 - Concatenate all packets to obtain a string representation of request.
# 2 - Parse the string representation
# 3 - Get the "moves" from the parsing
# 4 - Apply the "moves" to the packets.
sub build_request_from_packets($$$$$) {
my ( $name, $more_headers, $is_chunked, $conn_header, $request_packets ) = @_;
# Concatenate packets as a string
my $parsable_request = '';
my @packet_length;
for my $one_packet (@$request_packets) {
$parsable_request .= $one_packet;
push @packet_length, length($one_packet);
}
# Parse the string representation.
my $parsed_req = parse_request( $name, \$parsable_request );
# Append headers
my $len_header = '';
if ( !$is_chunked
&& defined $parsed_req->{content}
&& $parsed_req->{content} ne ''
&& $more_headers !~ /\bContent-Length:/ )
{
$parsed_req->{content} =~ s/^\s+|\s+$//gs;
$len_header .=
"Content-Length: " . length( $parsed_req->{content} ) . "\r\n";
}
$parsed_req->{method} .= ' ';
$parsed_req->{url} .= ' ';
$parsed_req->{http_ver} .= "\r\n";
$parsed_req->{headers} = "Host: localhost\r\nConnection: $conn_header\r\n$more_headers$len_header\r\n";
# Get the moves from parsing
my @elements_moves = get_moves($parsed_req);
# Apply them to the packets.
return apply_moves($request_packets, \@elements_moves);
}
# Returns an array of array of hashes from the block. Each element of
# the first-level array is a request.
# Each request is an array of the "packets" to be sent. Each packet is a
# string to send, with an (optionnal) delay before sending it.
# This function parses (and therefore defines the syntax) of "request*"
# sections. See documentation for supported syntax.
sub get_req_from_block ($) {
my ($block) = @_;
my $name = $block->name;
my @req_list = ();
if ( defined $block->raw_request ) {
# Should be deprecated.
if ( ref $block->raw_request && ref $block->raw_request eq 'ARRAY' ) {
# User already provided an array. So, he/she specified where the
# data should be split. This allows for backward compatibility but
# should use request with arrays as it provides the same functionnality.
my @rr_list = ();
for my $elt ( @{ $block->raw_request } ) {
push @rr_list, {value => $elt};
}
push @req_list, \@rr_list;
}
else {
push @req_list, [{value => $block->raw_request}];
}
}
else {
my $request;
if ( defined $block->request_eval ) {
diag "$name - request_eval DEPRECATED. Use request eval instead.";
$request = eval $block->request_eval;
if ($@) {
warn $@;
}
}
else {
$request = $block->request;
}
my $is_chunked = 0;
my $more_headers = '';
if ( $block->more_headers ) {
my @headers = split /\n+/, $block->more_headers;
for my $header (@headers) {
next if $header =~ /^\s*\#/;
my ( $key, $val ) = split /:\s*/, $header, 2;
if ( lc($key) eq 'transfer-encoding' and $val eq 'chunked' ) {
$is_chunked = 1;
}
#warn "[$key, $val]\n";
$more_headers .= "$key: $val\r\n";
}
}
if ( $block->pipelined_requests ) {
my $reqs = $block->pipelined_requests;
if ( !ref $reqs || ref $reqs ne 'ARRAY' ) {
Test::More::BAIL_OUT(
"$name - invalid entries in --- pipelined_requests");
}
my $i = 0;
my $prq = "";
for my $request (@$reqs) {
my $conn_type;
if ( $i++ == @$reqs - 1 ) {
$conn_type = 'close';
}
else {
$conn_type = 'keep-alive';
}
my $r_br = build_request_from_packets($name, $more_headers,
$is_chunked, $conn_type,
[$request] );
$prq .= $$r_br[0];
}
push @req_list, [{value =>$prq}];
}
else {
# request section.
if (!ref $request) {
# One request and it is a good old string.
my $r_br = build_request_from_packets($name, $more_headers,
$is_chunked, 'Close',
[$request] );
push @req_list, [{value => $$r_br[0]}];
} elsif (ref $request eq 'ARRAY') {
# A bunch of requests...
for my $one_req (@$request) {
if (!ref $one_req) {
# This request is a good old string.
my $r_br = build_request_from_packets($name, $more_headers,
$is_chunked, 'Close',
[$one_req] );
push @req_list, [{value => $$r_br[0]}];
} elsif (ref $one_req eq 'ARRAY') {
# Request expressed as a serie of packets
my @packet_array = ();
for my $one_packet (@$one_req) {
if (!ref $one_packet) {
# Packet is a string.
push @packet_array, $one_packet;
} elsif (ref $one_packet eq 'HASH'){
# Packet is a hash with a value...
push @packet_array, $one_packet->{value};
} else {
Test::More::BAIL_OUT "$name - Invalid syntax. $one_packet should be a string or hash with value.";
}
}
my $transformed_packet_array = build_request_from_packets($name, $more_headers,
$is_chunked, 'Close',
\@packet_array);
my @transformed_req = ();
my $idx = 0;
for my $one_transformed_packet (@$transformed_packet_array) {
if (!ref $$one_req[$idx]) {
push @transformed_req, {value => $one_transformed_packet};
} else {
# Is a HASH (checked above as $one_packet)
$$one_req[$idx]->{value} = $one_transformed_packet;
push @transformed_req, $$one_req[$idx];
}
$idx++;
}
push @req_list, \@transformed_req;
} else {
Test::More::BAIL_OUT "$name - Invalid syntax. $one_req should be a string or an array of packets.";
}
}
} else {
Test::More::BAIL_OUT(
"$name - invalid ---request : MUST be string or array of requests");
}
}
}
return \@req_list;
}
sub run_test_helper ($$) {
my ( $block, $dry_run ) = @_;
my $name = $block->name;
my $r_req_list = get_req_from_block($block);
if ( $#$r_req_list < 0 ) {
Test::More::BAIL_OUT("$name - request empty");
}
#warn "request: $req\n";
my $timeout = $block->timeout;
if ( !defined $timeout ) {
$timeout = $Timeout;
}
my $req_idx = 0;
for my $one_req (@$r_req_list) {
my $raw_resp;
if ($dry_run) {
$raw_resp = "200 OK HTTP/1.0\r\nContent-Length: 0\r\n\r\n";
}
else {
$raw_resp = send_request( $one_req, $block->raw_request_middle_delay,
$timeout, $block->name );
}
#warn "raw resonse: [$raw_resp]\n";
my ($n, $need_array);
if ($block->pipelined_requests) {
$n = @{ $block->pipelined_requests };
$need_array = 1;
} else {
$need_array = $#$r_req_list > 0;
}
again:
#warn "!!! resp: [$raw_resp]";
if (!defined $raw_resp) {
$raw_resp = '';
}
my ( $res, $raw_headers, $left ) = parse_response( $name, $raw_resp );
if (!$n) {
if ($left) {
my $name = $block->name;
$left =~ s/([\0-\037\200-\377])/sprintf('\x{%02x}',ord $1)/eg;
warn "WARNING: $name - unexpected extra bytes after last chunk in ",
"response: \"$left\"\n";
}
} else {
$raw_resp = $left;
$n--;
}
check_error_code($block, $res, $dry_run, $req_idx, $need_array);
check_raw_response_headers($block, $raw_headers, $dry_run, $req_idx, $need_array);
check_response_headers($block, $res, $raw_headers, $dry_run, $req_idx, $need_array);
check_response_body($block, $res, $dry_run, $req_idx, $need_array);
$req_idx++;
if ($n) {
goto again;
}
}
}
# Helper function to retrieve a "check" (e.g. error_code) section. This also
# checks that tests with arrays of requests are arrays themselves.
sub get_indexed_value($$$$) {
my ($name, $value, $req_idx, $need_array) = @_;
if ($need_array) {
if (ref $value && ref $value eq 'ARRAY') {
return $$value[$req_idx];
} else {
Test::More::BAIL_OUT("$name - You asked for many requests, the expected results should be arrays as well.");
}
} else {
# One element but still provided as an array.
if (ref $value && ref $value eq 'ARRAY') {
if ($req_idx != 0) {
Test::More::BAIL_OUT("$name - SHOULD NOT HAPPEN: idx != 0 and don't need array.");
} else {
return $$value[0];
}
} else {
return $value;
}
}
}
sub check_error_code($$$$$) {
my ($block, $res, $dry_run, $req_idx, $need_array) = @_;
my $name = $block->name;
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
if ( defined $block->error_code ) {
is( $res->code || '',
get_indexed_value($name, $block->error_code, $req_idx, $need_array),
"$name - status code ok" );
} else {
is( $res->code || '', 200, "$name - status code ok" );
}
}
}
sub check_raw_response_headers($$$$$) {
my ($block, $raw_headers, $dry_run, $req_idx, $need_array) = @_;
my $name = $block->name;
if ( defined $block->raw_response_headers_like ) {
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
my $expected = get_indexed_value($name,
$block->raw_response_headers_like,
$req_idx,
$need_array);
like $raw_headers, qr/$expected/s, "$name - raw resp headers like";
}
}
}
sub check_response_headers($$$$$) {
my ($block, $res, $raw_headers, $dry_run, $req_idx, $need_array) = @_;
my $name = $block->name;
if ( defined $block->response_headers ) {
my $headers = parse_headers( get_indexed_value($name,
$block->response_headers,
$req_idx,
$need_array));
while ( my ( $key, $val ) = each %$headers ) {
if ( !defined $val ) {
#warn "HIT";
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
unlike $raw_headers, qr/^\s*\Q$key\E\s*:/ms,
"$name - header $key not present in the raw headers";
}
next;
}
my $actual_val = $res->header($key);
if ( !defined $actual_val ) {
$actual_val = '';
}
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
is $actual_val, $val, "$name - header $key ok";
}
}
}
elsif ( defined $block->response_headers_like ) {
my $headers = parse_headers( get_indexed_value($name,
$block->response_headers_like,
$req_idx,
$need_array) );
while ( my ( $key, $val ) = each %$headers ) {
my $expected_val = $res->header($key);
if ( !defined $expected_val ) {
$expected_val = '';
}
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
like $expected_val, qr/^$val$/, "$name - header $key like ok";
}
}
}
}
sub check_response_body() {
my ($block, $res, $dry_run, $req_idx, $need_array) = @_;
my $name = $block->name;
if ( defined $block->response_body
|| defined $block->response_body_eval )
{
my $content = $res->content;
if ( defined $content ) {
$content =~ s/^TE: deflate,gzip;q=0\.3\r\n//gms;
$content =~ s/^Connection: TE, close\r\n//gms;
}
my $expected;
if ( $block->response_body_eval ) {
diag "$name - response_body_eval is DEPRECATED. Use response_body eval instead.";
$expected = eval get_indexed_value($name,
$block->response_body_eval,
$req_idx,
$need_array);
if ($@) {
warn $@;
}
}
else {
$expected = get_indexed_value($name,
$block->response_body,
$req_idx,
$need_array);
}
if ( $block->charset ) {
Encode::from_to( $expected, 'UTF-8', $block->charset );
}
unless (ref $expected) {
$expected =~ s/\$ServerPort\b/$ServerPort/g;
$expected =~ s/\$ServerPortForClient\b/$ServerPortForClient/g;
}
#warn show_all_chars($content);
#warn "no long string: $NoLongString";
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
if (ref $expected) {
like $content, $expected, "$name - response_body - like";
} else {
if ($NoLongString) {
is( $content, $expected,
"$name - response_body - response is expected" );
}
else {
is_string( $content, $expected,
"$name - response_body - response is expected" );
}
}
}
}
elsif ( defined $block->response_body_like ) {
my $content = $res->content;
if ( defined $content ) {
$content =~ s/^TE: deflate,gzip;q=0\.3\r\n//gms;
}
$content =~ s/^Connection: TE, close\r\n//gms;
my $expected_pat = get_indexed_value($name,
$block->response_body_like,
$req_idx,
$need_array);
$expected_pat =~ s/\$ServerPort\b/$ServerPort/g;
$expected_pat =~ s/\$ServerPortForClient\b/$ServerPortForClient/g;
my $summary = trim($content);
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
like( $content, qr/$expected_pat/s,
"$name - response_body_like - response is expected ($summary)"
);
}
} elsif ( defined $block->response_body_unlike ) {
my $content = $res->content;
if ( defined $content ) {
$content =~ s/^TE: deflate,gzip;q=0\.3\r\n//gms;
}
$content =~ s/^Connection: TE, close\r\n//gms;
my $expected_pat = get_indexed_value($name,
$block->response_body_unlike,
$req_idx,
$need_array);
$expected_pat =~ s/\$ServerPort\b/$ServerPort/g;
$expected_pat =~ s/\$ServerPortForClient\b/$ServerPortForClient/g;
my $summary = trim($content);
SKIP: {
skip "$name - tests skipped due to the lack of directive $dry_run", 1 if $dry_run;
unlike( $content, qr/$expected_pat/s,
"$name - response_body_like - response is expected ($summary)"
);
}
}
sub parse_response($$) {
my ( $name, $raw_resp ) = @_;
my $left;
my $raw_headers = '';
if ( $raw_resp =~ /(.*?\r\n)\r\n/s ) {
#warn "\$1: $1";
$raw_headers = $1;
}
#warn "raw headers: $raw_headers\n";
my $res = HTTP::Response->parse($raw_resp);
my $enc = $res->header('Transfer-Encoding');
my $len = $res->header('Content-Length');
if ( defined $enc && $enc eq 'chunked' ) {
#warn "Found chunked!";
my $raw = $res->content;
if ( !defined $raw ) {
$raw = '';
}
my $decoded = '';
while (1) {
if ( $raw =~ /\G 0 [\ \t]* \r\n \r\n /gcsx ) {
if ( $raw =~ /\G (.+) /gcsx ) {
$left = $1;
}
last;
}
if ( $raw =~ m{ \G [\ \t]* ( [A-Fa-f0-9]+ ) [\ \t]* \r\n }gcsx ) {
my $rest = hex($1);
#warn "chunk size: $rest\n";
my $bit_sz = 32765;
while ( $rest > 0 ) {
my $bit = $rest < $bit_sz ? $rest : $bit_sz;
#warn "bit: $bit\n";
if ( $raw =~ /\G(.{$bit})/gcs ) {
$decoded .= $1;
#warn "decoded: [$1]\n";
}
else {
fail(
"$name - invalid chunked data received (not enought octets for the data section)"
);
return;
}
$rest -= $bit;
}
if ( $raw !~ /\G\r\n/gcs ) {
fail(
"$name - invalid chunked data received (expected CRLF)."
);
return;
}
}
elsif ( $raw =~ /\G.+/gcs ) {
fail "$name - invalid chunked body received: $&";
return;
}
else {
fail "$name - no last chunk found - $raw";
return;
}
}
#warn "decoded: $decoded\n";
$res->content($decoded);
} elsif (defined $len && $len ne '' && $len >= 0) {
my $raw = $res->content;
if (length $raw < $len) {
warn "WARNING: $name - response body truncated: ",
"$len expected, but got ", length $raw, "\n";
} elsif (length $raw > $len) {
my $content = substr $raw, 0, $len;
$left = substr $raw, $len;
$res->content($content);
#warn "parsed body: [", $res->content, "]\n";
}
}
return ( $res, $raw_headers, $left );
}
sub send_request ($$$$@) {
my ( $req, $middle_delay, $timeout, $name, $tries ) = @_;
my $sock = IO::Socket::INET->new(
PeerAddr => $ServerAddr,
PeerPort => $ServerPortForClient,
Proto => 'tcp'
);
if (! defined $sock) {
$tries ||= 0;
if ($tries < 3) {
warn "Can't connect to $ServerAddr:$ServerPortForClient: $!\n";
sleep 1;
return send_request($req, $middle_delay, $timeout, $name, $tries + 1);
} else {
die "Can't connect to $ServerAddr:$ServerPortForClient: $!\n";
}
}
my @req_bits = ref $req ? @$req : ($req);
my $flags = fcntl $sock, F_GETFL, 0
or die "Failed to get flags: $!\n";
fcntl $sock, F_SETFL, $flags | O_NONBLOCK
or die "Failed to set flags: $!\n";
my $ctx = {
resp => '',
write_offset => 0,
buf_size => 1024,
req_bits => \@req_bits,
write_buf => (shift @req_bits)->{"value"},
middle_delay => $middle_delay,
sock => $sock,
name => $name,
};
my $readable_hdls = IO::Select->new($sock);
my $writable_hdls = IO::Select->new($sock);
my $err_hdls = IO::Select->new($sock);
while (1) {
if ( $readable_hdls->count == 0
&& $writable_hdls->count == 0
&& $err_hdls->count == 0 )
{
last;
}
my ( $new_readable, $new_writable, $new_err ) =
IO::Select->select( $readable_hdls, $writable_hdls, $err_hdls,
$timeout );
if ( !defined $new_err
&& !defined $new_readable
&& !defined $new_writable )
{
# timed out
timeout_event_handler($ctx);
last;
}
for my $hdl (@$new_err) {
next if !defined $hdl;
error_event_handler($ctx);
if ( $err_hdls->exists($hdl) ) {
$err_hdls->remove($hdl);
}
if ( $readable_hdls->exists($hdl) ) {
$readable_hdls->remove($hdl);
}
if ( $writable_hdls->exists($hdl) ) {
$writable_hdls->remove($hdl);
}
for my $h (@$readable_hdls) {
next if !defined $h;
if ( $h eq $hdl ) {
undef $h;
last;
}
}
for my $h (@$writable_hdls) {
next if !defined $h;
if ( $h eq $hdl ) {
undef $h;
last;
}
}
close $hdl;
}
for my $hdl (@$new_readable) {
next if !defined $hdl;
my $res = read_event_handler($ctx);
if ( !$res ) {
# error occured
if ( $err_hdls->exists($hdl) ) {
$err_hdls->remove($hdl);
}
if ( $readable_hdls->exists($hdl) ) {
$readable_hdls->remove($hdl);
}
if ( $writable_hdls->exists($hdl) ) {
$writable_hdls->remove($hdl);
}
for my $h (@$writable_hdls) {
next if !defined $h;
if ( $h eq $hdl ) {
undef $h;
last;
}
}
close $hdl;
}
}
for my $hdl (@$new_writable) {
next if !defined $hdl;
my $res = write_event_handler($ctx);
if ( !$res ) {
# error occured
if ( $err_hdls->exists($hdl) ) {
$err_hdls->remove($hdl);
}
if ( $readable_hdls->exists($hdl) ) {
$readable_hdls->remove($hdl);
}
if ( $writable_hdls->exists($hdl) ) {
$writable_hdls->remove($hdl);
}
close $hdl;
} elsif ( $res == 2 ) {
if ( $writable_hdls->exists($hdl) ) {
$writable_hdls->remove($hdl);
}
}
}
}
return $ctx->{resp};
}
sub timeout_event_handler ($) {
my $ctx = shift;
warn "ERROR: socket client: timed out - $ctx->{name}\n";
}
sub error_event_handler ($) {
warn "exception occurs on the socket: $!\n";
}
sub write_event_handler ($) {
my ($ctx) = @_;
while (1) {
return undef if !defined $ctx->{write_buf};
my $rest = length( $ctx->{write_buf} ) - $ctx->{write_offset};
#warn "offset: $write_offset, rest: $rest, length ", length($write_buf), "\n";
#die;
if ( $rest > 0 ) {
my $bytes;
eval {
$bytes = syswrite(
$ctx->{sock}, $ctx->{write_buf},
$rest, $ctx->{write_offset}
);
};
if ($@) {
my $errmsg = "write failed: $@";
warn "$errmsg\n";
$ctx->{resp} = $errmsg;
return undef;
}
if ( !defined $bytes ) {
if ( $! == EAGAIN ) {
#warn "write again...";
#sleep 0.002;
return 1;
}
my $errmsg = "write failed: $!";
warn "$errmsg\n";
if ( !$ctx->{resp} ) {
$ctx->{resp} = "$errmsg";
}
return undef;
}
#warn "wrote $bytes bytes.\n";
$ctx->{write_offset} += $bytes;
}
else {
my $next_send = shift @{ $ctx->{req_bits} } or return 2;
$ctx->{write_buf} = $next_send->{'value'};
$ctx->{write_offset} = 0;
my $wait_time;
if (!defined $next_send->{'delay_before'}) {
if (defined $ctx->{middle_delay}) {
$wait_time = $ctx->{middle_delay};
}
} else {
$wait_time = $next_send->{'delay_before'};
}
if ($wait_time) {
#warn "sleeping..";
sleep $wait_time;
}
}
}
# impossible to reach here...
return undef;
}
sub read_event_handler ($) {
my ($ctx) = @_;
while (1) {
my $read_buf;
my $bytes = sysread( $ctx->{sock}, $read_buf, $ctx->{buf_size} );
if ( !defined $bytes ) {
if ( $! == EAGAIN ) {
#warn "read again...";
#sleep 0.002;
return 1;
}
$ctx->{resp} = "500 read failed: $!";
return undef;
}
if ( $bytes == 0 ) {
return undef; # connection closed
}
$ctx->{resp} .= $read_buf;
#warn "read $bytes ($read_buf) bytes.\n";
}
# impossible to reach here...
return undef;
}
1;
__END__
=encoding utf-8
=head1 NAME
Test::Nginx::Socket - Socket-backed test scaffold for the Nginx C modules
=head1 SYNOPSIS
use Test::Nginx::Socket;
plan tests => $Test::Nginx::Socket::RepeatEach * 2 * blocks();
run_tests();
__DATA__
=== TEST 1: sanity
--- config
location /echo {
echo_before_body hello;
echo world;
}
--- request
GET /echo
--- response_body
hello
world
--- error_code: 200
=== TEST 2: set Server
--- config
location /foo {
echo hi;
more_set_headers 'Server: Foo';
}
--- request
GET /foo
--- response_headers
Server: Foo
--- response_body
hi
=== TEST 3: clear Server
--- config
location /foo {
echo hi;
more_clear_headers 'Server: ';
}
--- request
GET /foo
--- response_headers_like
Server: nginx.*
--- response_body
hi
=== TEST 3: chunk size too small
--- config
chunkin on;
location /main {
echo_request_body;
}
--- more_headers
Transfer-Encoding: chunked
--- request eval
"POST /main
4\r
hello\r
0\r
\r
"
--- error_code: 400
--- response_body_like: 400 Bad Request
=head1 DESCRIPTION
This module provides a test scaffold based on non-blocking L<IO::Socket> for automated testing in Nginx C module development.
This class inherits from L<Test::Base>, thus bringing all its
declarative power to the Nginx C module testing practices.
You need to terminate or kill any Nginx processes before running the test suite if you have changed the Nginx server binary. Normally it's as simple as
killall nginx
PATH=/path/to/your/nginx-with-memc-module:$PATH prove -r t
This module will create a temporary server root under t/servroot/ of the current working directory and starts and uses the nginx executable in the PATH environment.
You will often want to look into F<t/servroot/logs/error.log>
when things go wrong ;)
=head1 Sections supported
The following sections are supported:
=head2 config
Content of this section will be included in the "server" part of the generated
config file. This is the place where you want to put the "location" directive
enabling the module you want to test. Example:
location /echo {
echo_before_body hello;
echo world;
}
Sometimes you simply don't want to bother copying ten times the same
configuration for the ten tests you want to run against your module. One way
to do this is to write a config section only for the first test in your C<.t>
file. All subsequent tests will re-use the same config. Please note that this
depends on the order of test, so you should run C<prove> with variable
C<TEST_NGINX_NO_SHUFFLE=1> (see below for more on this variable).
Please note that config section goes through environment variable expansion
provided the variables to expand start with TEST_NGINX.
So, the following is a perfectly legal (provided C<TEST_NGINX_HTML_DIR> is
set correctly):
location /main {
echo_subrequest POST /sub -f $TEST_NGINX_HTML_DIR/blah.txt;
}
=head2 http_config
Content of this section will be included in the "http" part of the generated
config file. This is the place where you want to put the "upstream" directive
you might want to test. Example:
upstream database {
postgres_server 127.0.0.1:$TEST_NGINX_POSTGRESQL_PORT
dbname=ngx_test user=ngx_test
password=wrong_pass;
}
As you guessed from the example above, this section goes through environment
variable expansion (variables have to start with TEST_NGINX).
=head2 main_config
Content of this section will be included in the "main" part of the generated
config file. This is very rarely used, except if you are testing nginx core
itself.
This section goes through environment
variable expansion (variables have to start with TEST_NGINX).
=head2 request
This is probably the most important section. It defines the request(s) you
are going to send to the nginx server. It offers a pretty powerful grammar
which we are going to walk through one example at a time.
In its most basic form, this section looks like that:
--- request
GET
This will just do a GET request on the root (i.e. /) of the server using
HTTP/1.1.
Of course, you might want to test something else than the root of your
web server and even use a different version of HTTP. This is possible:
--- request
GET /foo HTTP/1.0
Please note that specifying HTTP/1.0 will not prevent Test::Nginx from
sending the C<Host> header. Actually Test::Nginx always sends 2 headers:
C<Host> (with value localhost) and C<Connection> (with value Close for
simple requests and keep-alive for all but the last pipelined_requests).
You can also add a content to your request:
--- request
POST /foo
Hello world
Test::Nginx will automatically calculate the content length and add the
corresponding header for you.
This being said, as soon as you want to POST real data, you will be interested
in using the more_headers section and using the power of Test::Base filters
to urlencode the content you are sending. Which gives us a
slightly more realistic example:
--- more_headers
Content-type: application/x-www-form-urlencoded
--- request eval
use URI::Escape;
"POST /rrd/foo
value=".uri_escape("N:12345")
Sometimes a test is more than one request. Typically you want to POST some
data and make sure the data has been taken into account with a GET. You can
do it using arrays:
--- request eval
["POST /users
name=foo", "GET /users/foo"]
This way, REST-like interfaces are pretty easy to test.
When you develop nifty nginx modules you will eventually want to test things
with buffers and "weird" network conditions. This is where you split
your request into network packets:
--- request eval
[["POST /users\nna", "me=foo"]]
Here, Test::Nginx will first send the request line, the headers it
automatically added for you and the first two letters of the body ("na" in
our example) in ONE network packet. Then, it will send the next packet (here
it's "me=foo"). When we talk about packets here, this is nto exactly correct
as there is no way to guarantee the behavior of the TCP/IP stack. What
Test::Nginx can guarantee is that this will result in two calls to
C<syswrite>.
A good way to make I<almost> sure the two calls result in two packets is to
introduce a delay (let's say 2 seconds)before sending the second packet:
--- request eval
[["POST /users\nna", {value => "me=foo", delay_before => 2}]]
Of course, everything can be combined till your brain starts boiling ;) :
--- request eval
use URI::Escape;
my $val="value=".uri_escape("N:12346");
[["POST /rrd/foo
".substr($val, 0, 6),
{value => substr($val, 6, 5), delay_before=>5},
substr($val, 11)], "GET /rrd/foo"]
=head2 request_eval
Use of this section is deprecated and tests using it should replace it with
a C<request> section with an C<eval> filter. More explicitly:
--- request_eval
"POST /echo_body
hello\x00\x01\x02
world\x03\x04\xff"
should be replaced by:
--- request eval
"POST /echo_body
hello\x00\x01\x02
world\x03\x04\xff"
=head2 pipelined_requests
Specify pipelined requests that use a single keep-alive connection to the server.
Here is an example from ngx_lua's test suite:
=== TEST 7: discard body
--- config
location = /foo {
content_by_lua '
ngx.req.discard_body()
ngx.say("body: ", ngx.var.request_body)
';
}
location = /bar {
content_by_lua '
ngx.req.read_body()
ngx.say("body: ", ngx.var.request_body)
';
}
--- pipelined_requests eval
["POST /foo
hello, world",
"POST /bar
hiya, world"]
--- response_body eval
["body: nil\n",
"body: hiya, world\n"]
=head2 more_headers
Adds the content of this section as headers to the request being sent. Example:
--- more_headers
X-Foo: blah
This will add C<X-Foo: blah> to the request (on top of the automatically
generated headers like C<Host>, C<Connection> and potentially
C<Content-Length>).
=head2 response_body
The expected value for the body of the submitted request.
--- response_body
hello
If the test is made of multiple requests, then the response_body B<MUST>
be an array and each request B<MUST> return the corresponding expected
body:
--- request eval
["GET /hello", "GET /world"]
--- response_body eval
["hello", "world"]
=head2 response_body_eval
Use of this section is deprecated and tests using it should replace it
with a C<request> section with an C<eval> filter. Therefore:
--- response_body_eval
"hello\x00\x01\x02
world\x03\x04\xff"
should be replaced by:
--- response_body eval
"hello\x00\x01\x02
world\x03\x04\xff"
=head2 response_body_like
The body returned by the request MUST match the pattern provided by this
section. Example:
--- response_body_like
^elapsed 0\.00[0-5] sec\.$
If the test is made of multiple requests, then response_body_like B<MUST>
be an array and each request B<MUST> match the corresponding pattern.
=head2 response_headers
The headers specified in this section are in the response sent by nginx.
--- response_headers
Content-Type: application/x-resty-dbd-stream
Of course, you can specify many headers in this section:
--- response_headers
X-Resty-DBD-Module:
Content-Type: application/x-resty-dbd-stream
The test will be successful only if all headers are found in the response with
the appropriate values.
If the test is made of multiple requests, then response_headers B<MUST>
be an array and each element of the array is checked against the
response to the corresponding request.
=head2 response_headers_like
The value of the headers returned by nginx match the patterns.
--- response_headers_like
X-Resty-DBD-Module: ngx_drizzle \d+\.\d+\.\d+
Content-Type: application/x-resty-dbd-stream
This will check that the response's C<Content-Type> is
application/x-resty-dbd-stream and that the C<X-Resty-DBD-Module> matches
C<ngx_drizzle \d+\.\d+\.\d+>.
The test will be successful only if all headers are found in the response and
if the values match the patterns.
If the test is made of multiple requests, then response_headers_like B<MUST>
be an array and each element of the array is checked against the
response to the corresponding request.
=head2 raw_response_headers_like
Checks the headers part of the response against this pattern. This is
particularly useful when you want to write tests of redirect functions
that are not bound to the value of the port your nginx server (under
test) is listening to:
--- raw_response_headers_like: Location: http://localhost(?::\d+)?/foo\r\n
As usual, if the test is made of multiple requests, then
raw_response_headers_like B<MUST> be an array.
=head2 error_code
The expected value of the HTTP response code. If not set, this is assumed
to be 200. But you can expect other things such as a redirect:
--- error_code: 302
If the test is made of multiple requests, then
error_code B<MUST> be an array with the expected value for the response status
of each request in the test.
=head2 raw_request
The exact request to send to nginx. This is useful when you want to test
soem behaviors that are not available with "request" such as an erroneous
C<Content-Length> header or splitting packets right in the middle of headers:
--- raw_request eval
["POST /rrd/taratata HTTP/1.1\r
Host: localhost\r
Connection: Close\r
Content-Type: application/",
"x-www-form-urlencoded\r
Content-Length:15\r\n\r\nvalue=N%3A12345"]
This can also be useful to tests "invalid" request lines:
--- raw_request
GET /foo HTTP/2.0 THE_FUTURE_IS_NOW
=head2 user_files
With this section you can create a file that will be copied in the
html directory of the nginx server under test. For example:
--- user_files
>>> blah.txt
Hello, world
will create a file named C<blah.txt> in the html directory of the nginx
server tested. The file will contain the text "Hello, world".
=head2 skip_nginx
=head2 skip_nginx2
Both string scalar and string arrays are supported as values.
=head2 raw_request_middle_delay
Delay in sec between sending successive packets in the "raw_request" array
value. Also used when a request is split in packets.
=head1 Environment variables
All environment variables starting with C<TEST_NGINX_> are expanded in the
sections used to build the configuration of the server that tests automatically
starts. The following environment variables are supported by this module:
=head2 TEST_NGINX_NO_NGINX_MANAGER
Defaults to 0. If set to 1, Test::Nginx module will not manage
(configure/start/stop) the C<nginx> process. Can be useful to run tests
against an already configured (and running) nginx server.
=head2 TEST_NGINX_NO_SHUFFLE
Dafaults to 0. If set to 1, will make sure the tests are run in the order
they appear in the test file (and not in random order).
=head2 TEST_NGINX_USE_VALGRIND
If set to 1, will start nginx with valgrind. nginx is actually started with
C<valgrind -q --leak-check=full --gen-suppressions=all --suppressions=valgrind.suppress>,
the suppressions option being used only if there is actually
a valgrind.suppress file.
=head2 TEST_NGINX_BINARY
The command to start nginx. Defaults to C<nginx>. Can be used as an alternative
to setting C<PATH> to run a specific nginx instance.
=head2 TEST_NGINX_LOG_LEVEL
Value of the last argument of the C<error_log> configuration directive.
Defaults to C<debug>.
=head2 TEST_NGINX_MASTER_PROCESS
Value of the C<master_process> configuration directive. Defaults to C<off>.
=head2 TEST_NGINX_SERVER_PORT
Value of the port the server started by Test::Nginx will listen to. If not
set, C<TEST_NGINX_PORT> is used. If C<TEST_NGINX_PORT> is not set,
then C<1984> is used. See below for typical use.
=head2 TEST_NGINX_CLIENT_PORT
Value of the port Test::Nginx will diirect requests to. If not
set, C<TEST_NGINX_PORT> is used. If C<TEST_NGINX_PORT> is not set,
then C<1984> is used. A typical use of this feature is to test extreme
network conditions by adding a "proxy" between Test::Nginx and nginx
itself. This is described in the C<etcproxy integration> section of this
module README.
=head2 TEST_NGINX_PORT
A shortcut for setting both C<TEST_NGINX_CLIENT_PORT> and
C<TEST_NGINX_SERVER_PORT>.
=head2 TEST_NGINX_SLEEP
How much time (in seconds) should Test::Nginx sleep between two calls to C<syswrite> when
sending request data. Defaults to 0.
=head2 TEST_NGINX_FORCE_RESTART_ON_TEST
Defaults to 1. If set to 0, Test::Nginx will not restart the nginx
server when the config does not change between two tests.
=head2 TEST_NGINX_SERVROOT
The root of the nginx "hierarchy" (where you find the conf, *_tmp and logs
directories). This value will be used with the C<-p> option of C<nginx>.
Defaults to appending C<t/servroot> to the current directory.
=head2 TEST_NGINX_IGNORE_MISSING_DIRECTIVES
If set to 1 will SKIP all tests which C<config> sections resulted in a
C<unknown directive> when trying to start C<nginx>. Useful when you want to
run tests on a build of nginx that does not include all modules it should.
By default, these tests will FAIL.
=head2 TEST_NGINX_EVENT_TYPE
This environment can be used to specify a event API type to be used by Nginx. Possible values are C<epoll>, C<kqueue>, C<select>, C<rtsig>, C<poll>, and others.
For example,
$ TEST_NGINX_EVENT_TYPE=select prove -r t
=head2 TEST_NGINX_ERROR_LOG
Error log files from all tests will be appended to the file specified with
this variable. There is no default value which disables the feature. This
is very useful when debugging. By default, each test triggers a start/stop
cycle for C<nginx>. All logs are removed before each restart, so you can
only see the logs for the last test run (which you usually do not control
except if you set C<TEST_NGINX_NO_SHUFFLE=1>). With this, you accumulate
all logs into a single file that is never cleaned up by Test::Nginx.
=head1 Samples
You'll find live samples in the following Nginx 3rd-party modules:
=over
=item ngx_echo
L<http://github.com/agentzh/echo-nginx-module>
=item ngx_chunkin
L<http://wiki.nginx.org/NginxHttpChunkinModule>
=item ngx_memc
L<http://wiki.nginx.org/NginxHttpMemcModule>
=item ngx_drizzle
L<http://github.com/chaoslawful/drizzle-nginx-module>
=item ngx_rds_json
L<http://github.com/agentzh/rds-json-nginx-module>
=item ngx_xss
L<http://github.com/agentzh/xss-nginx-module>
=item ngx_srcache
L<http://github.com/agentzh/srcache-nginx-module>
=item ngx_lua
L<http://github.com/chaoslawful/lua-nginx-module>
=item ngx_set_misc
L<http://github.com/agentzh/set-misc-nginx-module>
=item ngx_array_var
L<http://github.com/agentzh/array-var-nginx-module>
=item ngx_form_input
L<http://github.com/calio/form-input-nginx-module>
=item ngx_iconv
L<http://github.com/calio/iconv-nginx-module>
=item ngx_set_cconv
L<http://github.com/liseen/set-cconv-nginx-module>
=item ngx_postgres
L<http://github.com/FRiCKLE/ngx_postgres>
=item ngx_coolkit
L<http://github.com/FRiCKLE/ngx_coolkit>
=back
=head1 SOURCE REPOSITORY
This module has a Git repository on Github, which has access for all.
http://github.com/agentzh/test-nginx
If you want a commit bit, feel free to drop me a line.
=head1 AUTHORS
agentzh (章亦春) C<< <agentzh@gmail.com> >>
Antoine BONAVITA C<< <antoine.bonavita@gmail.com> >>
=head1 COPYRIGHT & LICENSE
Copyright (c) 2009-2011, Taobao Inc., Alibaba Group (L<http://www.taobao.com>).
Copyright (c) 2009-2011, agentzh C<< <agentzh@gmail.com> >>.
Copyright (c) 2011, Antoine BONAVITA C<< <antoine.bonavita@gmail.com> >>.
This module is licensed under the terms of the BSD license.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
=over
=item *
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
=item *
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
=item *
Neither the name of the Taobao Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
=back
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=head1 SEE ALSO
L<Test::Nginx::LWP>, L<Test::Base>.
|