Merge branch 'master' of git.forge.epita.fr:p/epita-ing-assistants-acu/ppex3-2028/epita-ing-assistants-acu-ppex3-2028-guillem.george
Tout simplement pcq je suis trop con, un putain d'abruti fini, une merde croulant sous le poids de sa propre incompétence
This commit is contained in:
commit
221e801307
5 changed files with 43 additions and 13 deletions
1
httpd/.gitignore
vendored
1
httpd/.gitignore
vendored
|
|
@ -7,3 +7,4 @@
|
|||
*.core
|
||||
httpd
|
||||
__pycache__
|
||||
env/
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../utils/string/string.h"
|
||||
#include "bits/getopt_ext.h"
|
||||
// #include "../utils/string/string.h"
|
||||
// #include "bits/getopt_ext.h"
|
||||
|
||||
#define ARG_VALID 0
|
||||
#define ARG_INVALID 1
|
||||
|
|
@ -180,6 +180,19 @@ static void print_arg_error(int err, char **argv, struct option options[],
|
|||
}
|
||||
}
|
||||
|
||||
// static void apply_default_values(struct config *cfg)
|
||||
// {
|
||||
// // Default file
|
||||
// if (cfg->servers->default_file == NULL)
|
||||
// {
|
||||
// char *default_df = DEFAULT_DF;
|
||||
// cfg->servers->default_file =
|
||||
// malloc((strlen(default_df) + 1) * sizeof(char));
|
||||
// // TODO handle error
|
||||
// strcpy(cfg->servers->default_file, default_df);
|
||||
// }
|
||||
// }
|
||||
|
||||
// == Main functions
|
||||
|
||||
struct config *parse_configuration(int argc, char *argv[])
|
||||
|
|
@ -227,10 +240,12 @@ struct config *parse_configuration(int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
// apply_default_values(config);
|
||||
|
||||
// Check config validity
|
||||
if (check_config(config) != 0)
|
||||
{
|
||||
printf("%s: Missing mandatory flags, cannot continue.", argv[0]);
|
||||
printf("%s: Missing mandatory flags, cannot continue.\n", argv[0]);
|
||||
config_destroy(config);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
|
||||
// Default values
|
||||
#define DEFAULT_DF "index.html"
|
||||
|
||||
/*
|
||||
** @brief Enum daemon
|
||||
** NO_OPTION if the '--daemon' option is not given
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
// #include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
|
@ -245,7 +245,10 @@ void handle_request(int client_fd, char *client_ip)
|
|||
// Parse request
|
||||
struct http_request *req = parse_request(str);
|
||||
if (req == NULL)
|
||||
{
|
||||
free(str);
|
||||
return;
|
||||
}
|
||||
char *method = get_http_method(req->method);
|
||||
char *target = string_to_charptr(req->target);
|
||||
print_log_request(method, target, client_ip);
|
||||
|
|
@ -255,12 +258,20 @@ void handle_request(int client_fd, char *client_ip)
|
|||
// Generate response
|
||||
struct http_response *resp = generate_response(req);
|
||||
if (resp == NULL)
|
||||
{
|
||||
free(str);
|
||||
free(req);
|
||||
return;
|
||||
}
|
||||
|
||||
// Format response to string
|
||||
struct string *res = format_response(resp);
|
||||
if (res == NULL)
|
||||
{
|
||||
free(str);
|
||||
free(req);
|
||||
return;
|
||||
}
|
||||
|
||||
// Send response
|
||||
ssize_t nsent;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ executable = "./httpd"
|
|||
|
||||
def spawn_httpd(stdout_filename, args=[]):
|
||||
with open(stdout_filename,"w") as f:
|
||||
httpd_proc = sp.Popen([executable,"--pid_file","/tmp/HTTPd.pid","--ip",host,"--port", port, "--root_dir","./test_root_dir/","--server_name","httpd"] if args == [] else [executable] + args, stdout=f,stderr=sp.PIPE,bufsize=0)
|
||||
httpd_proc = sp.Popen([executable,"--pid_file","/tmp/HTTPd.pid","--ip",host,"--port", port, "--root_dir","test_root_dir/","--server_name","httpd"] if args == [] else [executable] + args, stdout=f,stderr=sp.PIPE,bufsize=0)
|
||||
time.sleep(0.2)
|
||||
|
||||
return httpd_proc
|
||||
|
|
@ -21,7 +21,7 @@ def kill_httpd(proc):
|
|||
#proc.send_signal(sp.SIGINT)
|
||||
proc.kill()
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_bad_config():
|
||||
proc = spawn_httpd("out.log", ["hello","world"])
|
||||
proc.wait(1)
|
||||
|
|
@ -30,7 +30,7 @@ def test_bad_config():
|
|||
finally:
|
||||
kill_httpd(proc)
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_get_index():
|
||||
proc = spawn_httpd("out.log")
|
||||
req = requests.get(f"http://{host}:{port}/index.html")
|
||||
|
|
@ -41,7 +41,7 @@ def test_get_index():
|
|||
finally:
|
||||
kill_httpd(proc)
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_get_default():
|
||||
proc = spawn_httpd("out.log")
|
||||
req = requests.get(f"http://{host}:{port}/")
|
||||
|
|
@ -52,13 +52,13 @@ def test_get_default():
|
|||
finally:
|
||||
kill_httpd(proc)
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_no_file():
|
||||
proc = spawn_httpd("out.log")
|
||||
req = requests.get(f"http://{host}:{port}/notindex.html")
|
||||
assert req.status_code == 404
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_bad_request():
|
||||
proc = spawn_httpd("out.log")
|
||||
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
|
||||
|
|
@ -76,7 +76,7 @@ def test_bad_request():
|
|||
finally:
|
||||
kill_httpd(proc)
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_invalid_method():
|
||||
proc = spawn_httpd("out.log")
|
||||
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
|
||||
|
|
@ -95,7 +95,7 @@ def test_invalid_method():
|
|||
kill_httpd(proc)
|
||||
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_invalid_version():
|
||||
proc = spawn_httpd("out.log")
|
||||
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
|
||||
|
|
@ -113,7 +113,7 @@ def test_invalid_version():
|
|||
finally:
|
||||
kill_httpd(proc)
|
||||
|
||||
@pytest.mark.timeout(2)
|
||||
# @pytest.mark.timeout(2)
|
||||
def test_bad_request():
|
||||
proc = spawn_httpd("out.log")
|
||||
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue