Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor: Unit Test Services without DB Dependency #184

Merged
merged 48 commits into from
Jul 5, 2023

Conversation

joneubank
Copy link
Contributor

@joneubank joneubank commented Jul 4, 2023

The motivation for these changes was to be able to unit test the dictionary service without relying on Mongoose integration. To accomplish this, we add sinon to mock services and chai-as-promised to test the outcome of some async function results.

The major code changes made to support this change are:

  1. The Dictionary model now exports methods that should be used to interact with the DB, including fetching a dictionary, listing dictionaries, and saving a new dictionary. These were moved out of the dictionaryService.
  2. Rewrite tests on the dictionary service to mock db interaction calls.

Other Changes:

  • New Endpoints: Mixed in with this work were two new endpoints to be able to fetch individual schemas, and fields from individual schemas through the API. This fulfills: Feature Request: Endpoints to query specific schema and fields within a dictionary #178
  • Mocha configs were moved into a .mocharc.json file and are no longer set in the test scripts. This lets the VS Mocha plugin interact with the tests.
  • Moving test fixture dictionaries around and removing references to external projects.

This PR depends on approval of: #181

joneubank added 30 commits July 3, 2023 07:33
Note: Changes route `/diff/` to `/dictionaries/diff`
@joneubank joneubank changed the base branch from refactor/schema-types to develop July 4, 2023 20:07
@joneubank joneubank marked this pull request as ready for review July 5, 2023 00:58
@joneubank joneubank merged commit 9a5979f into develop Jul 5, 2023
@joneubank joneubank deleted the refactor/unit-test-cleanup branch November 14, 2023 21:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant