├── .eslintrc ├── .gitignore ├── CHANGES.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── DC01.1.txt ├── LICENSE.txt ├── MAINTAINERS.txt ├── README.md ├── index.js ├── lib ├── context.js ├── flow.js ├── observer.js ├── sandbox.js └── task │ ├── activity-log.js │ ├── if.js │ ├── invoke.js │ ├── operation-switch.js │ ├── switch.js │ └── throw.js ├── non_ibm_license.txt ├── notices.txt ├── package.json └── test ├── test-context.js ├── test-error.js ├── test-error ├── mod │ ├── append-code.js │ ├── call.js │ └── run-flow.js ├── testBasic.yaml ├── testErrorInErrorHandler.yaml ├── testMainErrorRecoveredByGEH.yaml ├── testMainErrorRecoveredByLEH.yaml ├── testNestedCallPolicies.yaml ├── testReThrowErrorInHandler.yaml ├── testSubflowErrorRecover.yaml ├── testTwoConsecutiveCallPolicies.yaml ├── testUncaughtError.yaml └── testUncaughtErrorInSubflow3.yaml ├── test-flow.js ├── test-flow ├── bad-policy.js ├── flow-stop.yaml ├── mypolicy.js ├── no-param-resolving.js ├── no-param-resolving.yaml ├── set-code.js └── simple.yaml ├── test-if.js ├── test-if ├── ifPolicyError.yaml ├── ifPolicyTestingVerb.yaml └── mod │ ├── write-err.js │ └── write-msg.js ├── test-invoke.js ├── test-invoke ├── invokeBadPort.yaml ├── invokeBasicAuth.yaml ├── invokeReverseProxy.yaml └── invokeTimeout.yaml ├── test-operation-switch.js ├── test-operation-switch └── switchPolicyTesting.yaml ├── test-subFlow.js ├── test-subFlow ├── add-sub-flow.js ├── add-sub-flow2.js ├── add-subflow-with-error.yaml ├── add-subflow-with-error2.yaml ├── add-subflow-with-error3.yaml ├── add-subflow-with-error4.yaml ├── add-subflow.yaml └── set-secret-code.js ├── test-subscribe.js ├── test-subscribe ├── mytask.js ├── subscribe-counter.js ├── subscribe-error-multiple.yaml ├── subscribe-error-multiple2.yaml ├── subscribe-error-multiple3.yaml ├── subscribe-error-multiple4.yaml ├── subscribe-error-multiple5.yaml ├── subscribe-error-no-throw.yaml ├── subscribe-error.yaml ├── subscribe-error2.yaml ├── subscribe-finish-but-throw.yaml ├── subscribe-finish-multiple.yaml ├── subscribe-finish-multiple2.yaml ├── subscribe-finish-multiple3.yaml ├── subscribe-finish-multiple4.yaml ├── subscribe-finish-multiple5.yaml ├── subscribe-finish.yaml ├── subscribe-finish2.yaml ├── subscribe-multiple-events.yaml ├── subscribe-multiple-events2.yaml ├── subscribe-multiple-events3.yaml ├── subscribe-multiple-events4.yaml ├── subscribe-post-but-no-post.yaml ├── subscribe-post-multiple.yaml ├── subscribe-post-multiple2.yaml ├── subscribe-post-multiple3.yaml ├── subscribe-post-multiple4.yaml ├── subscribe-post.yaml ├── subscribe-post2.yaml ├── subscribe-pre-but-no-pre.yaml ├── subscribe-pre-multiple.yaml ├── subscribe-pre-multiple2.yaml ├── subscribe-pre-multiple3.yaml ├── subscribe-pre-multiple4.yaml ├── subscribe-pre.yaml ├── subscribe-pre2.yaml ├── subscribe-start.yaml ├── subscribe-throw-counter.js ├── subscribe-throw.js ├── subscribe.js ├── subunsub-counter.js ├── unsubscribe-multiple.yaml ├── unsubscribe-multiple2.yaml ├── unsubscribe-multiple3.yaml ├── unsubscribe.yaml ├── unsubscribe2.yaml └── unsubscribe3.yaml ├── test-switch.js ├── test-switch ├── mod │ ├── add-msg.js │ └── write-err.js └── switchPolicyTesting.yaml └── util ├── apim-param-resolver.js └── start-gateway.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DC01.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/DC01.1.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAINTAINERS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/MAINTAINERS.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/index.js -------------------------------------------------------------------------------- /lib/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/context.js -------------------------------------------------------------------------------- /lib/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/flow.js -------------------------------------------------------------------------------- /lib/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/observer.js -------------------------------------------------------------------------------- /lib/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/sandbox.js -------------------------------------------------------------------------------- /lib/task/activity-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/activity-log.js -------------------------------------------------------------------------------- /lib/task/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/if.js -------------------------------------------------------------------------------- /lib/task/invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/invoke.js -------------------------------------------------------------------------------- /lib/task/operation-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/operation-switch.js -------------------------------------------------------------------------------- /lib/task/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/switch.js -------------------------------------------------------------------------------- /lib/task/throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/lib/task/throw.js -------------------------------------------------------------------------------- /non_ibm_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/non_ibm_license.txt -------------------------------------------------------------------------------- /notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/notices.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/package.json -------------------------------------------------------------------------------- /test/test-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-context.js -------------------------------------------------------------------------------- /test/test-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error.js -------------------------------------------------------------------------------- /test/test-error/mod/append-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/mod/append-code.js -------------------------------------------------------------------------------- /test/test-error/mod/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/mod/call.js -------------------------------------------------------------------------------- /test/test-error/mod/run-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/mod/run-flow.js -------------------------------------------------------------------------------- /test/test-error/testBasic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testBasic.yaml -------------------------------------------------------------------------------- /test/test-error/testErrorInErrorHandler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testErrorInErrorHandler.yaml -------------------------------------------------------------------------------- /test/test-error/testMainErrorRecoveredByGEH.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testMainErrorRecoveredByGEH.yaml -------------------------------------------------------------------------------- /test/test-error/testMainErrorRecoveredByLEH.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testMainErrorRecoveredByLEH.yaml -------------------------------------------------------------------------------- /test/test-error/testNestedCallPolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testNestedCallPolicies.yaml -------------------------------------------------------------------------------- /test/test-error/testReThrowErrorInHandler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testReThrowErrorInHandler.yaml -------------------------------------------------------------------------------- /test/test-error/testSubflowErrorRecover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testSubflowErrorRecover.yaml -------------------------------------------------------------------------------- /test/test-error/testTwoConsecutiveCallPolicies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testTwoConsecutiveCallPolicies.yaml -------------------------------------------------------------------------------- /test/test-error/testUncaughtError.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testUncaughtError.yaml -------------------------------------------------------------------------------- /test/test-error/testUncaughtErrorInSubflow3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-error/testUncaughtErrorInSubflow3.yaml -------------------------------------------------------------------------------- /test/test-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow.js -------------------------------------------------------------------------------- /test/test-flow/bad-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/bad-policy.js -------------------------------------------------------------------------------- /test/test-flow/flow-stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/flow-stop.yaml -------------------------------------------------------------------------------- /test/test-flow/mypolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/mypolicy.js -------------------------------------------------------------------------------- /test/test-flow/no-param-resolving.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/no-param-resolving.js -------------------------------------------------------------------------------- /test/test-flow/no-param-resolving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/no-param-resolving.yaml -------------------------------------------------------------------------------- /test/test-flow/set-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/set-code.js -------------------------------------------------------------------------------- /test/test-flow/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-flow/simple.yaml -------------------------------------------------------------------------------- /test/test-if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-if.js -------------------------------------------------------------------------------- /test/test-if/ifPolicyError.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-if/ifPolicyError.yaml -------------------------------------------------------------------------------- /test/test-if/ifPolicyTestingVerb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-if/ifPolicyTestingVerb.yaml -------------------------------------------------------------------------------- /test/test-if/mod/write-err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-if/mod/write-err.js -------------------------------------------------------------------------------- /test/test-if/mod/write-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-if/mod/write-msg.js -------------------------------------------------------------------------------- /test/test-invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-invoke.js -------------------------------------------------------------------------------- /test/test-invoke/invokeBadPort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-invoke/invokeBadPort.yaml -------------------------------------------------------------------------------- /test/test-invoke/invokeBasicAuth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-invoke/invokeBasicAuth.yaml -------------------------------------------------------------------------------- /test/test-invoke/invokeReverseProxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-invoke/invokeReverseProxy.yaml -------------------------------------------------------------------------------- /test/test-invoke/invokeTimeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-invoke/invokeTimeout.yaml -------------------------------------------------------------------------------- /test/test-operation-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-operation-switch.js -------------------------------------------------------------------------------- /test/test-operation-switch/switchPolicyTesting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-operation-switch/switchPolicyTesting.yaml -------------------------------------------------------------------------------- /test/test-subFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow.js -------------------------------------------------------------------------------- /test/test-subFlow/add-sub-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-sub-flow.js -------------------------------------------------------------------------------- /test/test-subFlow/add-sub-flow2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-sub-flow2.js -------------------------------------------------------------------------------- /test/test-subFlow/add-subflow-with-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-subflow-with-error.yaml -------------------------------------------------------------------------------- /test/test-subFlow/add-subflow-with-error2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-subflow-with-error2.yaml -------------------------------------------------------------------------------- /test/test-subFlow/add-subflow-with-error3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-subflow-with-error3.yaml -------------------------------------------------------------------------------- /test/test-subFlow/add-subflow-with-error4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-subflow-with-error4.yaml -------------------------------------------------------------------------------- /test/test-subFlow/add-subflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/add-subflow.yaml -------------------------------------------------------------------------------- /test/test-subFlow/set-secret-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subFlow/set-secret-code.js -------------------------------------------------------------------------------- /test/test-subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe.js -------------------------------------------------------------------------------- /test/test-subscribe/mytask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/mytask.js -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-counter.js -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-multiple.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-multiple2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-multiple2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-multiple3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-multiple3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-multiple4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-multiple4.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-multiple5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-multiple5.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error-no-throw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error-no-throw.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-error2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-error2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-but-throw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-but-throw.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-multiple.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-multiple2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-multiple2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-multiple3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-multiple3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-multiple4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-multiple4.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish-multiple5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish-multiple5.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-finish2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-finish2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-multiple-events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-multiple-events.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-multiple-events2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-multiple-events2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-multiple-events3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-multiple-events3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-multiple-events4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-multiple-events4.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post-but-no-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post-but-no-post.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post-multiple.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post-multiple2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post-multiple2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post-multiple3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post-multiple3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post-multiple4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post-multiple4.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-post2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-post2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre-but-no-pre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre-but-no-pre.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre-multiple.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre-multiple2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre-multiple2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre-multiple3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre-multiple3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre-multiple4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre-multiple4.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-pre2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-pre2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-start.yaml -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-throw-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-throw-counter.js -------------------------------------------------------------------------------- /test/test-subscribe/subscribe-throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe-throw.js -------------------------------------------------------------------------------- /test/test-subscribe/subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subscribe.js -------------------------------------------------------------------------------- /test/test-subscribe/subunsub-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/subunsub-counter.js -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe-multiple.yaml -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe-multiple2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe-multiple2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe-multiple3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe-multiple3.yaml -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe.yaml -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe2.yaml -------------------------------------------------------------------------------- /test/test-subscribe/unsubscribe3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-subscribe/unsubscribe3.yaml -------------------------------------------------------------------------------- /test/test-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-switch.js -------------------------------------------------------------------------------- /test/test-switch/mod/add-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-switch/mod/add-msg.js -------------------------------------------------------------------------------- /test/test-switch/mod/write-err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-switch/mod/write-err.js -------------------------------------------------------------------------------- /test/test-switch/switchPolicyTesting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/test-switch/switchPolicyTesting.yaml -------------------------------------------------------------------------------- /test/util/apim-param-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/util/apim-param-resolver.js -------------------------------------------------------------------------------- /test/util/start-gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/flow-engine/HEAD/test/util/start-gateway.js --------------------------------------------------------------------------------