|
8 ay önce | |
---|---|---|
data | 1 yıl önce | |
docs | 8 ay önce | |
mocka | 1 yıl önce | |
tests | 1 yıl önce | |
.dockerignore | 1 yıl önce | |
.editorconfig | 1 yıl önce | |
.gitignore | 1 yıl önce | |
.gitlab-ci.yml | 1 yıl önce | |
Dockerfile | 1 yıl önce | |
HISTORY.rst | 1 yıl önce | |
LICENSE | 1 yıl önce | |
README.md | 1 yıl önce | |
pyproject.toml | 1 yıl önce | |
requirements.txt | 1 yıl önce | |
tasks.py | 8 ay önce |
Mock Activity Endpoint. Automated activity enactments must be HTTP calls where users must specify the endpoint in the FTG's Transformation, and the timeout in the PM's Activity. As an activity gets triggered it requires knowledge of the control and artefact flow. This endpoint expects this context in the form of a json body following a highly specific format.
{
"ctrl": "<name of control port going into the activity>",
"input": {
"<name of artefact port going into the activity>": {
"type": "<inline|reference>",
"content": <the contents of the artefact going into this port in case it's inlined>,
"name": "<the file name>",
"encoding": "<the encoding of said artefact>"
}
}
}
Anything between <
and >
is to be filled in by the requester.
Only inline
and reference
type artefacts are supported at the moment.
Which one you should use depends on the activity.
A good rule to follow is: "If the filetype is text-like, use inline.".
Barring any errors, mocka will retaliate with a json response in the same gist.
{
"ctrl": "<the name of the control port which should be taken out of the activity>",
"output": {
"<the name of the artefact which got generated>": {
"type": "<inline|reference>",
"content": <the contents of the generated artefact>,
"name": "<the file name>",
"encoding": "<the encoding of said artefact>"
}
}
}
This response can contain multiple artefacts. It can even be an error stating a timeout or broken input. The expectation is that the Workflow Enactment Engine will deal with the fallout.
NOTE: A call to store the artefact in the backend will be needed when the type of the output artefact is set to reference.
NOTE: Be sure to have ´libmagic´ installed. It is used to figure out the encoding of the artefacts being sent on their journey.
Drop into a shell and sing the magic incantation python3 -m mocka
.
This will leave you haunted with an endpoint lingering on port 7999
by default.
From this point onward you're on your own and can perform any request you want.
There are multiple mock routers.
The notch
and octiva
routers require external software to be installed.
OpenCV in the case octiva
and open-modelica in the case of notch
.
Installing the Python opencv-python
package will the trick for the first one.
Good luck on the modelica one.
It would be nice if this endpoint would support gradual progress updates. This would also require the Workflow Enactment Engine to do the same.
The storage backend location is hardcoded. It might be useful not to do this.
Not all the possible options are available when sending data. An example of this is an image. It should always be sent as a reference.