This repository was archived by the owner on Feb 9, 2022. It is now read-only.
File tree 7 files changed +45
-5
lines changed
7 files changed +45
-5
lines changed Original file line number Diff line number Diff line change 4
4
The integration test repo contains a Stackable repository with services
5
5
used for the integration tests.
6
6
7
+ == Overview
7
8
The following services are available:
8
9
9
- * test-service: a Shell script which just sleeps.
10
+ * link:noop-service/README.adoc[noop-service]:
11
+ Performs no operation and just sleeps.
12
+ * link:echo-service/README.adoc[echo-service]:
13
+ Prints the content of an environment variable to standard output.
10
14
11
15
== Contributing
12
16
The integration tests and the integration test repo are developed as open
Original file line number Diff line number Diff line change
1
+ = echo-service
2
+
3
+ The echo-service prints the content of the environment variable
4
+ `LOG_OUTPUT` to standard output and falls asleep.
5
+
6
+ A new line is appended so the content in `LOG_OUTPUT` should not end with
7
+ a new line character.
8
+
9
+ The capacity of environment variables depends on the system but it is safe
10
+ to store up to 120 kB in `LOG_OUTPUT` .
11
+
12
+ == Escape sequences
13
+
14
+ The following escape sequences are recognized:
15
+
16
+ * `\n` new line
17
+ * `\\` backslash
18
+
19
+ == Example
20
+
21
+ $ LOG_OUTPUT='first line\nbackslash: \\\nheart: ♥' start.sh
22
+ first line
23
+ backslash: \
24
+ heart: ♥
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 1" ,
3
3
"packages" : {
4
- "test -service" : [
4
+ "noop -service" : [
5
5
{
6
- "version" : " 0.1 .0" ,
7
- "path" : " test -service/test -service-0.1 .0.tar.gz" ,
6
+ "version" : " 1.0 .0" ,
7
+ "path" : " noop -service/noop -service-1.0 .0.tar.gz" ,
8
8
"hashes" : {
9
- "SHA512" : " a5b68dce3e48cd70b0f4b2d6e6371c9de9e2db81e1e546a03bbe6fac7020336bddd7d91091c29865ee6610fbbfca02fca921ccc3766c4a26e518456380d75140"
9
+ "SHA512" : " 1cba9a5cad05e0aa66be9185b1ed24d40b52cdd21a7638a825f7bc69b1b221250a10cd8c4b5d50faa94e79045b0eeee9b76cbc2094cc47e80084e87caead98ed"
10
+ }
11
+ }
12
+ ],
13
+ "echo-service" : [
14
+ {
15
+ "version" : " 1.0.0" ,
16
+ "path" : " echo-service/echo-service-1.0.0.tar.gz" ,
17
+ "hashes" : {
18
+ "SHA512" : " 0cd616400e83a0cbe62774bf0ccc9902503049951d187c135f7f3bd7a57e4adf2581736892543d701b12c379435e828778a9f20757e3a81d81a2cee1c03737c7"
10
19
}
11
20
}
12
21
]
Original file line number Diff line number Diff line change
1
+ = noop-service
2
+
3
+ This service performs no operation and just sleeps.
You can’t perform that action at this time.
0 commit comments