-
Notifications
You must be signed in to change notification settings - Fork 25
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
test(dataService): add basic tests for withDataService
#89
base: main
Are you sure you want to change the base?
test(dataService): add basic tests for withDataService
#89
Conversation
Good idea @michael-small, I'll wait for the removal of the draft status. |
I am marking this as ready since it is basically done and covers most scenarios.
Perhaps this is too undercooked a submission as well but I think I may have overthought/overdone certain aspects and would appreciate feedback before going further in a fruitless direction. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work so far. I'd suggest that in the first round of review, we focus on slimming down the amount of code. Depending on where we end up, we could then maybe split the file into multiple files or everything is alright.
TestBed.runInInjectionContext(() => { | ||
const store = new Store(); | ||
|
||
tick(1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tick()
should be sufficient. That applies to all your tests.
updateAll(entity: Flight[]): Promise<Flight[]> { | ||
return firstValueFrom( | ||
of([ | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd create a factory function which generates you a flight. That function should use by a default an default flight object and increments the id automatically with every call.
Its signature could be createFlight(flight: Partial<Flight>): Flight
. As you see, you then only need to provide those values of Flight
which differ from the default one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should slim down all these mocking helpers, good idea.
Sounds good, thanks. I'll slim it down with your suggestions and a couple things that have occurred to me since and then @ you when it's at that point. |
PR comment: "tick() should be sufficient. That applies to all your tests." Change: Most uses of `tick(...)` were replaced, but ones that were time-sensitive to the mocks for loading time were retained
PR comment: I'd create a factory function which generates you a flight. That function should use by a default an default flight object and increments the id automatically with every call. Its signature could be createFlight(flight: Partial<Flight>): Flight. As you see, you then only need to provide those values of Flight which differ from the default one. Change: Made same function.
A) I slimmed the test down from 857 lines to 561 lines, ~33%, with your factory function suggestion. B) I also remembered these two TODO
I keep fumbling with mocking out forced errors and testing that. Any tips / snippets? That lack of the error case tests aside, I think this PR is ready if you are fine with the outstanding size of the test suite. |
Prerequisite to feat: add support for observables to withDataService
I said that I would make tests for
withDataService
featuring support for observables. However, it would be good to have existing tests for the feature as it is currently with promises before thewithDataService
is further extended.Once I have a test for each method of the
interface DataService
with promises stubbed out then I'll bump this from a draft to a full PR. Tests are not my strong suit, so please roast these.edit:
Progress/TODO 9/29/2024