mirror of https://github.com/lukechilds/ow.git
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.
35 lines
1.1 KiB
35 lines
1.1 KiB
import {Predicate, Context} from './predicate';
|
|
import hasItems from '../utils/has-items';
|
|
|
|
export class WeakMapPredicate<T1 extends object = any, T2 = any> extends Predicate<WeakMap<T1, T2>> {
|
|
/**
|
|
* @hidden
|
|
*/
|
|
constructor(context?: Context<WeakMap<T1, T2>>) {
|
|
super('WeakMap', context);
|
|
}
|
|
|
|
/**
|
|
* Test a WeakMap to include all the provided keys. The keys are tested by identity, not structure.
|
|
*
|
|
* @param keys The keys that should be a key in the WeakMap.
|
|
*/
|
|
hasKeys(...keys: T1[]) {
|
|
return this.addValidator({
|
|
message: (_, label, missingKeys) => `Expected ${label} to have keys \`${JSON.stringify(missingKeys)}\``,
|
|
validator: map => hasItems(map, keys)
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Test a WeakMap to include any of the provided keys. The keys are tested by identity, not structure.
|
|
*
|
|
* @param keys The keys that could be a key in the WeakMap.
|
|
*/
|
|
hasAnyKeys(...keys: T1[]) {
|
|
return this.addValidator({
|
|
message: (_, label) => `Expected ${label} to have any key of \`${JSON.stringify(keys)}\``,
|
|
validator: map => keys.some(key => map.has(key))
|
|
});
|
|
}
|
|
}
|
|
|