diff --git a/mock-chronik-client.Dockerfile b/mock-chronik-client.Dockerfile index d749c9b68..3b5c12f90 100644 --- a/mock-chronik-client.Dockerfile +++ b/mock-chronik-client.Dockerfile @@ -1,23 +1,24 @@ # Copyright (c) 2024 The Bitcoin developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. # Node image for running npm publish FROM node:20-bookworm-slim # Build mock-chronik-client WORKDIR /app/modules/mock-chronik-client # Copy all project files as they are required for building COPY modules/mock-chronik-client . # Install ecashaddrjs from npm, so that module users install it automatically RUN npm install ecashaddrjs@latest # Install chronik-client from npm, so that module users install it automatically # Note that in practice any user of chronik-client probably already has chronik-client installed # So it won't really be bloating their node_modules RUN npm install chronik-client@latest RUN npm ci +RUN npm run build # Publish the module CMD [ "npm", "publish" ] diff --git a/modules/mock-chronik-client/README.md b/modules/mock-chronik-client/README.md index 4cacae524..f24e94205 100644 --- a/modules/mock-chronik-client/README.md +++ b/modules/mock-chronik-client/README.md @@ -1,182 +1,186 @@ # mock-chronik-client Testing utility to mock the Chronik indexer client and support unit tests that need to mock chronik related API calls. ## Usage Import the MockChronikClient module via relative path along with any desired mock objects from `/mocks/mockChronikResponses`. ``` const { MockChronikClient } = require('/index'); // Import any mock responses from '/mocks/mockChronikResponses' const ecashaddr = require('ecashaddrjs'); const mockedChronik = new MockChronikClient(); ``` **_Mocking API Responses_** Chronik-client APIs which **don't** rely on a preceding `.script()` call can use the `.setMock()` function to inject the mock API response. This includes: - `.block()` - `.tx()` - `.token()` - `.blockchainInfo()` - `.broadcastTx()` - `.ws()` Example: mocking the chronik.token() call ``` const { mockTokenInfo } = require('/mocks/mockChronikResponses'); // Initialize chronik mock with token info mockedChronik.setMock('token', { input: 'some token ID', output: mockTokenInfo, }); // Execute the API call const result = await mockedChronik.token('some token ID'); assert.deepEqual(result, mockTokenInfo); ``` Chronik-client APIs which **do** rely on a preceding `.script()` call will need to firstly set the intended script (address type and hash) before setting the specific mock function. This includes: - `.script().utxos()` - `.script().history()` Example: mocking the chronik.script(type, hash).utxos() call ``` const { mockP2pkhUtxos } = require('/mocks/mockChronikResponses'); // Initialize chronik mock with script and utxo info const P2PKH_ADDRESS = 'ecash:qzth8qvakhr6y8zcefdrvx30zrdmt2z2gvp7zc5vj8'; const { type, hash } = ecashaddr.decode(P2PKH_ADDRESS, true); mockedChronik.setScript(type, hash); mockedChronik.setUtxos(type, hash, mockP2pkhUtxos); // Execute the API call const result = await mockedChronik.script(type, hash).utxos(); assert.deepEqual(result, mockP2pkhUtxos); ``` **_Mocking API Errors_** To test your app's behavior in handling an API error from Chronik, simply set an Error object as the mock output. Example: mocking an error from the chronik.broadcastTx() call ``` const mockInvalidRawTxHex = 'not a valid raw tx hex'; const expectedError = new Error('Bad response from Chronik'); mockedChronik.setMock('broadcastTx', { input: mockInvalidRawTxHex, output: expectedError, }); // Execute the API call await assert.rejects( async () => { await mockedChronik.broadcastTx(mockInvalidRawTxHex); }, expectedError, ); ``` ## Questions? If you have any implementation questions regarding this mock tool please check the test suite in `/test/index.test.js` or feel free to reach out to the development team via the [eCash Development Telegram](https://t.me/eCashDevelopment). ### Change Log 1.1.0 - Add support to in-node subscribeToBlocks method and check flag, isSubscribedBlocks 1.1.1 - Patch error tests 1.2.0 - Add support to calls by `address(address)` returning same as `script(type, hash)` 1.3.0 - Add support for `subscribeToAddress` and `unsubscribeFromAddress` websocket methods 1.4.0 - Add support for `ws.unsubscribe` method and fix errors in `ws` tests 1.4.1 - Patch repo path in package.json 1.5.0 - Add support for ws subscribe methods and shape found in in-node chronik-client 1.6.0 - Match shape of `subs` object in `ChronikClientNode` for `ChronikClientNode` ws methods and support unsubscribe from blocks 1.7.0 - Allow getting and setting utxos() and history() by tokenId 1.8.0 - Allow getting history without specifying pageNumber or pageSize 1.9.0 - Support `blockTxs` endpoint - Update websocket subs shape to match ChronikClientNode 1.9.1 - Upgrading npm dependencies [D16380](https://reviews.bitcoinabc.org/D16380) 1.10.0 - Allow getting and setting `history()` by `lokadId` [D16382](https://reviews.bitcoinabc.org/D16382) 1.10.1 - Return missing `numTxs` key from `history()` calls [D16617](https://reviews.bitcoinabc.org/D16617) 1.11.0 - Add support for `MockAgora`, a simple set-and-return mock for some `ecash-agora` class methods [D16737](https://reviews.bitcoinabc.org/D16737) 1.12.0 - Extend `MockAgora` support to cover `offeredFungibleTokenIds()` and `activeOffersByTokenId()` methods [D16929](https://reviews.bitcoinabc.org/D16929) 1.12.1 - Build published version with dependencies from `npm` [D17227](https://reviews.bitcoinabc.org/D17227) 1.12.2 - Add `MockAgora` to stub ts declarations [D17274](https://reviews.bitcoinabc.org/D17274) 1.12.3 - Add dummy `plugin` method to allow construction of `new Agora()` from `ecash-agora` with a `MockChronikClient` [D17279](https://reviews.bitcoinabc.org/D17279) 2.0.0 [D17332](https://reviews.bitcoinabc.org/D17332) - Full implementation of typescript - Set history and utxos by script, address, or tokenId in one step (prev 2) - Set history by lokadId in one step (prev 2) - Better type checking - Improved mock websocket (now it more closely follows the API of chronik-client) - Add `broadcastTxs` method - Add `chronikInfo` method + +2.0.1 + +- Build before deployment so it also works for non-ts users [D17338](https://reviews.bitcoinabc.org/D17338)