Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

71 lines
1.6 KiB

type InputTestValue = bigint | boolean | number | null | string | undefined;
type InputTestArgs = {
compare?: InputTestValue[];
displayMax?: string;
displayMin?: string;
getCompare?: () => InputTestValue[];
getValue?: () => InputTestValue;
isIgnoreOnCallbacks?: boolean;
max?: bigint | number;
min?: bigint | number;
value?: InputTestValue;
};
type MinimalInputTestArgs = Required<
Omit<
InputTestArgs,
| 'displayMax'
| 'displayMin'
| 'getCompare'
| 'getValue'
| 'isIgnoreOnCallbacks'
>
>;
type CallbackAppendArgs = {
append: {
[arg: string]: InputTestValue;
};
};
type InputTestFailureCallback = (
args: InputTestArgs & CallbackAppendArgs,
) => void;
type InputTestSuccessCallback = (args: CallbackAppendArgs) => void;
type InputTest = {
onFailure?: InputTestFailureCallback;
onSuccess?: InputTestSuccessCallback;
test: (args: MinimalInputTestArgs & CallbackAppendArgs) => boolean;
};
type InputTestInputs = {
[id: string]: Partial<InputTestArgs>;
};
type InputTestBatchFinishCallback = () => void;
type InputTestBatches = {
[id: string]: {
defaults?: InputTestArgs & {
onSuccess?: InputTestSuccessCallback;
};
onFinishBatch?: InputTestBatchFinishCallback;
optionalTests?: Array<InputTest>;
tests: Array<InputTest>;
};
};
type TestInputFunctionOptions = {
excludeTestIds?: string[];
excludeTestIdsRe?: RegExp;
inputs?: InputTestInputs;
isContinueOnFailure?: boolean;
isIgnoreOnCallbacks?: boolean;
isTestAll?: boolean;
tests?: InputTestBatches;
};
type TestInputFunction = (options?: TestInputFunctionOptions) => boolean;