Skip to content

Commit

Permalink
current
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Aug 12, 2024
1 parent 6ff5285 commit 519bb49
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 27 deletions.
2 changes: 1 addition & 1 deletion packages/vest/src/core/Runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ export function useResetSuite() {
}

export function useLoadSuite(rootNode: TIsolateSuite): void {
VestRuntime.useLoadRootNode(rootNode);
VestRuntime.useSetHistoryRoot(rootNode);
useExpireSuiteResultCache();
}
6 changes: 5 additions & 1 deletion packages/vest/src/core/test/test.memo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ function useGetTestFromCache(
return cache(dependencies, cacheAction);
}

VestRuntime.addNodeToHistory(cachedValue);
// FIXME(@ealush 2024-08-12): This is some kind of a hack. Instead organically letting Vest set the next

Check warning on line 69 in packages/vest/src/core/test/test.memo.ts

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected 'fixme' comment: 'FIXME(@*** 2024-08-12): This is some...'
// child of the isolate, we're forcing it from the outside.
// Instead, an ideal solution would probably be to have test.memo be its own isolate
// that just injects a historic output from a previous test run.
VestRuntime.useSetNextIsolateChild(cachedValue);

return cachedValue;
}
Expand Down
12 changes: 6 additions & 6 deletions packages/vest/src/hooks/__tests__/mode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ describe('mode', () => {
it('Should follow the same behavior as if it was not nested', () => {
const suite = create(() => {
group('group_1', () => {
dummyTest.failing('field_1', 'first-of-field_1');
dummyTest.failing('field_1', 'second-of-field_1');
dummyTest.failing('field_2', 'first-of-field_2');
dummyTest.failing('field_2', 'second-of-field_2');
dummyTest.failing('field_3', 'first-of-field_3');
dummyTest.failing('field_3', 'second-of-field_3');
Vest.test('field_1', 'first-of-field_1', () => false);
Vest.test('field_1', 'second-of-field_1', () => false);
Vest.test('field_2', 'first-of-field_2', () => false);
Vest.test('field_2', 'second-of-field_2', () => false);
Vest.test('field_3', 'first-of-field_3', () => false);
Vest.test('field_3', 'second-of-field_3', () => false);
});
});
expect(suite.get().testCount).toBe(0); // sanity
Expand Down
9 changes: 8 additions & 1 deletion packages/vestjs-runtime/src/Isolate/Isolate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ type UsedFeaturesOnly<P extends IsolatePayload> = Pick<
>;

export class Isolate {
// eslint-disable-next-line max-statements
static create<Payload extends IsolatePayload>(
type: string,
callback: CB,
Expand All @@ -48,12 +49,18 @@ export class Isolate {

const shouldRunNew = Object.is(nextIsolateChild, newCreatedNode);

VestRuntime.addNodeToHistory(nextIsolateChild);
if (parent) {
VestRuntime.useSetNextIsolateChild(nextIsolateChild);
}

const output = shouldRunNew
? useRunAsNew(localHistoryNode, newCreatedNode, callback)
: nextIsolateChild.output;

if (!parent) {
VestRuntime.useSetHistoryRoot(nextIsolateChild);
}

IsolateMutator.saveOutput(nextIsolateChild, output);

return nextIsolateChild as TIsolate<Payload>;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { CB } from 'vest-utils';
import { describe, it, expect, beforeEach, vi } from 'vitest';

import { TIsolate, Isolate } from 'Isolate';
import { StateRefType, useAvailableRoot } from 'VestRuntime';
import { IRecociler, IsolateMutator, VestRuntime } from 'vestjs-runtime';

describe('Reconciliation', () => {
let stateRef: StateRefType;

beforeEach(() => {
stateRef = VestRuntime.createRef(testReconciler, () => null);
});

it('Should return the current node if there is no history node', () => {
let rootIsolate;
const output = VestRuntime.Run(stateRef, () => {
rootIsolate = Isolate.create(IsolateType.RunOne, () => {});
});

const [historyRoot] = stateRef.historyRoot();

expect(historyRoot).toBe(rootIsolate);
});

it("should return the result of the reconciler's function when runs the second time", () => {
const isolate1 = VestRuntime.Run(stateRef, () => {
return Isolate.create(IsolateType.RunOne, () => ({ foo: 'bar' }));
});
const isolate2 = VestRuntime.Run(stateRef, () => {
return Isolate.create(IsolateType.RunTwo, () => ({ foo: 'baz' }));
});

const [historyRoot] = stateRef.historyRoot();

expect(historyRoot).toBe(isolate2);
});
});

enum IsolateType {
RunOne = 'RunOne',
RunTwo = 'RunTwo',
}

const testReconciler: IRecociler = (
currentNode: TIsolate,
historyNode: TIsolate,
): TIsolate => currentNode;
22 changes: 4 additions & 18 deletions packages/vestjs-runtime/src/VestRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ export const Run = PersistedContext.run;

export const RuntimeApi = {
Run,
addNodeToHistory,
createRef,
persist,
reset,
useAvailableRoot,
useCurrentCursor,
useHistoryRoot,
useLoadRootNode,
useSetHistoryRoot,
useSetNextIsolateChild,
useXAppData,
};

Expand Down Expand Up @@ -131,18 +131,7 @@ export function useHistoryIsolateAtCurrentPosition() {
return historyNode;
}

export function addNodeToHistory(node: TIsolate): void {
const parent = useIsolate();
if (parent) {
useSetNextIsolateChild(node);
} else {
useSetHistory(node);
}

IsolateMutator.setParent(node, parent);
}

export function useSetHistory(history: TIsolate) {
export function useSetHistoryRoot(history: TIsolate) {
const [, setHistoryRoot] = useHistoryRoot();
setHistoryRoot(history);
}
Expand Down Expand Up @@ -172,6 +161,7 @@ export function useSetNextIsolateChild(child: TIsolate): void {
invariant(currentIsolate, ErrorStrings.NO_ACTIVE_ISOLATE);

IsolateMutator.addChild(currentIsolate, child);
IsolateMutator.setParent(child, currentIsolate);
}
export function useSetIsolateKey(key: Nullable<string>, node: TIsolate): void {
if (!key) {
Expand Down Expand Up @@ -207,7 +197,3 @@ export function reset() {

resetHistoryRoot();
}

export function useLoadRootNode(root: TIsolate): void {
useSetHistory(root);
}

0 comments on commit 519bb49

Please sign in to comment.