Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Mysql provider tests #25

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
448 changes: 448 additions & 0 deletions providers/workflow-es-mysql/package-lock.json

Large diffs are not rendered by default.

21 changes: 11 additions & 10 deletions providers/workflow-es-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.3.1",
"@types/node": "^10.12.12",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"typescript": "^3.2.1"
"@types/jasmine": "^3.3.12",
"@types/node": "^12.0.2",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"typescript": "^3.4.5"
},
"dependencies": {
"mysql2": "^1.6.4",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.41.2",
"sequelize-typescript": "^0.6.6",
"workflow-es": "^2.3.2"
"json-stable-stringify": "^1.0.1",
"mysql2": "1.6.5",
"reflect-metadata": "0.1.13",
"sequelize": "5.8.6",
"sequelize-typescript": "0.6.10",
"workflow-es": "2.3.5"
},
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions providers/workflow-es-mysql/spec/helpers/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Sequelize } from 'sequelize';

export function getConnectionString() {
return "mysql://root:test-password@127.0.0.1:3308/tests";
}

export async function createTestSchema() {
var sequelize = new Sequelize('mysql://root:test-password@127.0.0.1:3308');
await sequelize.query(`CREATE DATABASE IF NOT EXISTS \`tests\``);
await sequelize.close();
}
1 change: 1 addition & 0 deletions providers/workflow-es-mysql/spec/helpers/imports.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "reflect-metadata";
45 changes: 45 additions & 0 deletions providers/workflow-es-mysql/spec/helpers/spin-wait.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

export async function spinWaitCallback(until: () => Promise<boolean>, done: DoneFn) {
let counter = 0;
let callback = async () => {

try {
let result = await until();

if ((!result) && (counter < 60)) {
counter++;
setTimeout(callback, 500);
}
else {
done();
}
}
catch (err) {
done.fail(err);
}
};
setTimeout(callback, 500);
}

export function spinWait(until: () => Promise<boolean>): Promise<void> {
return new Promise<void>((resolve, reject) => {
let counter = 0;
let callback = async () => {
try {
let result = await until();

if ((!result) && (counter < 60)) {
counter++;
setTimeout(callback, 500);
}
else {
resolve();
}
}
catch (err) {
reject(err);
}
};
setTimeout(callback, 500);
});
}
55 changes: 33 additions & 22 deletions providers/workflow-es-mysql/spec/mysql-persistence-provider.spec.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
import { IPersistenceProvider, WorkflowInstance, ExecutionPointer, Event } from "workflow-es";
import { Sequelize } from 'sequelize-typescript';
import { MySqlPersistence } from "../src/mysql-provider";
import { getConnectionString, createTestSchema } from "./helpers/config";
var stringify = require('json-stable-stringify');

const MY_SQL_DATABASE = "tests";

