0.6.0 • Published 2 years ago

@andyln/mof v0.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Mock Orchestration Framework (Mof) (TypeScript / JavaScript)

GitHub npm (scoped) typedoc

The TypeScript (and JavaScript) library implementing the Mock Orchestration Framework (Mof). Used in tests to reduce complex logic and boilerplate code in overall codebase.

Looking for the Java library, click here: https://github.com/NguyenAndrew/mof-java

(Install Instructions, Usage, and FAQ below)

Can reduce hours and days of writing unit tests into minutes!

Mof orchestrates all the mocks used within a method, allowing you to only write setup and verification code relevant for each unit test.

  • Q: Why Mof? A: Without it, each unit test needs to maintain the state and verification of its own mocks, and may become brittle when there are multiple units tests for a method. In other words, mock orchestration helps prevent initial and ongoing tech debt within unit tests.

Mof is compatible with both TDD and non-TDD approaches. This library helps augment the testing process, while letting the user choose "when" and "how often" to test.

Simple Programming Paradigm (Explaining how Mof works with Simple Curves and Non-Simple Curves)

For testing methods and creating new business logic, Mof helps encourage writing business logic using the Simple Programming Paradigm: Using Simple Curves over Non-Simple Curves.

Examples of Simple Curves:

A -> B -> C

A -> B -> C -> D -> E

A -> B -> C -> A (Note: A Simple Curve that starts and ends with the same service is also called a Simple Closed Curve)

Example of Non-Simple Curves:

A -> B -> C -> B -> D -> E

A -> B -> C -> D -> E -> F -> ... -> X -> B -> Y -> Z

A -> B -> C -> B -> ... -> B -> C

A -> B -> C -> D -> C -> B -> A (Note: A Non-Simple Curve that starts and ends with the same service is also called a Non-Simple Closed Curve)

Simple Curves are recommended in most cases over Non-Simple Curves, because it is faster to understand and work with code when services are used in order one-by-one compared to when service usage is intertwined (both in business logic and in tests).

If the method you are testing happens to be a Non-Simple Curve, you can Refactor using sample suggestions:

  1. A -> B -> C -> B -> D -> E can be converted to A -> N -> D -> E (where N internally calls B -> C -> B).
  2. A -> B -> C -> D -> E -> F -> ... -> X -> B -> Y -> Z can be coverted to A -> N -> Y -> Z (where N internally calls B -> ... -> B)
  3. A -> B -> C -> B -> ... -> B -> C can be coverted to A -> N (where N internally calls B -> C)
  4. A -> B -> C -> D -> C -> B -> A can be converted in the following ways:
    1. A -> N -> A (where N internally calls B -> C, D -> C, B as separate method calls). Useful if you want to create stricter boundaries between service layers, at the cost of creating more methods.
    2. A -> N -> D -> C -> B -> A (where N internally calls B -> C -> D). Useful if you want to reduce amount of methods, at the cost of using services between multiple service layers.

How to Install

Run the following command in your terminal

npm install --save-dev @andyln/mof

This library is on npm: https://www.npmjs.com/package/@andyln/mof

Example Usages

Creating Mof

// Filename: microwave.test.ts
// ... Make imports and jest.mock(...) calls here

const timer = jest.mocked(Timer);             // Works with Object mocks (from jest)
const motor = jest.mocked(Motor.prototype));  // Works with Class Mocks (from jest)
const magnetron = mock<Magnetron>();          // Works with Interface mocks (from jest-mock-extended)

const mof = new Mof.Builder()
    .add(
        timer,
        () => timer.makeNoise.mockReturnValue(SAMPLE_TIMER_OUTPUT), // Sync Example
        () => {
            expect(timer.makeNoise).toBeCalledTimes(1);
            expect(timer.makeNoise).nthCalledWith(1, SAMPLE_TIMER_INPUT);
        }
    )
    .add(
        motor,
        () => motor.spinTurntable.mockResolvedValue(SAMPLE_SPINNING_TURNTABLE), // Async Example
        () => {
            expect(timer.makeNoise).toBeCalledTimes(1);
            expect(timer.makeNoise).nthCalledWith(1, SAMPLE_MOTOR_INPUT);
        }
    )
    .add(
        magnetron,
        () => magnetron.heatFood.mockResolvedValue(SAMPLE_COOKED_FOOD),
        () => {
            expect(magnetron.heatFood).toBeCalledTimes(1);
            expect(magnetron.heatFood).nthCalledWith(1, SAMPLE_UNCOOKED_FOOD);
        }
    )
    .enableVerifyNoInteractions((mock) => expect(mock).not.toHaveBeenCalled())
    .build();

Unit Testing - Base Success Case

// ...

