We want to build a service which will take a request.json
and:
- Process the file and create two separate collections for
Fruits
andVegetables
- Each collection has methods like
add()
,remove()
,list()
; - Units have to be stored as grams;
- As a bonus you might consider giving option to decide which units are returned (kilograms/grams);
- As a bonus you might consider how to implement
search()
method collections;
You have two ways of moving on:
- You call the Service from PHPUnit test like it's done in dummy test (just run
bin/phpunit
from the console)
or
- You create a Controller which will be calling the service with a json payload
- Keep KISS, DRY, YAGNI, SOLID principles in mind
- Timebox your work - we expect that you would spend between 3 and 4 hours.
- Your code should be tested
- Please upload your code to a public git repository (i.e. GitHub, Gitlab)
Optional. Just here if you want to run it isolated.
docker pull tturkowski/fruits-and-vegetables
docker build -t tturkowski/fruits-and-vegetables -f docker/Dockerfile .
docker run -it -w/app -v$(pwd):/app tturkowski/fruits-and-vegetables sh
docker run -it -w/app -v$(pwd):/app tturkowski/fruits-and-vegetables bin/phpunit
docker run -it -w/app -v$(pwd):/app -p8484:8484 tturkowski/fruits-and-vegetables php -S 0.0.0.0:8484 -t /app/public
# Open http://127.0.0.1:8484 in your browser