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-gl

v0.1.4

Published

Test helpers for server-side web-gl testing.

Downloads

16

Readme

jest-gl npm version Build Status

jest-gl contains various helper functions allow you to easily write browserless visual tests around your webGL code. The library uses headless-gl, looks-same, and pngjs2 packages to provide a small API for saving, diffing, and comparing images of a mocked webGL context.

Dependencies

  • headless-gl
  • jest-gl does not have a dependency on Jest. However, it was designed with Jest testing in mind.

Installation

npm i jest-gl --save-dev
yarn add jest-gl --dev

Getting Started

jest-gl uses file name postfixes to distingush between visual testing images:

  • .spec an image representing the desired look of the webGL application
  • .head an image representing the current look of the webGL applicaton
  • .diff an image representing a comparison of a .spec and .head file with highlighted differences

Names and the highlight color are all optionally configurable to match your organization's preferences. In your test file:

let jestGl = require('../index.js')({
  specPostfix: '.spec', // postfix tag to spec images - default shown
  headPostfix: '.head', // postfix tag to head images - default shown
  diffPostfix: '.diff', // postfix tag to diff images - default shown
  highlightColor: '#ff00ff', // diff highlight color - default shown (hot-pink)
})

jest-gl helper functions are now available!

// create a headless-gl context (https://github.com/stackgl/headless-gl)
const gl = require('gl')(500, 300, {preserveDrawingBuffer: true})

describe('gl visual tests', () => {
  beforeAll(() => {
    // mock asynchronous shader requests by reading from the file system
    http.get = jest.fn((url, responseType) =>
      jestGl.fromFile(url, (originalUrl) =>
        (originalUrl.indexOf('vs') > -1) ? './app/shaders/vs.glsl' : './app/shaders/fs.glsl'))

    canvas = jestGl.mockCanvas(gl, {
      width: {value: 300}, // does not indicate final PNG image size
      height: {value: 150}, // does not indicate final PNG image size
      clientWidth: {value: width}, // does not indicate final PNG image size
      clientHeight: {value: height}, // does not indicate final PNG image size
    })
  })
  it('initializes with a square and triangle', async () => {
    await app.init(canvas, gl) //start my webGL application
    let parity = await jestGl.imageParity(gl, __dirname, 'init', true, true)
    expect(parity).toBe(true)
  })
})

When you want to update your .spec.png files, set the TEST_MODE environment variable to 'update'.

process.env.TEST_MODE = 'update'

For an example of how to set up your test runner, check out ./runner.js. Example usage:

node runner.js # runs your tests
node runner.js -u # runs your tests but updates all .spec.png files

Documentation

fromFile(url, pathMapFn)

Mocks a network request by loading a local test fixture file instead.

  1. String url requested url

  2. Function pathMapFn function mapping url to a local resource

Returns a Promise containing a local test fixture file or error


mockCanvas(gl, defineProperties)

Creates a mock canvas element to add to the mocked gl context

  1. any gl the webGL context

  2. Object defineProperties collection to map to Object.defineProperties calls


snapshotPng(gl, imagePath, width, height)

Takes a rendered PNG image of the glCotext

  1. any gl the webGL context

  2. String imagePath path to save the screenshot

  3. Number width in px

  4. Number height in px

Returns a Promise resolving to the saved image path


imageParity(gl, dirName, imageName, strict = true, errorDiff = true)

Tests that two glContexts are the same. If found, differences are highlighted in a diff image.

  1. any gl the webGL context

  2. String dirName the image comparison directory

  3. String imageName the name of the image sans postfix and extension (test.spec.js => 'test')

  4. boolean strict do strict comparison (default = true)

  5. boolean errorDiff save a diff image on error (default = true)


Tips

  • jest-gl creates and deletes intermediate files. Best to ignore *.head.png and *.diff.png from source control.

Development Setup

npm install
npm run build
npm run test
npm run test:watch