Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

html-normalizer

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-normalizer

Used to normalize html and jsx to strings so they can be used in assertions.

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31
increased by675%
Maintainers
1
Weekly downloads
 
Created
Source

Normalizer

Build Status

Normalizer is designed to help you write DOM tests; specifically DOM assertions. Let's test the following HTML.

<div id="testElement" class='some-class' style='display: none; background: red'>
  <span>Bob</span>
</div>

There are several assertion libraries with matchers designed to let you inspect DOM elements for properties, classes and style attributes. Those assertions typically look like this:

var dom = document.getElementById("testElement"); 

expect(dom).toHaveClass("some-class");
expect(dom.children.length).toEqual(1);
expect(dom).toHaveText("Bob");
expect(dom).toBeHidden();

I find that hard to read. Especially when testing large DOM trees. So I tried the following:

var dom = document.getElementById("testElement"); 
var expectedNode = document.createElement("div");
expectedNode.innerHTML = "<span style='background: red; display: none' class='some-class'><span>Bob</span></span>";

expect(dom.isNodeEqual(expectedNode)).toBeTruthy(); 

That test works, but when it fails I want to know how nodes differ. I went on to try the following:

var dom = document.getElementById("testElement"); 
var expectedHTML = "<span style='background: red; display: none' class='some-class'><span>Bob</span></span>";

expect(dom.outerHTML).toEqual(expectedHTML); 

The HTML is equal, but this test still fails because the HTML strings differ. The style and the class properties are in different order. I could rearrange them, but that would make for a brittle test. Also I really don't care to test that the background is red. I need a library to normalize the HTML (alphabetize / properties and styles) and let me white list the properties I want to test. Normalizer is that library. Using normalizer I can write:

var Normalizer = require("Normalizer");
var normalizer = new Normalizer();
var dom = document.getElementById("testElement"); 
var expectedHTML = "<span style='display: none' class='some-class'><span>Bob</span></span>";

var actual = normalizer.domNode(dom); //method to normalize a DOM node
var expected =  = normalizer.domString(dom); //method to normalize a DOM string
expect(actual).toEqual(expected); 

But it's even cooler with React's JSX

Concatenating HTML strings is no fun. Normalizer can normalize JSX components. Your project does not have to use React for you to write your assertions with JSX. You can normalize your dom node (maybe it a Backbone.el) and write your expectation using JSX. Your test can look like this:

var Normalizer = require("Normalizer");
var normalizer = new Normalizer();
var dom = document.getElementById("testElement"); 
var expectedHTML = (
  <span style={{display: none}} className='some-class'>
    <span>Bob</span>
  </span>
);

var actual = normalizer.domNode(dom); //method to normalize a DOM node
var expected =  = normalizer.reactComponent(expectedHTML); //method to normalize a JSX component
expect(actual).toEqual(expected); 

White listing styles and attributes.

Normalizer's constructor Normalizer(attributes, styles) takes 2 optional arguments.

  • attributes Array of attribute names to keep when normalizing the HTML. Defaults to ["style", "class"]
  • styles Array of style names to keep when normalizing the HTML. Defaults to ["display"]

Methods

Normalizer can return a normalized HTML string for 4 types of input.

  • normalizer.reactView(reactView)
  • normalizer.reactComponent(reactComponent)
  • normalizer.domNode(domNode)
  • normalizer.domString(htmlString)
To Do
  • Support for use in Require
  • Support use in build-less JS systems
  • Example usage using build transforms
  • Example usage using script type="text/jsx" tags

Keywords

FAQs

Package last updated on 30 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc