Last active
May 4, 2018 17:32
-
-
Save icebob/bbd6f3dd20e25a3528d7a759f7175a04 to your computer and use it in GitHub Desktop.
Test Moleculer service with mocking
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
const MyService = { | |
name: "my", | |
actions: { | |
getImportantData() { | |
return ctx.call("other.get") | |
.then(res => { | |
return { | |
id: 1, | |
data: res | |
}; | |
}); | |
} | |
} | |
} | |
describe("Test service", () => { | |
const broker = new ServiceBroker(); | |
// Tested service | |
broker.createService(MyService); | |
const getAction = jest.fn((ctx) => { | |
return [1,2,3]; | |
}); | |
// Mock dependent service | |
broker.createService({ | |
name: "other", | |
actions: { | |
get: getAction | |
} | |
}); | |
it("should call 'other.get' and wrap the result", () => { | |
return broker.call("my.getImportantData") | |
.then(res => { | |
expect(res).toEqual({ | |
id: 1, | |
data: [1,2,3] | |
}); | |
expect(getAction).toHaveBeenCalledTimes(1); | |
}) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment