-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
REMReM should accept both a CONTEXT and a CAUSE links in the same eve…
…nt. (#126) * REMReM should accept both a CONTEXT and a CAUSE links in the same event. * changed discription message in CHANGELOG.md file. * Add testcase for the changes.
- Loading branch information
1 parent
3e72c6b
commit 653ef63
Showing
5 changed files
with
73 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/test/resources/output/TriggeredwithCauseAndContext.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"meta": { | ||
"id": "2dd2d13f-e3e5-4fac-80e3-ef4537985009", | ||
"type": "EiffelActivityTriggeredEvent", | ||
"version": "4.0.0", | ||
"time": 1554389013770, | ||
"tags": ["product_development","product_feature1"], | ||
"source": { | ||
"domainId": "eiffeltest", | ||
"host": "localhost", | ||
"name": "LOCALHOST", | ||
"serializer": "pkg:maven/com.github.eiffel-community/[email protected]", | ||
"uri": "https://localhost:8080/jenkins/job" | ||
} | ||
}, | ||
"data": { | ||
"name": "ActivityTrigger", | ||
"categories": [ | ||
"First", | ||
"second" | ||
], | ||
"triggers": [ | ||
{ | ||
"type": "MANUAL", | ||
"description": "Started by user anonymous" | ||
}, | ||
{ | ||
"type": "SOURCE_CHANGE", | ||
"description": "Change" | ||
} | ||
], | ||
"customData": [ | ||
{ | ||
"key": "EIFFERVERSION", | ||
"value": "eiffel2.0" | ||
}, | ||
{ | ||
"key": "FLOWCONTEXT", | ||
"value": "master" | ||
} | ||
] | ||
}, | ||
"links": [ | ||
{ | ||
"type": "CAUSE", | ||
"target": "e269b37d-17a1-4a10-aafb-c108735ee51f" | ||
}, { | ||
"type": "CONTEXT", | ||
"target": "e269b37d-17a1-4a10-aafb-c108735ee52e" | ||
} | ||
] | ||
} |