All files / json-patch/op OpMore.ts

94.11% Statements 16/17
85.71% Branches 6/7
100% Functions 6/6
100% Lines 16/16

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  17x   17x 17x           17x     65x   65x       3x       10x       15x 15x 15x 15x       25x         25x       20x 20x      
import type {CompactMoreOp, OPCODE_MORE} from '../codec/compact/types';
import {AbstractPredicateOp} from './AbstractPredicateOp';
import type {OperationMore} from '../types';
import {find, type Path, formatJsonPointer} from '@jsonjoy.com/json-pointer';
import {OPCODE} from '../constants';
import type {AbstractOp} from './AbstractOp';
 
/**
 * @category JSON Predicate
 */
export class OpMore extends AbstractPredicateOp<'more'> {
  constructor(
    path: Path,
    public readonly value: number,
  ) {
    super(path);
  }
 
  public op() {
    return 'more' as const;
  }
 
  public code() {
    return OPCODE.more;
  }
 
  public test(doc: unknown): boolean {
    const {val} = find(doc, this.path);
    Iif (typeof val !== 'number') return false;
    const test = val > this.value;
    return test;
  }
 
  public toJson(parent?: AbstractOp): OperationMore {
    const op: OperationMore = {
      op: 'more',
      path: formatJsonPointer(parent ? this.path.slice(parent.path.length) : this.path),
      value: this.value,
    };
    return op;
  }
 
  public toCompact(parent: undefined | AbstractOp, verbose: boolean): CompactMoreOp {
    const opcode: OPCODE_MORE = verbose ? 'more' : OPCODE.more;
    return [opcode, parent ? this.path.slice(parent.path.length) : this.path, this.value];
  }
}