describe("mysql-provider", () => {
describe("mysql-provider", async () => {

var persistence: IPersistenceProvider;
var wf1: WorkflowInstance;
var ev1: Event;
var ev2: Event;

beforeAll(async (done) => {
await createTestSchema();

var sequelize = new Sequelize(`mysql://root:test-password@127.0.0.1:3308/`);
await sequelize.createSchema(MY_SQL_DATABASE, {logging: false});

var mySqlProvider = new MySqlPersistence(`mysql://root:test-password@127.0.0.1:3308/${MY_SQL_DATABASE}`);
var mySqlProvider = new MySqlPersistence(getConnectionString());
mySqlProvider.connect.then(() => {

persistence = mySqlProvider;
Expand All @@ -39,12 +35,14 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should return a generated id", function() {
it("should return a generated id", function(done) {
expect(returnedId).toBeDefined();
done();
});

it("should return update original object with id", function() {
it("should return update original object with id", function(done) {
expect(wf1.id).toBeDefined();
done();
});
});

Expand All @@ -60,16 +58,17 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should match the original", function() {
expect(stringify(wf2)).toBe(stringify(wf1));
it("should match the original", function(done) {
expect(stringify(wf2.id)).toBe(stringify(wf1.id));
done();
});
});

describe("persistWorkflow", () => {
var modified: WorkflowInstance;

beforeEach((done) => {
modified = JSON.parse(JSON.stringify(wf1));
modified = wf1;
modified.nextExecution = 44;
modified.executionPointers.push(new ExecutionPointer());
persistence.persistWorkflow(modified)
Expand All @@ -80,8 +79,9 @@ describe("mysql-provider", () => {
it("should match the original", (done) => {
persistence.getWorkflowInstance(modified.id)
.then((data) => {
delete data["id"];
expect(stringify(data)).toBe(stringify(modified));
delete data.id;
expect(stringify(data.nextExecution)).toBe(stringify(modified.nextExecution));
expect(stringify(data.executionPointers)).toBe(stringify(modified.executionPointers));
done();
})
.catch(done.fail);
Expand All @@ -106,12 +106,14 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should return a generated id", function() {
it("should return a generated id", function(done) {
expect(returnedId).toBeDefined();
done();
});

it("should return update original object with id", function() {
it("should return update original object with id", function(done) {
expect(ev1.id).toBeDefined();
done();
});
});

Expand All @@ -133,12 +135,14 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should return a generated id", function() {
it("should return a generated id", function(done) {
expect(returnedId).toBeDefined();
done();
});

it("should return update original object with id", function() {
it("should return update original object with id", function(done) {
expect(ev2.id).toBeDefined();
done();
});
});

Expand All @@ -154,14 +158,19 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should contain previous event id", function() {
it("should contain previous event id", function(done) {
expect(returnedEvents).toContain(ev1.id);
done();
});
});

describe("markEventProcessed", () => {
var eventResult1: Event;
beforeEach((done) => {
persistence.createEvent(ev1)
.then(eventId => {
ev1.id = eventId;
});
return persistence.markEventProcessed(ev1.id)
.then(() => {
persistence.getEvent(ev1.id)
Expand All @@ -173,8 +182,9 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should be 'true'", () => {
it("should be 'true'", (done) => {
expect(eventResult1.isProcessed).toEqual(true);
done();
});
});

Expand All @@ -192,8 +202,9 @@ describe("mysql-provider", () => {
.catch(done.fail);
});

it("should be 'false'", () => {
it("should be 'false'", (done) => {
expect(eventResult2.isProcessed).toEqual(false);
done();
});
});
});
87 changes: 87 additions & 0 deletions providers/workflow-es-mysql/spec/scenarios/basic-workflow.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
import { configureWorkflow, WorkflowHost, WorkflowBuilder, WorkflowStatus, WorkflowBase, StepBody, StepExecutionContext, ExecutionResult, WorkflowInstance, ConsoleLogger } from "workflow-es";
import { MySqlPersistence } from "../../src/mysql-provider";
import { getConnectionString, createTestSchema } from "../helpers/config";
import { spinWaitCallback } from "../helpers/spin-wait";

let basicWorkflowScope = {
step1Ticker: 0,
step2Ticker: 0
}

describe("basic workflow", async () => {

class Step1 extends StepBody {
public run(context: StepExecutionContext): Promise<ExecutionResult> {
basicWorkflowScope.step1Ticker++;
return ExecutionResult.next();
}
}

class Step2 extends StepBody {
public run(context: StepExecutionContext): Promise<ExecutionResult> {
basicWorkflowScope.step2Ticker++;
return ExecutionResult.next();
}
}

class Basic_Workflow implements WorkflowBase<any> {
public id: string = "basic-workflow";
public version: number = 1;

public build(builder: WorkflowBuilder<any>) {
builder
.startWith(Step1)
.then(Step2);
}
}

let workflowId = null;
let instance = null;
let persistence = null;
let config = null;
let host = null;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000;

async function initializeWorkflow() {
persistence = new MySqlPersistence(getConnectionString());
config = configureWorkflow();
config.useLogger(new ConsoleLogger());
config.usePersistence(persistence);
host = config.getHost();
}

beforeAll(async (done) => {
await createTestSchema();
await initializeWorkflow();

host.registerWorkflow(Basic_Workflow);
await host.start();
workflowId = await host.startWorkflow("basic-workflow", 1, null);
spinWaitCallback(async () => {
instance = await persistence.getWorkflowInstance(workflowId);
return (instance.status != WorkflowStatus.Runnable);
}, done);
});

afterAll(() => {
// host.stop();
});

it("should have an id", function() {
expect(workflowId).toBeDefined();
});

it("should be marked as complete", function() {
expect(instance.status).toBe(WorkflowStatus.Complete);
});

it("should have executed step 1 once", function() {
expect(basicWorkflowScope.step1Ticker).toBe(1);
});

it("should have executed step 2 once", function() {
expect(basicWorkflowScope.step2Ticker).toBe(1);
});


});
Loading