🍔 Added files

This commit is contained in:
2021-05-08 23:20:56 -07:00
commit 94bd9bd1a6
24 changed files with 23736 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
"use strict";
import { Errors, ServiceBroker} from "moleculer";
import TestService from "../../../services/greeter.service";
describe("Test 'greeter' service", () => {
const broker = new ServiceBroker({ logger: false });
broker.createService(TestService);
beforeAll(() => broker.start());
afterAll(() => broker.stop());
describe("Test 'greeter.hello' action", () => {
it("should return with 'Hello Moleculer'", async () => {
const res = await broker.call("greeter.hello");
expect(res).toBe("Hello Moleculer");
});
});
describe("Test 'greeter.welcome' action", () => {
it("should return with 'Welcome'", async () => {
const res = await broker.call("greeter.welcome", { name: "Adam" });
expect(res).toBe("Welcome, Adam");
});
it("should reject an ValidationError", async () => {
expect.assertions(1);
try {
await broker.call("greeter.welcome");
} catch (err) {
expect(err).toBeInstanceOf(Errors.ValidationError);
}
});
});
});

View File

@@ -0,0 +1,180 @@
"use strict";
import { Context, Errors, ServiceBroker } from "moleculer";
import TestService from "../../../services/products.service";
describe("Test 'products' service", () => {
describe("Test actions", () => {
const broker = new ServiceBroker({ logger: false });
const service = broker.createService(TestService);
jest.spyOn(service.adapter, "updateById");
jest.spyOn(service, "transformDocuments");
jest.spyOn(service, "entityChanged");
beforeAll(() => broker.start());
afterAll(() => broker.stop());
const record = {
_id: "123",
name: "Awesome thing",
price: 999,
quantity: 25,
createdAt: Date.now(),
};
describe("Test 'products.increaseQuantity'", () => {
it("should call the adapter updateById method & transform result", async () => {
service.adapter.updateById.mockImplementation(async () => record);
service.transformDocuments.mockClear();
service.entityChanged.mockClear();
const res = await broker.call("products.increaseQuantity", {
id: "123",
value: 10,
});
expect(res).toEqual({
_id: "123",
name: "Awesome thing",
price: 999,
quantity: 25,
});
expect(service.adapter.updateById).toBeCalledTimes(1);
expect(service.adapter.updateById).toBeCalledWith("123", { $inc: { quantity: 10 } } );
expect(service.transformDocuments).toBeCalledTimes(1);
expect(service.transformDocuments).toBeCalledWith(expect.any(Context), { id: "123", value: 10 }, record);
expect(service.entityChanged).toBeCalledTimes(1);
expect(service.entityChanged).toBeCalledWith("updated", { _id: "123", name: "Awesome thing", price: 999, quantity: 25 }, expect.any(Context));
});
});
describe("Test 'products.decreaseQuantity'", () => {
it("should call the adapter updateById method & transform result", async () => {
service.adapter.updateById.mockClear();
service.transformDocuments.mockClear();
service.entityChanged.mockClear();
const res = await broker.call("products.decreaseQuantity", {
id: "123",
value: 10,
});
expect(res).toEqual({
_id: "123",
name: "Awesome thing",
price: 999,
quantity: 25,
});
expect(service.adapter.updateById).toBeCalledTimes(1);
expect(service.adapter.updateById).toBeCalledWith("123", { $inc: { quantity: -10 } } );
expect(service.transformDocuments).toBeCalledTimes(1);
expect(service.transformDocuments).toBeCalledWith(expect.any(Context), { id: "123", value: 10 }, record);
expect(service.entityChanged).toBeCalledTimes(1);
expect(service.entityChanged).toBeCalledWith("updated", { _id: "123", name: "Awesome thing", price: 999, quantity: 25 }, expect.any(Context));
});
it("should throw error if params is not valid", async () => {
service.adapter.updateById.mockClear();
service.transformDocuments.mockClear();
service.entityChanged.mockClear();
expect.assertions(2);
try {
await broker.call("products.decreaseQuantity", {
id: "123",
value: -5,
});
} catch (err) {
expect(err).toBeInstanceOf(Errors.ValidationError);
expect(err.data).toEqual([{
action: "products.decreaseQuantity",
actual: -5,
field: "value",
message: "The 'value' field must be a positive number.",
nodeID: broker.nodeID,
type: "numberPositive",
}]);
}
});
});
});
describe("Test methods", () => {
const broker = new ServiceBroker({ logger: false });
const service = broker.createService(TestService);
jest.spyOn(service.adapter, "insertMany");
jest.spyOn(service, "seedDB");
beforeAll(() => broker.start());
afterAll(() => broker.stop());
describe("Test 'seedDB'", () => {
it("should be called after service started & DB connected", async () => {
expect(service.seedDB).toBeCalledTimes(1);
expect(service.seedDB).toBeCalledWith();
});
it("should insert 3 documents", async () => {
expect(service.adapter.insertMany).toBeCalledTimes(1);
expect(service.adapter.insertMany).toBeCalledWith([
{ name: "Samsung Galaxy S10 Plus", quantity: 10, price: 704 },
{ name: "iPhone 11 Pro", quantity: 25, price: 999 },
{ name: "Huawei P30 Pro", quantity: 15, price: 679 },
]);
});
});
});
describe("Test hooks", () => {
const broker = new ServiceBroker({ logger: false });
const createActionFn = jest.fn();
// @ts-ignore
broker.createService(TestService, {
actions: {
create: {
handler: createActionFn,
},
},
});
beforeAll(() => broker.start());
afterAll(() => broker.stop());
describe("Test before 'create' hook", () => {
it("should add quantity with zero", async () => {
await broker.call("products.create", {
id: "111",
name: "Test product",
price: 100,
});
expect(createActionFn).toBeCalledTimes(1);
expect(createActionFn.mock.calls[0][0].params).toEqual({
id: "111",
name: "Test product",
price: 100,
quantity: 0,
});
});
});
});
});