npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jest-rdf

v1.8.1

Published

Jest utilities for RDF(JS)

Downloads

5,282

Readme

jest-rdf

Build status Coverage Status npm version

Jest test utilities for RDFJS, including several new matchers.

Installation

$ yarn install --save-dev jest-rdf

Configuration

In order to use matchers in your tests, you'll have to make sure that they are imported. This can be done by adding the following entry to your Jest configuration:

"jest": {
  "setupFilesAfterEnv": [ "jest-rdf" ]
}

If you are already using an existing test framework script file, make sure to add jest-rdf as follows to your file:

...
require('jest-rdf');

Optional: Typescript typings configuration

If you are using TypeScript, possibly in combination with ts-jest, you will need to import the typings of this package to make the TS compiler recognise the new matchers.

For this, include the following import at the top of each applicable test file:

import "jest-rdf";

API

toBeRdfIsomorphic

Check if two RDF graphs are isomorphic. An RDF graph is represented as an iterable of quads where the order of quads is not important.

const g1 = [
  quad(blankNode('b1'), namedNode('p1'), namedNode('o1'), namedNode('g1')),
  quad(blankNode('b1'), namedNode('p2'), namedNode('o2'), namedNode('g2')),
];
const g2 = [
  quad(blankNode('b2'), namedNode('p2'), namedNode('o2'), namedNode('g2')),
  quad(blankNode('b2'), namedNode('p1'), namedNode('o1'), namedNode('g1')),
];
expect(g1).toBeRdfIsomorphic(g2);
expect(dataset(g1)).toBeRdfIsomorphic(dataset(g2));

Also supports nested quads:

const g1 = [
  quad(quad(blankNode('b1'), namedNode('p1'), namedNode('o1'), namedNode('g1')), namedNode('p1'), namedNode('o1'), namedNode('g1')),
  quad(blankNode('b1'), namedNode('p2'), namedNode('o2'), namedNode('g2')),
];
const g2 = [
  quad(quad(blankNode('b2'), namedNode('p2'), namedNode('o2'), namedNode('g2')), namedNode('p2'), namedNode('o2'), namedNode('g2')),
  quad(blankNode('b2'), namedNode('p1'), namedNode('o1'), namedNode('g1')),
];
expect(g1).toBeRdfIsomorphic(g2);
expect(dataset(g1)).toBeRdfIsomorphic(dataset(g2));

toEqualRdfQuad

Check if two RDF Quads are equal.

Terms are compared under the semantics of toEqualRdfTerm.

const q1 = quad(namedNode('s1'), namedNode('p1'), namedNode('o1'), namedNode('g1'));
const q2 = quad(namedNode('s2'), namedNode('p2'), namedNode('o2'), namedNode('g2'));
expect(q1).toEqualRdfQuad(q2);

toEqualRdfQuadArray

Check if two RDF Quad arrays are equal.

Quads are compared under the semantics of toEqualRdfQuad.

const q1 = quad(namedNode('s1'), namedNode('p1'), namedNode('o1'), namedNode('g1'));
const q2 = quad(namedNode('s2'), namedNode('p2'), namedNode('o2'), namedNode('g2'));
expect([q1]).toEqualRdfQuadArray([q2]);

toEqualRdfTerm

Check if two RDF Terms are equal.

Blank nodes are always considered equal.

expect(namedNode('t1')).toEqualRdfTerm(namedNode('t2'));

toEqualRdfTermArray

Check if two RDF Term arrays are equal.

Terms are compared under the semantics of toEqualRdfTerm.

expect([namedNode('t1'), namedNode('t2')]).toEqualRdfTermArray([namedNode('t2'), namedNode('t3')]);

toBeRdfDatasetContaining

Check if a dataset contains all of the given quads.

const q1 = quad(namedNode('s1'), namedNode('p1'), namedNode('o1'), namedNode('g1'));
const q2 = quad(namedNode('s2'), namedNode('p2'), namedNode('o2'), namedNode('g2'));
const d = dataset([q1, q2]);
expect(d).toBeRdfDatasetContaining(q1);
expect(d).toBeRdfDatasetContaining(q1, q2);

toBeRdfDatasetMatching

Check if a dataset contains exactly the given amount of matching quads (default 1).

const q1 = quad(namedNode('s'), namedNode('p1'), namedNode('o1'), namedNode('g1'));
const q2 = quad(namedNode('s'), namedNode('p2'), namedNode('o2'), namedNode('g2'));
const d = dataset([q1, q2]);
expect(d).toBeRdfDatasetMatching({ subject: namedNode('s'), predicate: namedNode('p1') });
expect(d).toBeRdfDatasetMatching({ subject: namedNode('s') }, 2);

toBeRdfDatasetOfSize

Check if a dataset contains exactly the given amount of quads.

const q = quad(namedNode('s1'), namedNode('p1'), namedNode('o1'), namedNode('g1'));
const d = dataset([q]);
expect(d).toBeRdfDatasetOfSize(1);

License

This software is written by Ruben Taelman.

This code is released under the MIT license.