Filters

# Testing

It is recommended to first read the following sections to better understand testing:

Testing is the general umbrella that describes all that revolves around making sure that any code created does what it is expected to do.

Testing is an integral part of software development in general. Done well, it helps teams catch bugs earlier, and thus, repairing problems becomes cheaper. In the context of blockchains, which can lock large amounts of value and where migrations are not simply one redeploy away from a fix, bugs can be catastrophic.

The Cosmos SDK implements its own testing vision for its modules, and it would be good if your project followed the same patterns. Following the same patterns will help everyone in the ecosystem speak the same language. Speaking the same language is also beneficial when you open the code for a bug bounty. Indeed, readable tests increase the trust that casual observers have in your code overall and, by extension, your project, and allow interested bounty hunters to be onboarded faster.

# Testing pyramid

After some reflection (opens new window), the Cosmos SDK divides tests into four broad categories of somewhat increasing scope:

# Unit tests

Unit tests are your classic "smallest tests possible", and focus on a single module at a time. If a tested call needs something from another module, like a keeper, then:

  • This dependency should be mocked (opens new window), including mocked responses when applicable.
  • The mock should confirm that the dependency was called as expected.
  • If applicable, the test should confirm that a mocked response was handled as expected by the module under test.

To be considered well-tested, your unit tests should cover all your module's functions.

As an example, imagine that your module moves tokens on behalf of your users. Your module, therefore, has a dependency on the bank keeper. As part of a unit test setup, you create a mocked bank keeper and use it. After the test action, at verification time, your unit test confirms that your module called the expected functions of the bank keeper within the expected parameters. Your unit test does not test whether bank balances have changed because, remember, your module does not have a real bank keeper.

# Integration tests

Integration tests are one step wider in scope. They are still focused on your module but, instead of mocking the dependencies, now your test provisions a minimum-viable application that includes fully-fledged dependencies, including – crucially – those your own module needs.

A minimum-viable application contains your module and all its dependencies, as well as their dependencies, but nothing more.

In a well-designed testing environment, providing such fully-fledged dependencies should not be a concern of your module's tests. All the more so if your dependencies have dependencies of their own. You want to minimize such deep correlations between modules, even in regard to their tests.

This is why, to minimize correlations, from version 0.47 of the Cosmos SDK onward each module exposes functions to provide a minimum viable module. This way, your module only knows how to instantiate itself given fully-fledged dependencies, the inputs. An added benefit is that your module exposes explicitly the inputs it needs to instantiate.

Your integration tests start by creating an app that instantiates the list of explicitly defined inputs required. For instance, when creating a minimum-viable app to integration-test the bank module, no slashing module is provisioned, as slashing is a side concern instead of a dependency. Of course, each module requires a different minimum-viable app. To facilitate the creation of such an app and therefore, of integration tests, the Cosmos SDK team has also developed an in-house dependency injection.

To fit in the context of Go testing, modules provide testing suites that encapsulate the test instantiations.

In Cosmos SDK version 0.46 and earlier, what are called "integration tests" are really full tests, where a full application is being instantiated. The reason behind this is that in these versions the coding effort to create a minimum-viable app was not commensurate with the benefit it provided compared to a full app.

# Simulation tests

The purpose of simulation tests is to introduce some random effects into the parameters passed.

Simulation tests are similar in scope to integration tests, where they reuse your module's minimum-viable application. This scope also only starts to make sense from Cosmos SDK 0.47, where the application dependencies are disentangled.

# End-to-end tests

End-to-end (E2E) tests are at the top of the testing pyramid. Unlike integration and simulation tests, they work by testing the full application, not a minimum-viable one.

Your E2E tests should test flows that mirror what users would experience, and therefore, should not limit themselves to minute interactions. Conceptually, they are for your whole application, and not per module.

As stated, if you work with Cosmos SDK versions 0.46 or earlier, any tests that are labeled "integration tests" are actually E2E tests under the new designation from version 0.47 onward.

