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.
 
 

32 lines
998 B

import {Predicate, Context} from './predicate';
import hasItems from '../utils/has-items';
export class WeakMapPredicate extends Predicate<WeakMap<any, any>> {
constructor(context?: Context) {
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: any[]) {
return this.addValidator({
message: (_, missingKeys) => `Expected WeakMap 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: any[]) {
return this.addValidator({
message: () => `Expected WeakMap to have any key of \`${JSON.stringify(keys)}\``,
validator: map => keys.some(key => map.has(key))
});
}
}