Summary:
This project is about creating your own IRC server.
You will use an actual IRC client to connect to your server and test it.
Internet is ruled by solid standards protocols that allow connected computers to interact
with each other.
It’s always a good thing to know.
Version: 8
makemkdir -p build \
cd build \
cmake -DCMAKE_VERBOSE_MAKEFILE=ON .. \
make
docker compose up -d ft_ircmake testdocker compose -f docker-compose.loadgen.yaml up -dThe e2e tests are located in the tests/e2e directory.
The test cases jsons are located in the same directory.
docker compose up -d \
python3 tests/e2e/irc_e2e.py --org localhost:6667 --alt localhost:6668 $TESTCASE_JSONS ... \