Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | import { E } from '@endo/eventual-send';
import { makePromiseKit } from '@endo/promise-kit';
import { makeDefaultExo } from '@metamask/kernel-utils/exo';
import { unwrapTestLogger } from '../test-powers.ts';
import type { TestPowers } from '../test-powers.ts';
/**
* Build function for vats that will run various tests.
*
* @param vatPowers - Special powers granted to this vat.
* @param vatPowers.logger - The logger for the vat.
* @param parameters - Initialization parameters from the vat's config object.
* @param parameters.name - The name of the vat.
* @param parameters.test - The test to run.
* @param parameters.limit - The limit for the test.
* @param _baggage - Root of vat's persistent state (not used here).
* @returns The root object for the new vat.
*/
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export function buildRootObject(
vatPowers: TestPowers,
parameters: { name?: string; test?: string; limit?: string | number } = {},
_baggage: unknown = null,
) {
const name = parameters?.name ?? 'anonymous';
const test = parameters?.test ?? 'unspecified';
const limit = Number(parameters?.limit ?? 3);
const tlog = unwrapTestLogger(vatPowers, name);
/**
* Print a message to the log.
*
* @param message - The message to print.
*/
function log(message: string): void {
// eslint-disable-next-line no-console
console.log(`${name}: ${message}`);
}
log(`buildRootObject`);
log(`configuration parameters: ${JSON.stringify(parameters)}`);
/**
* Wait for the next promise in the chain.
*
* @param who - Who to take the next step.
* @param prevP - Promise for the previous step.
* @returns A string at the end.
*/
async function waitFor(
who: unknown,
prevP: Promise<unknown>,
): Promise<string | void> {
tlog(`waitFor start`);
return prevP.then(
async (res: unknown) => {
const [value, nextPrevP] = res as [number, Promise<unknown>];
if (value < limit) {
tlog(`count ${value} < ${limit}, recurring...`);
await E(who).bobGen();
return waitFor(who, nextPrevP);
}
tlog(`finishing chain`);
return 'end of chain';
},
(rej: unknown) => {
tlog(`Bob rejected, ${String(rej)}`);
},
);
}
let bobResolve: ((value: unknown) => void) | null = null;
let bobValue = 0;
return makeDefaultExo('root', {
async bootstrap(vats: { bob: unknown }) {
log(`bootstrap start`);
tlog(`running test ${test}`);
const bobReadyP = E(vats.bob).bobInit();
await E(vats.bob).bobGen();
const doneP = waitFor(vats.bob, bobReadyP);
await E(vats.bob).loopback();
return doneP;
},
// This is a hack that effectively does the job of stdout.flush() even
// though we don't have access to stdout itself here. It makes sure we
// capture all the log output prior to the return value from `bootstrap`
// resolving.
loopback() {
return undefined;
},
async bobInit() {
log(`bobInit`);
const { promise, resolve } = makePromiseKit();
bobResolve = resolve;
return promise;
},
bobGen() {
log(`bobGen start`);
const { promise, resolve } = makePromiseKit();
const next = [bobValue, promise];
bobValue += 1;
tlog(`bobGen set value to ${bobValue}`);
bobResolve?.(next);
bobResolve = resolve;
log(`bobGen done`);
},
});
}
|