1.5.11 • Published 1 month ago

@iabtechlabtcf/testing v1.5.11

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

NPM version npm module downloads per month InteractiveAdvertisingBureau

@iabtechlabtcf/testing

Testing tools to generate randomized input/output

Installation

npm

npm install @iabtechlabtcf/testing --save-dev

yarn

yarn add -D @iabtechlabtcf/testing

Utilities

TCModelFactory

Generate random TCModel with GVL

import {TCModelFactory} from '@iabtechlabtcf/testing';

const tcModel = TCModelFactory.withGVL();

Generate random TC string

import {TCString} from '@iabtechlabtcf/core';
import {TCModelFactory} from '@iabtechlabtcf/testing';

console.log(TCString.encode(TCModelFactory.noGVL()));
// ... random tc string

Add publisher restrictions

import {TCModelFactory} from '@iabtechlabtcf/testing';
let tcModel = TCModelFactory.withGVL();
tcModel = TCModelFactory.addPublisherRestrictions(tcModel);
// now has random publisher restrictions

GVLFactory

Get latest GVL

import {GVLFactory} from '@iabtechlabtcf/testing';
import {GVL} from '@iabtechlabtcf/core';

const gvl = GVLFactory.getLatest();

Get version of GVL

import {GVLFactory} from '@iabtechlabtcf/testing';
import {GVL} from '@iabtechlabtcf/core';

const gvl = GVLFactory.getVersion(10);