Skip to content

Commit 245c222

Browse files
committed
Enable running Camel JBang via the exec service
This resolves issue #200
1 parent c1f1d96 commit 245c222

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ test-tools:
3939
wanaku tools add --host $(API_ENDPOINT) -n "dog-facts" --description "Retrieve random facts about dogs" --uri "https://dogapi.dog/api/v2/facts?limit={count or 1}" --type http --property "count:int,The count of facts to retrieve" --required count
4040
wanaku tools add --host $(API_ENDPOINT) -n "camel-rider-quote-generator" --description "Generate a random quote from a Camel rider" --uri "file://$(mkfile_dir)/samples/routes/camel-route/hello-quote.camel.yaml" --type camel-yaml --property "wanaku_body:string,the data to be passed to the route"
4141
wanaku tools add --host $(API_ENDPOINT) -n "tavily-search" --description "Search on the internet using Tavily" --uri "tavily://search" --type tavily --property "wanaku_body:string,The search terms" --property "maxResults:int,The maxResults is the expected number of results to be found if the search request were made" --required "wanaku_body"
42+
wanaku tools add --host $(API_ENDPOINT) -n "laptop-order" --description "Issue a new laptop order" --uri "$(HOME)/.jbang/bin/camel run --max-messages=1 $(mkfile_dir)/samples/routes/camel-route/camel-jbang-quote.camel.yaml" --type exec
4243

4344
test-targets:
4445
wanaku targets tools link --host $(API_ENDPOINT) --service=http --target=$(HOST):9000
@@ -51,6 +52,7 @@ clean-test-tools:
5152
wanaku tools remove --name "dog-facts"
5253
wanaku tools remove --name "camel-rider-quote-generator"
5354
wanaku tools remove --name "tavily-search"
55+
wanaku tools remove --name "laptop-order"
5456

5557
clean-test-resources:
5658
wanaku resources remove --name "sample-file"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- route:
2+
id: route-3104
3+
from:
4+
id: from-4035
5+
uri: timer
6+
parameters:
7+
fixedRate: true
8+
repeatCount: "1"
9+
timerName: start
10+
steps:
11+
- setBody:
12+
expression:
13+
simple:
14+
expression: '{"number": "12354", "text": "Laptop order 12354 created
15+
successfully"}'
16+
- log:
17+
id: log-2526
18+
message: ${body}

services/tools/wanaku-routing-exec-service/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Write the description of the tool here
44

5+
Sample run for any tool:
6+
57
```shell
68
wanaku tools add -n "sample-exec" --description "Lists the content of a directory." --uri "/bin/ls {parameter.value('directory')}" --type exec --property "argument:string,The directory to list files" --required "directory"
79
```
10+
11+
To run Camel JBang:
12+
13+
```shell
14+
wanaku tools add -n "camel-jbang" --description "Issue a new laptop order" --uri "${HOME}/.jbang/bin/camel run --max-messages=1 ${HOME}/code/java/wanaku/samples/routes/camel-route/camel-jbang-quote.camel.yaml" --type exec
15+
```

tests/basic-test/basic-test.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ async def main():
6060
"dog-facts": "Please give me 3 dog facts",
6161
"meow-facts": "Please give me 2 cat facts",
6262
"camel-rider-quote-generator": "Please give me a random quote from the Camel rider. Extract whatever text you receive from it.",
63-
# "tavily-search": "Please search on the web, using Tavily, about Apache Spark"
63+
# "tavily-search": "Please search on the web, using Tavily, about Apache Spark",
64+
"laptop-order": "I need a new laptop. Please issue an order for a new one. If successful, provide me the order number",
6465
}
6566

6667
participants = [tester_assistant]

0 commit comments

Comments
 (0)