Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.95 KB

README.md

File metadata and controls

65 lines (47 loc) · 1.95 KB

feedback-workshop

Workshop for NewCrafts Conference to play with ArchUnit and enforce your architecture using Java Tests

Instructions

This project has a few branches to play and work with arch unit, the main idea is to refactor each chaos branch using the available architecture tests. You can always add more tests or refactor the application in order to pass a test.

Activities in chaos branchs

This section list different activities for the repository. Even when the code is not perfect it pretends to be treated as a real life project that was created by a lot of people collaborating together and now need to improve the architecture and organization of the project before adding a new domain.

add-test-chaos

This branch does not have any tests, helps the user to start with arch unit basic rules

refactor-organization-chaos

This branch does have the test, but also is unorganized and to solve the mistery you need to place the files in the correct folders to pass the tests

...more branches to come...

Set up your environment

To work in this project you'll need Java SDK 11 and gradle to configure it. You can use https://sdkman.io/ to configure java sdk and gradle

install gradle

sdk install gradle 6.4

For VSCode development

Extensions to work with Java (optional)

This are the extentions that I have in my VSCode

  • Debugger for Java
  • Extension Pack for Java
  • Gradle for Java
  • Language Support for Java(TM) by Red Hat
  • Project Manager for Java
  • Test Runner for Java

Running the application locally

Start the application locally

./gradlew bootrun

Available endpoints

POST /feedback: Submit feedback
GET /feedback: Get all the provided feedback
GET /feedback/{id}: Get feedback by ID
GET /feedback/givenBy/{givenBy}: Get feedback by givenBy parameter

Request body

{
  "id": {{$randomInt}},
  "givenBy": "Rose",
  "feedback": "Should study more architecture"
}