A fun way to learn about Camunda and win a small prize. The coding challenge is designed for the Camunda Code Studio. Results may be submitted from September 21-29, 2021.
- How to win
- Prerequisites
- The challenge
- Evaluation of your results
- Run the application (process) - test if your process works
- Fork this repo.
- Complete the challenges. You can do both challenges or just the first one. There are different levels and prizes for your performance.
- Send us a link to your fork, your address, and your 👕 size to community@camunda.com with the subject: "Camunda Code Studio Coding Challenge" so we can mail you your prize!
- Make sure you have Java installed and you use a version below 15. Check your version of Java in the terminal with the following command:
java -version
- Install Camunda Modeler on your machine.
- Fork the project and open it in your IDE.
🎉 You are ready to hack!
Get the right chronological order of the movie Pulp Fiction. Take the folllowing steps:
You will see a process similar to this one:
- Below the connected process with sequence flows, gateways, and events, note the tasks that are unconnected. The tasks form the story of the movie Pulp Fiction. Drag and drop the events in the correct chronological order on the sequence flow.
📌 Note: Make sure to save your model :)
To get the correct story plot, you must change some of the variables in the task:
Script Task "Royal and Cheese conversation":
Ensure the variable lastTravel
is set to Europe
. To do so, select the script task and open it in Camunda Modeler on the right-hand side via the Property panel. Inspect the inline script.
Service Task: "Prepare To Go Out With Mia":
This service task is implemented as a delegate. Go into your IDE and look in the path: src/main/java/camunda.example.workflow
for the PrepareToGoOutDelegate
class. Change the class the variable drug
to heroin
.
- Challenge 1: You got the correct or close to correct order. The BPMN tasks are connected on the sequence flow:
We will send you a small prize. 🎁 - Challenge 1 + 2: You got the correct or close to correct order and changed the variables:
We will send you a medium prize 🎁 🎁 - Challenge 1 + 2 without any mistakes. It is possible to start an instance of your process and route your process through the end without runtime errors:
We will send you a large prize 🎁 🎁 🎁
Running the application and starting an instance of the process will give you a hint if you got the right order. If the order is correct, your instance will run through. If the order is not correct, you may potentially get runtime errors due to missing variables.
If you want to try out your solution and run it, start the the application class in the project:
Right click on the class and select: Run 'Application'
Once the application has started, type in your browser:
http://localhost:8080/camunda/app/welcome/default/#!/login
Log in with the credentials:
username: demo
password: demo
Choose the Tasklist application:
Observe your Terminal in your IDE and see what will be printed. You should be able to see the story of Pulp Fiction printed in your Terminal based on how you placed the tasks. Hint: Maybe you can identify already with that help if your order is correct.
You may get a runtime error due to a missing variable or an expression that cannot be resolved. For example, this may happen if you start the process from Tasklist or if you complete a user task and may look similar to the following:
If this is the case, the order of your process might not be right. Try to fix it and see where the variable that you need for a certain task is initiated.
📌 Note: There are better ways to handle errors in Camunda and normally they are not displayed at the user frontend. If you want to learn more about it, read more about transactions and error handling in Camunda, or watch this tutorial.
In the top right corner of Camunda's webapplications is a house symbol that allows you to switch between the web applications:
Go to Cockpit. To observe your process instances, select running instances.
(Note: If your process instance has ended already, you won't see it anymore. A running process instance is marked with a blue token.)
If your process instance stands on a user task, navigate back to Tasklist. Here, you should see an available task:
- Claim the task and complete it.
- Look at the form. Do you still remember what happens with the golden watch in Pulp Fiction, and if Butch takes it directly with him while escaping?
- Complete the task.