This is a Java 11 command line tool to test your Roguelike rooms.
Make sure your room is running and all required dependencies run as well, e.g. inventory. Let's assume you use the sample room http://localhost:8004/my_room. To check that the room fulfils the API run:
mvn compile exec:java -Dexec.args="http://localhost:8004/my_room"
or
java -jar target/rogue-room-tester-1.0-SNAPSHOT-jar-with-dependencies.jar http://localhost:8004/my_room
The application is published on docker hub. Run it:
podman run --network=host "codecop/rogue-room-tester" <room URL like http://localhost:8004/my_room>
For Mac replace the network with host.containers.internal or host.docker.internal IP address (depending on your installed software), e.g.
podman run codecop/rogue-room-tester http://host.containers.internal:8004/my_room
docker run codecop/rogue-room-tester http://host.docker.internal:8004/my_room
Content type
Image
Digest
sha256:45f775f86…
Size
127.5 MB
Last updated
25 days ago
docker pull codecop/rogue-room-tester