juho05 / sdssh-gartentester

A testing tool and simulator for the SDSSH Challenge 2023.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SDSSH Challenge 2023 - Garten Aufräumen - Testing Tool

A testing tool and simulator for the SDSSH Challenge 2023.

Installation

  1. Download the executable from the releases page.
  2. Rename the file to gartentester.exe (Windows) or gartentester (macOS/Linux)
  3. On macOS/Linux: make the file executable:
chmod +x gartentester

Usage

The following instructions are for macOS and Linux. You might have to tweak the syntax a bit to work on Windows (replace ./ with .\, append .exe to executables, …).

Generate a random garden

./gartentester -generate output.txt

Set size

# generate a garden with width 64 and height 32
./gartentester -generate -size 64x32 output.txt

# generate a garden with a random size
./gartentester -generate -size random output.txt

Set area count

# generate a garden with 8 areas
./gartentester -generate -area-count 8 output.txt

# generate a garden with a random area count
./gartentester -generate -area-count random output.txt

Test a command sequence

Pipe the output of your program into the testing tool

./my-program | ./gartentester example-garden.txt

Read commands from a file

./gartentester -input commands.txt example-garden.txt

Disable animation (faster)

./gartentester -no-delay -input commands.txt example-garden.txt

Enable manual stepping

./gartentester -step -input commands.txt example-garden.txt

Generate with deterministic seed

./gartentester -generate -seed 42 garden.txt

Output test result as JSON object

./gartentester -generate -json garden.txt

Building

Prerequisites

git clone https://github.com/juho05/sdssh-gartentester
cd sdssh-gartentester

For your current computer

go build

For other computers

On a UNIX-like system (e.g. macOS/Linux):

./build.sh

License

Copyright (c) 2023 Julian Hofmann

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

A testing tool and simulator for the SDSSH Challenge 2023.

License:GNU General Public License v3.0


Languages

Language:Go 93.6%Language:Shell 6.4%