In the context of Go, just like for integration tests, you provide testing suites that handle the instantiations. Ideally, your testing suite should be usable outside of your application so that other applications can test interactions with yours.

You can introduce tests as soon as you have created code of your own. You ought not to add tests that specifically focus on code generated by Ignite CLI.

Simple unit testing

For instance, when unit-testing the QueryCanPlayMoveRequest handling you could:

  • Define game situations, a.k.a. test cases:

    Copy canPlayTestRange = []canPlayGameCase{ { desc: "First move by black", game: types.StoredGame{ Index: "1", Board: "*b*b*b*b|b*b*b*b*|*b*b*b*b|********|********|r*r*r*r*|*r*r*r*r|r*r*r*r*", Turn: "b", Winner: "*", }, request: &types.QueryCanPlayMoveRequest{ GameIndex: "1", Player: "b", FromX: 1, FromY: 2, ToX: 2, ToY: 3, }, response: canPlayOkResponse, err: "nil", }, ... }
  • Use the helper created by Ignite to instantiate a test checkers keeper:

    Copy keeper, ctx := keepertest.CheckersKeeper(t)
  • Set up the keeper with the game described in the case:

    Copy keeper.SetStoredGame(ctx, testCase.game)
  • Then run the test case:

    Copy response, err := keeper.CanPlayMove(goCtx, testCase.request)
  • Then confirm the expectations:

    Copy if testCase.response == nil { require.Nil(t, response) } else { require.EqualValues(t, testCase.response, response) } if testCase.err == "nil" { require.Nil(t, err) } else { require.EqualError(t, err, testCase.err) }

Unit testing with mocks

If you need to mock another module's keeper, with the help of gomock (opens new window) you would:

  • Perform the one-time creation of the mock types of your expected keeper interfaces, which includes the bank keeper.

  • Then, for each test, create a mock controller which acts as the puppeteer of your mocked bank keeper:

    Copy ctrl := gomock.NewController(t) bankMock := testutil.NewMockBankEscrowKeeper(ctrl)
  • Initialize your test checkers keeper with the necessary mocks:

    Copy k, ctx := keepertest.CheckersKeeperWithMocks(t, bankMock)
  • Instruct the mock controller to check all call expectations when the test ends:

    Copy defer ctrl.Finish()

    This code is placed before the lines below, but it gets executed at the end (opens new window).

  • Add your call expectations on the mock. For instance, here you expect:

    • Alice to put amount in escrow.
    • Bob to do the same, but after Alice.
    • No other call to the bank to take place.
    Copy alicePay := escrow.EXPECT().SendCoinsFromAccountToModule( sdk.UnwrapSDKContext(context), aliceAddr, types.ModuleName, sdk.Coins{ sdk.Coin{ Denom: denom, Amount: sdk.NewInt(int64(amount)), }, } ).Times(1) escrow.EXPECT().SendCoinsFromAccountToModule( sdk.UnwrapSDKContext(context), aliceAddr, types.ModuleName, sdk.Coins{ sdk.Coin{ Denom: denom, Amount: sdk.NewInt(int64(amount)), }, } ).Times(1).After(alicePay)
  • Alternatively, remove all expectations by accepting all calls; for instance, if you are testing something else, like game moves:

    Copy bankMock.EXPECT().SendCoinsFromAccountToModule( sdk.UnwrapSDKContext(context), gomock.Any(), gomock.Any(), gomock.Any() ).AnyTimes()

Integration testing

Integration testing is a bit more involved. See the links below.

If you want to go beyond out-of-context code samples like the above and see more in detail how to define these features, go to any section of Run Your Own Cosmos Chain.

More precisely, you can jump to:

synopsis

To summarize, this section has explored:

  • Why testing is important.
  • How the Cosmos SDK conceptually divides its tests.
  • What is the scope and what happens in each test category.