Skip to content

Commit 38afd9d

Browse files
committed
add failing tests
1 parent 9aab08e commit 38afd9d

File tree

3 files changed

+83
-2
lines changed

3 files changed

+83
-2
lines changed

packages/qwik/src/core/v2/shared/scheduler.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ export const createScheduler = (
298298
// we need to process cleanup tasks for deleted nodes
299299
nextChore.$type$ !== ChoreType.CLEANUP_VISIBLE
300300
) {
301+
DEBUG && debugTrace('skip chore', nextChore, currentChore, choreQueue);
301302
continue;
302303
}
303304
const returnValue = executeChore(nextChore);
@@ -521,12 +522,13 @@ function debugChoreToString(chore: Chore): string {
521522
[ChoreType.COMPONENT_SSR]: 'COMPONENT_SSR',
522523
[ChoreType.JOURNAL_FLUSH]: 'JOURNAL_FLUSH',
523524
[ChoreType.VISIBLE]: 'VISIBLE',
525+
[ChoreType.CLEANUP_VISIBLE]: 'CLEANUP_VISIBLE',
524526
[ChoreType.WAIT_FOR_ALL]: 'WAIT_FOR_ALL',
525527
[ChoreType.WAIT_FOR_COMPONENTS]: 'WAIT_FOR_COMPONENTS',
526528
} as any
527529
)[chore.$type$] || 'UNKNOWN: ' + chore.$type$;
528530
const host = String(chore.$host$).replaceAll(/\n.*/gim, '');
529-
const qrlTarget = (chore.$target$ as QRLInternal<any>).$symbol$;
531+
const qrlTarget = (chore.$target$ as QRLInternal<any>)?.$symbol$;
530532
return `Chore(${type} ${chore.$type$ === ChoreType.QRL_RESOLVE ? qrlTarget : host} ${chore.$idx$})`;
531533
}
532534

packages/qwik/src/core/v2/tests/use-signal.spec.tsx

+34
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import { Slot } from '../../render/jsx/slot.public';
1414
import type { Signal as SignalType } from '../../state/signal';
1515
import { untrack } from '../../use/use-core';
1616
import { useSignal } from '../../use/use-signal';
17+
import { vnode_getFirstChild, vnode_getProp, vnode_locate } from '../client/vnode';
18+
import { QSubscribers } from '../../util/markers';
1719

1820
const debug = false; //true;
1921
Error.stackTraceLimit = 100;
@@ -262,6 +264,38 @@ describe.each([
262264
);
263265
});
264266

267+
it("should don't add multiple the same subscribers", async () => {
268+
const Child = component$(() => {
269+
return <></>;
270+
});
271+
272+
const Cmp = component$(() => {
273+
const counter = useSignal<number>(0);
274+
const cleanupCounter = useSignal<number>(0);
275+
276+
return (
277+
<>
278+
<button onClick$={() => counter.value++}></button>
279+
<Child key={counter.value} />
280+
<pre>{cleanupCounter.value + ''}</pre>
281+
</>
282+
);
283+
});
284+
285+
const { container } = await render(<Cmp />, { debug });
286+
287+
await trigger(container.element, 'button', 'click');
288+
await trigger(container.element, 'button', 'click');
289+
await trigger(container.element, 'button', 'click');
290+
await trigger(container.element, 'button', 'click');
291+
292+
const signalVNode = vnode_getFirstChild(
293+
vnode_locate(container.rootVNode, container.element.querySelector('pre')!)
294+
)!;
295+
const subscribers = vnode_getProp<unknown[]>(signalVNode, QSubscribers, null);
296+
expect(subscribers).toHaveLength(1);
297+
});
298+
265299
describe('derived', () => {
266300
it('should update value directly in DOM', async () => {
267301
const log: string[] = [];

packages/qwik/src/core/v2/tests/use-visible-task.spec.tsx

+46-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
useComputed$,
1212
useContextProvider,
1313
createContextId,
14+
type Signal as SignalType,
15+
useTask$,
1416
} from '@builder.io/qwik';
1517
import { trigger, domRender, ssrRenderToDom } from '@builder.io/qwik/testing';
1618
import { ErrorProvider } from '../../../testing/rendering.unit-util';
@@ -29,7 +31,7 @@ export function useDelay(value: string) {
2931

3032
describe.each([
3133
{ render: ssrRenderToDom }, //
32-
{ render: domRender }, //
34+
// { render: domRender }, //
3335
])('$render.name: useVisibleTask', ({ render }) => {
3436
it('should execute visible task', async () => {
3537
const VisibleCmp = component$(() => {
@@ -556,6 +558,49 @@ describe.each([
556558
(globalThis as any).log = undefined;
557559
});
558560

561+
it('should run cleanup with component rerender', async () => {
562+
const Child = component$((props: { cleanupCounter: SignalType<number> }) => {
563+
useTask$(({ cleanup }) => {
564+
cleanup(() => {
565+
props.cleanupCounter.value++;
566+
});
567+
});
568+
return <span></span>;
569+
});
570+
571+
const Cmp = component$(() => {
572+
const counter = useSignal<number>(0);
573+
const cleanupCounter = useSignal<number>(0);
574+
return (
575+
<div>
576+
<button onClick$={() => counter.value++}></button>
577+
<Child key={counter.value} cleanupCounter={cleanupCounter} />
578+
{cleanupCounter.value + ''}
579+
</div>
580+
);
581+
});
582+
583+
const { vNode, container } = await render(<Cmp />, { debug });
584+
await trigger(container.element, 'button', 'click');
585+
await trigger(container.element, 'button', 'click');
586+
await trigger(container.element, 'button', 'click');
587+
await trigger(container.element, 'button', 'click');
588+
await trigger(container.element, 'button', 'click');
589+
await trigger(container.element, 'button', 'click');
590+
591+
expect(vNode).toMatchVDOM(
592+
<Component>
593+
<div>
594+
<button></button>
595+
<Component>
596+
<span></span>
597+
</Component>
598+
<Signal>{'6'}</Signal>
599+
</div>
600+
</Component>
601+
);
602+
});
603+
559604
it('should handle promises and visible tasks', async () => {
560605
// vi.useFakeTimers();
561606
const MyComp = component$(() => {

0 commit comments

Comments
 (0)