Remove ViewChild from metadata#8771
Conversation
ViewChild will always be null, and so there is no point in mocking it. viewChild.required throws an error in mocked components without this change. Fixes help-me-momGH-8634
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #8771 +/- ##
===========================================
- Coverage 100.00% 99.93% -0.07%
===========================================
Files 227 227
Lines 4935 4938 +3
Branches 1147 1149 +2
===========================================
Hits 4935 4935
- Misses 0 1 +1
- Partials 0 2 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
satanTime
left a comment
There was a problem hiding this comment.
Hi there.
Thank you for contribution, but it's a breaking change which affects other angular versions. Should be fixed without breaking anything.
|
Hi @satanTime, what’s the effect for other versions? Only |
|
ng-mocks uses many undocumented and monkey patched things. For a proper PR, you need to provide a proper test which demonstrates the issue and its fix. Here, I see that mocks which provide own empty views now will return nulls instead of objects, so tests which relied on these empty views will fail despite no change in the code, only due to the update of ng-mocks. That's what should be avoided, so what worked before should still work afterwards. |
|
@satanTime signal-based queries have diff --git a/libs/ng-mocks/src/lib/common/decorate.queries.ts b/libs/ng-mocks/src/lib/common/decorate.queries.ts
index 860983934..f69eb1423 100644
--- a/libs/ng-mocks/src/lib/common/decorate.queries.ts
+++ b/libs/ng-mocks/src/lib/common/decorate.queries.ts
@@ -26,8 +26,11 @@ const generateFinalQueries = (queries: {
const scanKeys: string[] = [];
for (const key of Object.keys(queries)) {
- const query: Query & { ngMetadataName?: string } = queries[key];
- final.push([key, query]);
+ const query: Query & { ngMetadataName?: string; isSignal?: boolean } = queries[key];
+ const isSignalBasedQuery = query.isViewQuery && query.isSignal;
+ if (!isSignalBasedQuery) {
+ final.push([key, query]);
+ }
if (!query.isViewQuery && !isInternalKey(key)) {
scanKeys.push(key);That way it should not be considered as a regression for any existing cases while still allowing us to move forward |
|
@dmitry-stepanenko that sounds promising! I’ve given you write access to this repo, so you’re welcome to edit the PR directly |
|
awesome, thanks @c-harding. I'll update the branch shortly |
This reverts commit 4421a1c.
6f6b616 to
429ad31
Compare
|
@dmitry-stepanenko Thanks for fixing this! It looks like the coverage is still a little low (I can’t tell why, you have written a test that should cover this). |
429ad31 to
f0f46f3
Compare
|
Hello! @satanTime does the fix provided by @dmitry-stepanenko in this PR and as he explained in this post #8771 (comment) is what you expected as a good fix? |
|
Bump ... Sad this is still pending... known issue since now almost a year :/ |
6824c13 to
6f17ef1
Compare
f9aa723 to
97bfded
Compare
|
any news? |
5c06579 to
6a41f0c
Compare
|
For those who really want to use signals right now or are facing the struggles of mixed code, here's a not-fully-vetted patch containing this branch and #11909: "ng-mocks": "https://github.com/Watercycle/ng-mocks/releases/download/v14.14.0/ng-mocks-0.0.1.tgz",I think the next steps for this branch are... re-merging master? It seems like the tests didn't run last time (CircleCI). I'd be surprised if anything significant came up, though. |
|
I've duplicated this PR over to #12875 with some minor changes to (artificially) make CI happy. I think ideally |
ViewChild will always be null, and so there is no point in mocking it.
viewChild.required throws an error in mocked components without this
change.
Fixes GH-8634