| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "Name": "simpleStatusMatchingStateMachine",
- "Comment": "带Task执行状态匹配的测试状态机定义",
- "StartState": "FirstState",
- "Version": "0.0.1",
- "States": {
- "FirstState": {
- "Type": "ServiceTask",
- "ServiceName": "demoService",
- "ServiceMethod": "foo",
- "Next": "ReturnNullState",
- "Input": [
- {
- "fooInput": "$.[a]"
- }
- ],
- "Output": {
- "fooResult": "$.#root"
- }
- },
- "ReturnNullState": {
- "Type": "ServiceTask",
- "ServiceName": "demoService",
- "ServiceMethod": "foo",
- "Next": "ChoiceState",
- "Status": {
- "$Exception{io.seata.saga.engine.mock.DemoException}": "UN",
- "$Exception{java.lang.Exception}": "FA",
- "#root != null && #root.size() > 0": "SU",
- "#root == null || #root.size() == 0": "FA"
- }
- },
- "ChoiceState":{
- "Type": "Choice",
- "Choices":[
- {
- "Expression":"[a] == 1",
- "Next":"SecondState"
- },
- {
- "Expression":"[a] == 2",
- "Next":"ThirdState"
- }
- ],
- "Default":"Fail"
- },
- "SecondState": {
- "Type": "ServiceTask",
- "ServiceName": "demoService",
- "ServiceMethod": "bar",
- "Input": [
- {
- "barInput": "$.[fooResult]",
- "throwException": "$.[barThrowException]"
- }
- ],
- "Output": {
- "barResult": "$.#root"
- },
- "Status": {
- "$Exception{io.seata.saga.engine.mock.DemoException}": "UN",
- "$Exception{java.lang.Exception}": "FA",
- "#root != null && #root.size() > 0": "SU",
- "#root == null || #root.size() == 0": "FA"
- },
- "Catch": [
- {
- "Exceptions": [
- "io.seata.saga.engine.mock.DemoException"
- ],
- "Next": "Fail"
- }
- ],
- "Next": "Succeed"
- },
- "ThirdState": {
- "Type": "ServiceTask",
- "ServiceName": "demoService",
- "ServiceMethod": "foo",
- "Input": [
- {
- "fooInput": "$.[fooResult]"
- }
- ],
- "Output": {
- "fooResult": "$.#root"
- },
- "Next": "Succeed"
- },
- "Succeed": {
- "Type":"Succeed"
- },
- "Fail": {
- "Type":"Fail",
- "ErrorCode": "NOT_FOUND",
- "Message": "not found"
- }
- }
- }
|