This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial node support TCK implementation (#503)
- Loading branch information
Showing
17 changed files
with
7,041 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/node_modules/ | ||
/proto/ | ||
/user-function.desc |
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 @@ | ||
engine-strict=true |
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 @@ | ||
v12 |
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,87 @@ | ||
/* | ||
* Copyright 2019 Lightbend Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
const EventSourced = require("cloudstate").EventSourced; | ||
|
||
const tckModel = new EventSourced( | ||
["proto/eventsourced.proto"], | ||
"cloudstate.tck.model.EventSourcedTckModel", | ||
{ | ||
persistenceId: "event-sourced-tck-model", | ||
snapshotEvery: 5 | ||
} | ||
); | ||
|
||
const Response = tckModel.lookupType("cloudstate.tck.model.Response") | ||
const Persisted = tckModel.lookupType("cloudstate.tck.model.Persisted") | ||
|
||
tckModel.initial = entityId => Persisted.create({ value: "" }); | ||
|
||
tckModel.behavior = state => { | ||
return { | ||
commandHandlers: { | ||
Process: process | ||
}, | ||
eventHandlers: { | ||
Persisted: persisted | ||
} | ||
}; | ||
}; | ||
|
||
function process(request, state, context) { | ||
request.actions.forEach(action => { | ||
if (action.emit) { | ||
const event = Persisted.create({ value: action.emit.value }); | ||
context.emit(event); | ||
// FIXME: events are not emitted immediately, so we also update the function local state directly for responses | ||
state = persisted(event, state); | ||
} else if (action.forward) { | ||
context.thenForward(two.service.methods.Call, { id: action.forward.id }); | ||
} else if (action.effect) { | ||
context.effect(two.service.methods.Call, { id: action.effect.id }, action.effect.synchronous); | ||
} else if (action.fail) { | ||
context.fail(action.fail.message); | ||
} | ||
}); | ||
return Response.create(state.value ? { message: state.value } : {}); | ||
} | ||
|
||
function persisted(event, state) { | ||
state.value += event.value; | ||
return state; | ||
} | ||
|
||
const two = new EventSourced( | ||
["proto/eventsourced.proto"], | ||
"cloudstate.tck.model.EventSourcedTwo" | ||
); | ||
|
||
two.initial = entityId => Persisted.create({ value: "" }); | ||
|
||
two.behavior = state => { | ||
return { | ||
commandHandlers: { | ||
Call: call | ||
} | ||
}; | ||
}; | ||
|
||
function call(request) { | ||
return Response.create({}); | ||
} | ||
|
||
module.exports.tckModel = tckModel; | ||
module.exports.two = two; |
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,22 @@ | ||
/* | ||
* Copyright 2019 Lightbend Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
const CloudState = require("cloudstate").CloudState; | ||
const server = new CloudState(); | ||
const eventSourced = require("./eventsourced.js"); | ||
server.addEntity(eventSourced.tckModel); | ||
server.addEntity(eventSourced.two); | ||
server.start(); |
Oops, something went wrong.