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
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 1997-2024. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
-module(gen_tcp_echo_SUITE).
-include_lib("common_test/include/ct.hrl").
%%-compile(export_all).
-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
init_per_group/2,end_per_group/2,
init_per_testcase/2, end_per_testcase/2,
active_echo/1, passive_echo/1, active_once_echo/1,
slow_active_echo/1, slow_passive_echo/1,
limit_active_echo/1, limit_passive_echo/1,
large_limit_active_echo/1, large_limit_passive_echo/1]).
-define(TPKT_VRSN, 3).
-define(LINE_LENGTH, 1023). % (default value of gen_tcp option 'recbuf') - 1
suite() ->
[{ct_hooks, [ts_install_cth]},
{timetrap, {minutes,1}}].
all() ->
case kernel_test_lib:test_inet_backends() of
true ->
[{group, inet_backend_inet},
{group, inet_backend_socket}];
false ->
[{group, inet_backend_default}]
end.
groups() ->
[{inet_backend_default, [{group, read_ahead}, {group, no_read_ahead}]},
{inet_backend_socket, [{group, read_ahead}, {group, no_read_ahead}]},
{inet_backend_inet, [{group, read_ahead}, {group, no_read_ahead}]},
%%
{read_ahead, [{group, no_delay_send}, {group, delay_send}]},
{no_read_ahead, [{group, no_delay_send}, {group, delay_send}]},
%%
{no_delay_send, testcases()},
{delay_send, testcases()}].
testcases() ->
[active_echo, passive_echo, active_once_echo,
slow_active_echo, slow_passive_echo, limit_active_echo,
limit_passive_echo, large_limit_active_echo,
large_limit_passive_echo].
init_per_suite(Config) ->
Config.
end_per_suite(_Config) ->
ok.
init_per_group(Name, Config) ->
case Name of
inet_backend_default ->
kernel_test_lib:config_inet_backend(Config, default);
inet_backend_socket ->
init_per_group_inet_backend(socket, Config);
inet_backend_inet ->
init_per_group_inet_backend(inet, Config);
%%
no_read_ahead -> [{read_ahead, false} | Config];
delay_send -> [{delay_send, true} | Config];
_ -> Config
end.
init_per_group_inet_backend(Backend, Config) ->
case kernel_test_lib:explicit_inet_backend() of
true ->
%% Contradicting kernel variables - skip group
{skip, "explicit inet backend"};
false ->
kernel_test_lib:config_inet_backend(Config, Backend)
end.
end_per_group(Name, Config) ->
case Name of
no_read_ahead -> lists:keydelete(read_ahead, 1, Config);
delay_send -> lists:keydelete(delay_send, 1, Config);
_ -> Config
end.
init_per_testcase(Name, Config) ->
_ =
case Name of
slow_active_echo -> ct:timetrap({minutes, 5});
slow_passive_echo -> ct:timetrap({minutes, 5});
_ -> ok
end,
Config.
end_per_testcase(_Name, _Config) ->
ok.
sockopts(Config) ->
[Option ||
{Name, _} = Option <- Config,
lists:member(Name, [read_ahead, delay_send])].
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in active mode).
active_echo(Config) when is_list(Config) ->
echo_test(Config, [], fun active_echo/4, [{echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in passive mode).
passive_echo(Config) when is_list(Config) ->
echo_test(
Config, [{active, false}], fun passive_echo/4,
[{echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in active once mode).
active_once_echo(Config) when is_list(Config) ->
echo_test(
Config, [{active, once}], fun active_once_echo/4,
[{echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in active mode).
%% The echo server is a special one that delays between every character.
slow_active_echo(Config) when is_list(Config) ->
echo_test(
Config, [], fun active_echo/4,
[slow_echo, {echo, fun slow_echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to an echo server and receiving them again (socket in passive mode).
%% The echo server is a special one that delays between every character.
slow_passive_echo(Config) when is_list(Config) ->
echo_test(
Config, [{active, false}], fun passive_echo/4,
[slow_echo, {echo, fun slow_echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in active mode)
%% with packet_size limitation.
limit_active_echo(Config) when is_list(Config) ->
echo_test(
Config, [{packet_size, 10}], fun active_echo/4,
[{packet_size, 10}, {echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in passive mode)
%% with packet_size limitation.
limit_passive_echo(Config) when is_list(Config) ->
echo_test(
Config, [{packet_size, 10},{active, false}], fun passive_echo/4,
[{packet_size, 10}, {echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in active mode)
%% with large packet_size limitation.
large_limit_active_echo(Config) when is_list(Config) ->
echo_test(
Config, [{packet_size, 10}], fun active_echo/4,
[{packet_size, (1 bsl 32)-1}, {echo, fun echo_server/0}]).
%% Test sending packets of various sizes and various packet types
%% to the echo port and receiving them again (socket in passive mode)
%% with large packet_size limitation.
large_limit_passive_echo(Config) when is_list(Config) ->
echo_test(
Config, [{packet_size, 10},{active, false}], fun passive_echo/4,
[{packet_size, (1 bsl 32) -1}, {echo, fun echo_server/0}]).
echo_test(Config, SockOpts_0, EchoFun, EchoOpts_0) ->
SockOpts = SockOpts_0 ++ sockopts(Config),
ct:log("SockOpts = ~p.", [SockOpts]),
EchoSrvFun = proplists:get_value(echo, EchoOpts_0),
{ok, EchoPort} = EchoSrvFun(),
EchoOpts = [{echo_port, EchoPort}|EchoOpts_0],
echo_packet(Config, [{packet, 1}|SockOpts], EchoFun, EchoOpts),
echo_packet(Config, [{packet, 2}|SockOpts], EchoFun, EchoOpts),
echo_packet(Config, [{packet, 4}|SockOpts], EchoFun, EchoOpts),
echo_packet(Config, [{packet, sunrm}|SockOpts], EchoFun, EchoOpts),
echo_packet(Config, [{packet, cdr}|SockOpts], EchoFun,
[{type, {cdr, big}}|EchoOpts]),
echo_packet(Config, [{packet, cdr}|SockOpts], EchoFun,
[{type, {cdr, little}}|EchoOpts]),
case lists:keymember(packet_size, 1, SockOpts) of
false ->
%% This is cheating, we should test that packet_size
%% also works for line and http.
echo_packet(
Config, [{packet, line}|SockOpts], EchoFun, EchoOpts),
echo_packet(
Config, [{packet, http}|SockOpts], EchoFun, EchoOpts),
echo_packet(
Config, [{packet, http_bin}|SockOpts], EchoFun, EchoOpts);
true -> ok
end,
echo_packet(Config, [{packet, tpkt}|SockOpts], EchoFun, EchoOpts),
ShortTag = [16#E0],
LongTag = [16#1F, 16#83, 16#27],
echo_packet(Config, [{packet, asn1}|SockOpts], EchoFun,
[{type, {asn1, short, ShortTag}}|EchoOpts]),
echo_packet(Config, [{packet, asn1}|SockOpts], EchoFun,
[{type, {asn1, long, ShortTag}}|EchoOpts]),
echo_packet(Config, [{packet, asn1}|SockOpts], EchoFun,
[{type, {asn1, short, LongTag}}|EchoOpts]),
echo_packet(Config, [{packet, asn1}|SockOpts], EchoFun,
[{type, {asn1, long, LongTag}}|EchoOpts]),
ok.
echo_packet(Config, SockOpts, EchoFun, EchoOpts) ->
Type = case lists:keyfind(type, 1, EchoOpts) of
{_, T} ->
T;
false ->
{_, T} = lists:keyfind(packet, 1, SockOpts),
T
end,
%% Connect to the echo server.
EchoPort = proplists:get_value(echo_port, EchoOpts),
{ok, Echo} =
kernel_test_lib:connect(Config, localhost, EchoPort, SockOpts),
ct:pal("Echo socket: ~w", [Echo]),
SlowEcho = lists:member(slow_echo, EchoOpts),
case Type of
http ->
echo_packet_http(Echo, Type, EchoFun);
http_bin ->
echo_packet_http(Echo, Type, EchoFun);
_ ->
echo_packet0(Echo, Type, EchoFun, SlowEcho, EchoOpts)
end.
echo_packet_http(Echo, Type, EchoFun) ->
lists:foreach(fun(Uri)-> P1 = http_request(Uri),
EchoFun(Echo, Type, P1, http_reply(P1, Type))
end,
http_uri_variants()),
P2 = http_response(),
EchoFun(Echo, Type, P2, http_reply(P2, Type)).
echo_packet0(Echo, Type, EchoFun, SlowEcho, EchoOpts) ->
PacketSize =
case lists:keyfind(packet_size, 1, EchoOpts) of
{_,Sz} when Sz < 10 -> Sz;
{_,_} -> 10;
false -> 0
end,
ct:log("echo_packet0[~w] ~p", [self(), PacketSize]),
%% Echo small packets first.
echo_packet1(Echo, Type, EchoFun, 0),
echo_packet1(Echo, Type, EchoFun, 1),
echo_packet1(Echo, Type, EchoFun, 2),
echo_packet1(Echo, Type, EchoFun, 3),
echo_packet1(Echo, Type, EchoFun, 4),
echo_packet1(Echo, Type, EchoFun, 7),
if PacketSize =/= 0 ->
echo_packet1(Echo, Type, EchoFun,
{PacketSize-1, PacketSize}),
echo_packet1(Echo, Type, EchoFun,
{PacketSize, PacketSize}),
echo_packet1(Echo, Type, EchoFun,
{PacketSize+1, PacketSize});
not SlowEcho -> % Go on with bigger packets if not slow echo server.
echo_packet1(Echo, Type, EchoFun, 10),
echo_packet1(Echo, Type, EchoFun, 13),
echo_packet1(Echo, Type, EchoFun, 126),
echo_packet1(Echo, Type, EchoFun, 127),
echo_packet1(Echo, Type, EchoFun, 128),
echo_packet1(Echo, Type, EchoFun, 255),
echo_packet1(Echo, Type, EchoFun, 256),
echo_packet1(Echo, Type, EchoFun, 1023),
echo_packet1(Echo, Type, EchoFun, 3747),
echo_packet1(Echo, Type, EchoFun, 32767),
echo_packet1(Echo, Type, EchoFun, 32768),
echo_packet1(Echo, Type, EchoFun, 65531),
echo_packet1(Echo, Type, EchoFun, 65535),
echo_packet1(Echo, Type, EchoFun, 65536),
echo_packet1(Echo, Type, EchoFun, 70000),
echo_packet1(Echo, Type, EchoFun, infinite);
true -> ok
end,
PacketSize =:= 0 andalso
begin
%% Switch to raw mode and echo one byte
ok = inet:setopts(Echo, [{packet, raw}, {active, false}]),
ok = gen_tcp:send(Echo, <<"$">>),
case gen_tcp:recv(Echo, 1) of
{ok, <<"$">>} -> ok;
{ok, "$"} -> ok
end
end,
_CloseResult = gen_tcp:close(Echo),
ct:log("echo_packet0[~w] close: ~p", [self(), _CloseResult]),
ok.
echo_packet1(EchoSock, Type, EchoFun, Size) ->
case packet(Size, Type) of
false ->
ok;
Packet ->
ct:log("Type ~p, size ~p, time ~p",
[Type, Size, time()]),
case EchoFun(EchoSock, Type, Packet, [Packet]) of
ok ->
case Size of
{N, Max} when N > Max ->
ct:fail(
{packet_through, {N, Max}});
_ -> ok
end;
{error, emsgsize} ->
case Size of
{N, Max} when N > Max ->
ct:log(" Blocked!");
_ ->
ct:fail(
{packet_blocked, Size})
end;
Error ->
ct:fail(Error)
end
end.
active_echo(Sock, Type, Packet, PacketEchos) ->
ok = gen_tcp:send(Sock, Packet),
active_recv(Sock, Type, PacketEchos).
active_recv(_, _, []) ->
ok;
active_recv(Sock, Type, [PacketEcho|Tail]) ->
Tag = case Type of
http -> http;
http_bin -> http;
_ -> tcp
end,
receive Recv->Recv end,
%%ct:log("Active received: ~p\n",[Recv]),
case Recv of
{Tag, Sock, PacketEcho} ->
active_recv(Sock, Type, Tail);
{Tag, Sock, Bad} ->
ct:log("Packet: ~p", [inet:getopts(Sock, [packet])]),
ct:fail({wrong_data, Bad, PacketEcho});
{tcp_error, Sock, Reason} ->
{error, Reason};
Other ->
ct:log("Packet: ~p", [inet:getopts(Sock, [packet])]),
ct:fail({unexpected_message, Other, {Tag, Sock, PacketEcho}})
end.
passive_echo(Sock, _Type, Packet, PacketEchos) ->
ok = gen_tcp:send(Sock, Packet),
passive_recv(Sock, PacketEchos).
passive_recv(_, []) ->
ok;
passive_recv(Sock, [PacketEcho | Tail]) ->
Recv = gen_tcp:recv(Sock, 0),
%%ct:log("Passive received: ~p\n",[Recv]),
case Recv of
{ok, PacketEcho} ->
passive_recv(Sock, Tail);
{ok, Bad} ->
ct:log("Expected: ~p\nGot: ~p\n",[PacketEcho,Bad]),
ct:fail({wrong_data, Bad, PacketEcho});
{error,PacketEcho} ->
passive_recv(Sock, Tail); % expected error
{error, _}=Error ->
Error;
Other ->
ct:fail({unexpected_message, Other})
end.
active_once_echo(Sock, Type, Packet, PacketEchos) ->
ok = gen_tcp:send(Sock, Packet),
active_once_recv(Sock, Type, PacketEchos).
active_once_recv(_, _, []) ->
ok;
active_once_recv(Sock, Type, [PacketEcho | Tail]) ->
Tag = case Type of
http -> http;
http_bin -> http;
_ -> tcp
end,
receive
{Tag, Sock, PacketEcho} ->
inet:setopts(Sock, [{active, once}]),
active_once_recv(Sock, Type, Tail);
{Tag, Sock, Bad} ->
ct:log("Packet: ~p", [inet:getopts(Sock, [packet])]),
ct:fail({wrong_data, Bad, PacketEcho});
{tcp_error, Sock, Reason} ->
{error, Reason};
Other ->
ct:log("Packet: ~p", [inet:getopts(Sock, [packet])]),
ct:fail({unexpected_message, Other, {Tag, Sock, PacketEcho}})
end.
%%% Building of random packets.
packet(infinite, {asn1, _, Tag}) ->
Tag++[16#80];
packet(infinite, _) ->
false;
packet({Size, _RecvLimit}, Type) ->
packet(Size, Type);
packet(Size, 1) when Size > 255 ->
false;
packet(Size, 2) when Size > 65535 ->
false;
packet(Size, {asn1, _, Tag}) when Size < 128 ->
Tag++[Size|random_packet(Size)];
packet(Size, {asn1, short, Tag}) when Size < 256 ->
Tag++[16#81, Size|random_packet(Size)];
packet(Size, {asn1, short, Tag}) when Size < 65536 ->
Tag++[16#82|put_int16(Size, big, random_packet(Size))];
packet(Size, {asn1, _, Tag}) ->
Tag++[16#84|put_int32(Size, big, random_packet(Size))];
packet(Size, {cdr, Endian}) ->
[$G, $I, $O, $P, % magic
1, 0, % major minor
if Endian == big -> 0; true -> 1 end, % flags: byte order
0 | % message type
put_int32(Size, Endian, random_packet(Size))];
packet(Size, sunrm) ->
put_int32(Size, big, random_packet(Size));
packet(Size, line) when Size > ?LINE_LENGTH ->
false;
packet(Size, line) ->
random_packet(Size, "\n");
packet(Size, tpkt) ->
HeaderSize = 4,
PacketSize = HeaderSize + Size,
if PacketSize < 65536 ->
Header = [?TPKT_VRSN, 0 | put_int16(PacketSize, big)],
HeaderSize = length(Header), % Just to assert cirkular dependency
Header ++ random_packet(Size);
true ->
false
end;
packet(Size, _Type) ->
random_packet(Size).
random_packet(Size) ->
random_packet(Size, "", random_char()).
random_packet(Size, Tail) ->
random_packet(Size, Tail, random_char()).
random_packet(0, Result, _NextChar) ->
Result;
random_packet(Left, Result, NextChar0) ->
NextChar =
if
NextChar0 >= 126 ->
33;
true ->
NextChar0+1
end,
random_packet(Left-1, [NextChar0|Result], NextChar).
random_char() ->
random_char("abcdefghijklmnopqrstuvxyzABCDEFGHIJKLMNOPQRSTUVXYZ0123456789").
random_char(Chars) ->
lists:nth(uniform(length(Chars)), Chars).
uniform(N) ->
rand:uniform(N).
put_int32(X, big, List) ->
[ (X bsr 24) band 16#ff,
(X bsr 16) band 16#ff,
(X bsr 8) band 16#ff,
(X) band 16#ff | List ];
put_int32(X, little, List) ->
[ (X) band 16#ff,
(X bsr 8) band 16#ff,
(X bsr 16) band 16#ff,
(X bsr 24) band 16#ff | List].
put_int16(X, ByteOrder) ->
put_int16(X, ByteOrder, []).
put_int16(X, big, List) ->
[ (X bsr 8) band 16#ff,
(X) band 16#ff | List ];
put_int16(X, little, List) ->
[ (X) band 16#ff,
(X bsr 8) band 16#ff | List ].
%%% A normal echo server, for systems that don't have one.
echo_server() ->
Self = self(),
spawn_link(fun() -> echo_server(Self) end),
receive
{echo_port, Port} ->
{ok, Port}
end.
echo_server(ReplyTo) ->
{ok, S} = gen_tcp:listen(0, [{active, false}, binary]),
{ok, {_, Port}} = inet:sockname(S),
ReplyTo ! {echo_port, Port},
echo_server_loop(S).
echo_server_loop(Sock) ->
{ok, E} = gen_tcp:accept(Sock),
Self = self(),
spawn_link(fun() -> echoer(E, Self) end),
echo_server_loop(Sock).
echoer(Sock, Parent) ->
unlink(Parent),
echoer_loop(Sock).
echoer_loop(Sock) ->
case gen_tcp:recv(Sock, 0) of
{ok, Data} ->
ok = gen_tcp:send(Sock, Data),
echoer_loop(Sock);
{error, closed} ->
ok
end.
%%% A "slow" echo server, which will echo data with a short delay
%%% between each character.
slow_echo_server() ->
Self = self(),
spawn_link(fun() -> slow_echo_server(Self) end),
receive
{echo_port, Port} ->
{ok, Port}
end.
slow_echo_server(ReplyTo) ->
{ok, S} = gen_tcp:listen(0, [{active, false}, {nodelay, true}]),
{ok, {_, Port}} = inet:sockname(S),
ReplyTo ! {echo_port, Port},
slow_echo_server_loop(S).
slow_echo_server_loop(Sock) ->
{ok, E} = gen_tcp:accept(Sock),
spawn_link(fun() -> slow_echoer(E, self()) end),
slow_echo_server_loop(Sock).
slow_echoer(Sock, Parent) ->
unlink(Parent),
slow_echoer_loop(Sock).
slow_echoer_loop(Sock) ->
case gen_tcp:recv(Sock, 0) of
{ok, Data} ->
slow_send(Sock, Data),
slow_echoer_loop(Sock);
{error, closed} ->
ok
end.
slow_send(Sock, [C|Rest]) ->
ok = gen_tcp:send(Sock, [C]),
receive after 1 ->
slow_send(Sock, Rest)
end;
slow_send(_, []) ->
ok.
http_request(Uri) ->
list_to_binary(["POST ", Uri, <<" HTTP/1.1\r\n"
"Connection: close\r\n"
"Host: localhost:8000\r\n"
"User-Agent: perl post\r\n"
"Content-Length: 4\r\n"
"Content-Type: text/xml; charset=utf-8\r\n"
"Other-Field: with some text\r\n"
"Multi-Line: Once upon a time in a land far far away,\r\n"
" there lived a princess imprisoned in the highest tower\r\n"
" of the most haunted castle.\r\n"
"Invalid line without a colon\r\n"
"\r\n">>]).
http_uri_variants() ->
["*",
"http://tools.ietf.org/html/rfcX3986",
"http://otp.ericsson.se:8000/product/internal/",
"https://example.com:8042/over/there?name=ferret#nose",
"ftp://cnn.example.com&story=breaking_news@10.0.0.1/top_story.htm",
"/some/absolute/path",
"something_else", "something_else"].
http_response() ->
<<"HTTP/1.0 404 Object Not Found\r\n"
"Server: inets/4.7.16\r\n"
"Date: Fri, 04 Jul 2008 17:16:22 GMT\r\n"
"Content-Type: text/html\r\n"
"Content-Length: 207\r\n"
"\r\n">>.
http_reply(Bin, Type) ->
{ok, Line, Rest} = erlang:decode_packet(Type,Bin,[]),
HType = case Type of
http -> httph;
http_bin -> httph_bin
end,
Ret = lists:reverse(http_reply(Rest,[Line],HType)),
ct:log("HTTP: ~p\n",[Ret]),
Ret.
http_reply(<<>>, Acc, _) ->
Acc;
http_reply(Bin, Acc, HType) ->
{ok, Line, Rest} = erlang:decode_packet(HType,Bin,[]),
http_reply(Rest, [Line | Acc], HType).
|