@iabtcf/testing
Testing tools to generate randomized input/output
Installation
npm
npm install @iabtcf/testing --save-dev
yarn
yarn add -D @iabtcf/testing
Utilities
TCModelFactory
Generate random TCModel with GVL
import {TCModelFactory} from '@iabtcf/testing';
const tcModel = TCModelFactory.withGVL();
Generate random TC string
import {TCString} from '@iabtcf/core';
import {TCModelFactory} from '@iabtcf/testing';
console.log(TCString.decode(TCModelFactory.noGVL()));
Add publisher restrictions
import {TCModelFactory} from '@iabtcf/testing';
let tcModel = TCModelFactory.withGVL();
tcModel = TCModelFactory.addPublisherRestrictions(tcModel);
GVLFactory
Get latest GVL
import {GVLFactory} from '@iabtcf/testing';
import {GVL} from '@iabtcf/core';
const gvl = GVLFactory.getLatest();
Get version of GVL
import {GVLFactory} from '@iabtcf/testing';
import {GVL} from '@iabtcf/core';
const gvl = GVLFactory.getVersion(10);