test('success', async () => {
    // Given (Setup data)
    const expected: Food = SAMPLE_HOT_FOOD;

    // Given (Setup processors)
    mof.when(ALL);

    // When (Run the thing that you want to test)
    const actual: Food = await microwave.heatFood(SAMPLE_COLD_FOOD, SAMPLE_SECONDS);

    // Then (Asserting what you want to be true, is actually true)
    expect(actual).toEqual(expected);

    // Verify (Asserting the processors are called in the way you want)
    mof.verify(ALL);
});

Unit Testing - An Exception Case

// ...

test('whenMotorFails_ThenThrowAnException', async () => {
    // Given (Setup data)
    // No data to setup

    // Given (Setup processors)
    mof.whenBefore(motor);
    motor.spinTurntable.mockResolvedValue(new Error());

    // When (Run the thing that you want to test)
    // Then (Asserting what you want to be true, is actually true)
    await expect(microwave.heatFood(SAMPLE_COLD_FOOD, SAMPLE_SECONDS)).rejects.toThrow(SAMPLE_ERROR_MESSAGE);

    // Verify (Asserting the processors are called in the way you want)
    mof.verifyThrough(motor);
    mof.verifyNoInteractions(REMAINING);
});

TypeDoc documentation can be found here: https://nguyenandrew.github.io/mof-typescript

FAQ

Q: What problem(s) does this library solve.

A: This library solves the problem of delivering production code faster. By using an explicit when/verify structure it helps solve problems 3-6 from the Unit Testing Guidelines.


Q: Why should I use this dependency instead of making my own private methods to setup mocks?

A: Private methods can help abstract method call over mocks (such as abstracting whens and verifies), but doesn't help coordinate how your tests interacts with these mocks (which can be a major time sink). This library solves this problem.


Q: Won't this dependency create an additional maintance cost on my project?

A: This library is MIT licensed and deployed out to npm. The source code is fully available and is fully unit tested to help provide developer confidence. Also, this library is easy to seperate and remove, as mentioned later in the FAQ.


Q: Wont this cause confusion with developers that are not familiar on how to use this library?

A: While there may be additional costs upfront to learn this library, it will save much time when creating new features to your code. This depedency has been shown to save many hours on business production code.


Q: I don't believe it is a good practice to couple a default set of verifies with whens. Doesn't this seem like an anti-pattern?

A: Your test code is already doing this coupling implicity. This dependency defines this structure explicitly, through the construction of the Mof object(s), and takes advantage of this defined structure to achieve testing intelligence capabilities.


Q: What are these "testing intelligence capabilities"?

A: Intelligence capabilities include:

  • Encouraging code to become more straightforward through the Simple Programming paradigm
  • Avoiding under and overmocking through the usage of a framework (Mock Orchestration Framework)
  • Reusable code by reducing the amount of one-off private methods, and only needing to create the whens and verifies for a specific test.

Q: Does this library support TDD?

A: Yes. You can use this library using both TDD, and not TDD. After learning the library, it should make both TDD and non-TDD faster in the short term and long term.


Q: Should I made one Mof per class, or one Mof per method-under-test?

A: This library both styles. I have seen this library works best by making a Mof object for each method-under-test, where that method has multiple unit tests.


Q: Shouldn't you have all methods in a class reuse the same predefined mocks and whens?

A: It should. This dependency allows for that use case, and additionally also allows for the case where methods may have different initial mock state depending on which method is called.


Q: Why not create separate whens and verifies objects to construct Mof?

A: This separate objected implementation was tested in initial POC, but there were auto-formatting issues with IDEs to construct these objects in a human readable format.


Q: In the above "Unit Testing - An Exception Case example", by using verifyThrough(REMAINING), are you forgetting to verify that the magnetron is not running? I think you should add code for noVerifyInteractions on the magnetron, so that we can guarantee it doesn't run and cover all of the test cases.

A: This test case (and other similar combinations) are explicitly covered when you create the Mof object, as you are stating that the timer (methods runs first) -> motor (methods run second) -> magnetron (methods run third).


Q: Following up on the previous question, what if I accidentally constructed the Mof object in the wrong order (such as timer -> magnetron -> motor)? Wouldn't that miss verifying unexpected behavior?

A: You would be notified by your unit tests, and you would be able to fix the misorder. Mof prevents overmocking and verifies all methods that need to be verified.

In the test case where you ran mof.whenBefore(magnetron); ... mof.verifyBefore(magnetron); ... mof.verifyNoInteractions(REMAINING), and the business logic has the motor running before magnetron, then an exception would be thrown.

The reason is that motor would have been called, but by stating mof.verifyNoInteractions(REMAINING), the test would state something like: "Expected no calls to this method, but this method is called 1 time".

In summary: The combination of your business logic, Mof, and your unit tests, ensures your tests are testing what they need to, and helps keep your business logic and unit tests up-to-date with each other.


Q: I want to remove this library (Didn't like the user experience, found a better library, etc). How difficult is it to do so?

A: Using Mof replaces the implicit whens and verifies between your different unit tests with explicit code. The process of removing the library is simple: Remove the explicit structure by copying and paste those extra whens and verifies back into each of your unit tests.

0.6.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago