Read Spring Cloud Contract JSON directly in your consumer contract tests and banish magic numbers once and for all! ๐ฑ
npm install spring-cloud-contract-json-reader
or
yarn install spring-cloud-contract-json-reader
- Set environment variable
CONTRACT_JSON_BASE_PATH
to wherever your contract test json is located relative to the root of your project's git repository. E.g.:build/stubs/META-INF/com.somepackage/myfancyapp/0.0.1-SNAPSHOT/mappings
Note: No need for leading or trailing slashes.
- Import the Spring Cloud Contract JSON Reader into your tests and start asserting on response body data!
const readJsonContractFile = require('spring-cloud-contract-json-reader');
const contractResponseBody = await readJsonContractFile('shouldReturnListOfSuperheroes.json');
const response = await axios.fetch('http://my-api/some-endpoint');
expect(response.data).toEqual(contractResponseBody);
This library includes its own test suite. You'll need to install testing dependencies before you can run the tests:
npm install
After that's done, just run the tests with:
npm test
MIT