-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1370 from pguyot/w47/http-server-fixes
Fix issues in http_server * Fix a bug where http_server would fail to send a reply with integers. * Fix another bug where http_server crashed with badmatch if connection was closed, including because of previous bug. * Also fix socket_driver to return `{gen_tcp, closed}` when socket is closed on Linux instead of `{gen_tcp, {recv, 104}}` Fixes #1366 These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
- Loading branch information
Showing
6 changed files
with
76 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
% | ||
% This file is part of AtomVM. | ||
% | ||
% Copyright 2024 Paul Guyot <[email protected]> | ||
% | ||
% 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. | ||
% | ||
% SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later | ||
% | ||
|
||
-module(test_http_server). | ||
-export([test/0, handle_req/3]). | ||
|
||
test() -> | ||
ok = test_chunk(). | ||
|
||
test_chunk() -> | ||
Router = [ | ||
{"*", ?MODULE, []} | ||
], | ||
Pid = http_server:start_server(8080, Router), | ||
{ok, Conn} = connect_client(5), | ||
{ok, Conn2, _Ref} = ahttp_client:request(Conn, <<"GET">>, <<"/">>, [], undefined), | ||
ok = loop_passive(Conn2, []), | ||
exit(Pid, kill), | ||
ok. | ||
|
||
connect_client(Retries) when Retries > 0 -> | ||
ConnectResult = ahttp_client:connect(http, "localhost", 8080, [{active, false}]), | ||
case ConnectResult of | ||
{ok, Conn} -> | ||
{ok, Conn}; | ||
{error, _} = ConnectError -> | ||
io:format("Request failed: ~p~n", [ConnectError]), | ||
connect_client(Retries - 1) | ||
end. | ||
|
||
handle_req("GET", [], Conn) -> | ||
Body = [34, <<"hello">>], | ||
http_server:reply(200, Body, Conn). | ||
|
||
% http_server doesn't send Content-Length, so ahttp_client doesn't know when it's done and reports closed connection | ||
loop_passive(Conn, AccResp) -> | ||
case ahttp_client:recv(Conn, 0) of | ||
{ok, UpdatedConn, Responses} -> | ||
loop_passive(UpdatedConn, lists:reverse(Responses, AccResp)); | ||
{error, {gen_tcp, closed}} -> | ||
[{data, _DataRef, <<"\"hello">>}, {status, _StatusRef, 200}] = AccResp, | ||
ok | ||
end. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters