* Minify stream, add stream stuff to releases again * Kill off a lot of tech debt, drop internal utilities from npm 1. Kill `module/`, internalize `bundler/`, privatize `test-utils/` We've been telling people to move elsewhere from these for a while, and it's about time we just pull the plug here and finally remove them. - We officially removed the bundler from the public API in v2.0, and that was the only one of these that was ever publicly documented. Usage should be low enough by now it shouldn't break anyone- I'm not seeing bundler bugs being reported anymore, either. - The `module/` utility was so narrow and caveat-filled that I'm not sure anyone really used it (even us core Mithril devs never really used it), and we only had it documented in the repo folder it lived in. I think only one bug was ever filed, and it's because it somehow ended up completely non-functional without any of us realizing it. - The test utilities were meant to be internal from day 1, but people started using it despite us core developers constantly telling people to look elsewhere and even the docs recommending specific alternatives without mention of our internal mocks. (Now if people would RTFM, that'd be nice...) 2. Add dedicated HTML test files to verify ospec and the promise polyfill, and ensure the promise tests are in pure ES5. These are made specially for those and should be much easier to just run now. 3. Fix the benchmark script to use the real DOM in browsers and to not require as many dependencies to create. Also, tweak them to be much more effective and precise on what's being tested. Previously, it was rendering to the HTML file itself, while now it's rendering to the `body`. This means in browsers, it's triggering layout and everything, benchmarking how well Mithril optimizes for style and layout recalcs, too. It also puts some pressure on the hyperscript parser attribute application, so that can be noticed as well. * Update dependencies
493 lines
12 KiB
JavaScript
493 lines
12 KiB
JavaScript
"use strict"
|
|
|
|
/* Based off of preact's perf tests, so including their MIT license */
|
|
/*
|
|
The MIT License (MIT)
|
|
|
|
Copyright (c) 2017 Jason Miller
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
// Note: this tests against the generated bundle in browsers, but it tests
|
|
// against `index.js` in Node. Please do keep that in mind while testing.
|
|
//
|
|
// Mithril and Benchmark.js are loaded globally via bundle in the browser, so
|
|
// this doesn't require a CommonJS sham polyfill.
|
|
|
|
// I add it globally just so it's visible in the tests.
|
|
/* global m, rootElem: true */
|
|
|
|
// set up browser env on before running tests
|
|
var isDOM = typeof window !== "undefined"
|
|
var Benchmark
|
|
|
|
if (isDOM) {
|
|
Benchmark = window.Benchmark
|
|
window.rootElem = null
|
|
} else {
|
|
/* eslint-disable global-require */
|
|
global.window = require("../test-utils/browserMock")()
|
|
global.document = window.document
|
|
// We're benchmarking renders, not our throttling.
|
|
global.requestAnimationFrame = function () {
|
|
throw new Error("This should never be called.")
|
|
}
|
|
global.m = require("../index.js")
|
|
global.rootElem = null
|
|
Benchmark = require("benchmark")
|
|
/* eslint-enable global-require */
|
|
}
|
|
|
|
function cycleRoot() {
|
|
if (rootElem) document.body.removeChild(rootElem)
|
|
document.body.appendChild(rootElem = document.createElement("div"))
|
|
}
|
|
|
|
// Initialize benchmark suite
|
|
Benchmark.options.async = true
|
|
Benchmark.options.initCount = 10
|
|
Benchmark.options.minSamples = 40
|
|
|
|
if (isDOM) {
|
|
// Wait long enough for the browser to actually commit the DOM changes to
|
|
// the screen before moving on to the next cycle, so things are at least
|
|
// reasonably fresh each cycle.
|
|
Benchmark.options.delay = 1 / 30 /* frames per second */
|
|
}
|
|
|
|
var suite = new Benchmark.Suite("mithril perf", {
|
|
onStart: function () {
|
|
this.start = Date.now()
|
|
},
|
|
|
|
onCycle: function (e) {
|
|
console.log(e.target.toString())
|
|
cycleRoot()
|
|
},
|
|
|
|
onComplete: function () {
|
|
console.log("Completed perf tests in " + (Date.now() - this.start) + "ms")
|
|
},
|
|
|
|
onError: function (e) {
|
|
console.error(e)
|
|
},
|
|
})
|
|
// eslint-disable-next-line no-unused-vars
|
|
var xsuite = {add: function(name) { console.log("skipping " + name) }}
|
|
|
|
suite.add("construct large vnode tree", {
|
|
setup: function () {
|
|
this.fields = []
|
|
|
|
for(var i=100; i--;) {
|
|
this.fields.push((i * 999).toString(36))
|
|
}
|
|
},
|
|
fn: function () {
|
|
m(".foo.bar[data-foo=bar]", {p: 2},
|
|
m("header",
|
|
m("h1.asdf", "a ", "b", " c ", 0, " d"),
|
|
m("nav",
|
|
m("a[href=/foo]", "Foo"),
|
|
m("a[href=/bar]", "Bar")
|
|
)
|
|
),
|
|
m("main",
|
|
m("form",
|
|
{onSubmit: function () {}},
|
|
m("input[type=checkbox][checked]"),
|
|
m("input[type=checkbox]"),
|
|
m("fieldset",
|
|
this.fields.map(function (field) {
|
|
return m("label",
|
|
field,
|
|
":",
|
|
m("input", {placeholder: field})
|
|
)
|
|
})
|
|
),
|
|
m("button-bar",
|
|
m("button",
|
|
{style: "width:10px; height:10px; border:1px solid #FFF;"},
|
|
"Normal CSS"
|
|
),
|
|
m("button",
|
|
{style: "top:0 ; right: 20"},
|
|
"Poor CSS"
|
|
),
|
|
m("button",
|
|
{style: "invalid-prop:1;padding:1px;font:12px/1.1 arial,sans-serif;", icon: true},
|
|
"Poorer CSS"
|
|
),
|
|
m("button",
|
|
{style: {margin: 0, padding: "10px", overflow: "visible"}},
|
|
"Object CSS"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
},
|
|
})
|
|
|
|
suite.add("rerender identical vnode", {
|
|
setup: function () {
|
|
this.cached = m(".foo.bar[data-foo=bar]", {p: 2},
|
|
m("header",
|
|
m("h1.asdf", "a ", "b", " c ", 0, " d"),
|
|
m("nav",
|
|
m("a", {href: "/foo"}, "Foo"),
|
|
m("a", {href: "/bar"}, "Bar")
|
|
)
|
|
),
|
|
m("main",
|
|
m("form", {onSubmit: function () {}},
|
|
m("input", {type: "checkbox", checked: true}),
|
|
m("input", {type: "checkbox", checked: false}),
|
|
m("fieldset",
|
|
m("label",
|
|
m("input", {type: "radio", checked: true})
|
|
),
|
|
m("label",
|
|
m("input", {type: "radio"})
|
|
)
|
|
),
|
|
m("button-bar",
|
|
m("button",
|
|
{style: "width:10px; height:10px; border:1px solid #FFF;"},
|
|
"Normal CSS"
|
|
),
|
|
m("button",
|
|
{style: "top:0 ; right: 20"},
|
|
"Poor CSS"
|
|
),
|
|
m("button",
|
|
{style: "invalid-prop:1;padding:1px;font:12px/1.1 arial,sans-serif;", icon: true},
|
|
"Poorer CSS"
|
|
),
|
|
m("button",
|
|
{style: {margin: 0, padding: "10px", overflow: "visible"}},
|
|
"Object CSS"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
},
|
|
fn: function () {
|
|
m.render(rootElem, this.cached)
|
|
},
|
|
})
|
|
|
|
suite.add("rerender same tree", {
|
|
fn: function () {
|
|
m.render(rootElem, m(".foo.bar[data-foo=bar]", {p: 2},
|
|
m("header",
|
|
m("h1.asdf", "a ", "b", " c ", 0, " d"),
|
|
m("nav",
|
|
m("a", {href: "/foo"}, "Foo"),
|
|
m("a", {href: "/bar"}, "Bar")
|
|
)
|
|
),
|
|
m("main",
|
|
m("form", {onSubmit: function () {}},
|
|
m("input", {type: "checkbox", checked: true}),
|
|
m("input", {type: "checkbox", checked: false}),
|
|
m("fieldset",
|
|
m("label",
|
|
m("input", {type: "radio", checked: true})
|
|
),
|
|
m("label",
|
|
m("input", {type: "radio"})
|
|
)
|
|
),
|
|
m("button-bar",
|
|
m("button",
|
|
{style: "width:10px; height:10px; border:1px solid #FFF;"},
|
|
"Normal CSS"
|
|
),
|
|
m("button",
|
|
{style: "top:0 ; right: 20"},
|
|
"Poor CSS"
|
|
),
|
|
m("button",
|
|
{style: "invalid-prop:1;padding:1px;font:12px/1.1 arial,sans-serif;", icon: true},
|
|
"Poorer CSS"
|
|
),
|
|
m("button",
|
|
{style: {margin: 0, padding: "10px", overflow: "visible"}},
|
|
"Object CSS"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
))
|
|
},
|
|
})
|
|
|
|
suite.add("add large nested tree", {
|
|
setup: function () {
|
|
var fields = []
|
|
|
|
for(var i=100; i--;) {
|
|
fields.push((i * 999).toString(36))
|
|
}
|
|
|
|
var NestedHeader = {
|
|
view: function () {
|
|
return m("header",
|
|
m("h1.asdf", "a ", "b", " c ", 0, " d"),
|
|
m("nav",
|
|
m("a", {href: "/foo"}, "Foo"),
|
|
m("a", {href: "/bar"}, "Bar")
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
var NestedForm = {
|
|
view: function () {
|
|
return m("form", {onSubmit: function () {}},
|
|
m("input[type=checkbox][checked]"),
|
|
m("input[type=checkbox]", {checked: false}),
|
|
m("fieldset",
|
|
m("label",
|
|
m("input[type=radio][checked]")
|
|
),
|
|
m("label",
|
|
m("input[type=radio]")
|
|
)
|
|
),
|
|
m("fieldset",
|
|
fields.map(function (field) {
|
|
return m("label",
|
|
field,
|
|
":",
|
|
m("input", {placeholder: field})
|
|
)
|
|
})
|
|
),
|
|
m(NestedButtonBar, null)
|
|
)
|
|
}
|
|
}
|
|
|
|
var NestedButtonBar = {
|
|
view: function () {
|
|
return m(".button-bar",
|
|
m(NestedButton,
|
|
{style: "width:10px; height:10px; border:1px solid #FFF;"},
|
|
"Normal CSS"
|
|
),
|
|
m(NestedButton,
|
|
{style: "top:0 ; right: 20"},
|
|
"Poor CSS"
|
|
),
|
|
m(NestedButton,
|
|
{style: "invalid-prop:1;padding:1px;font:12px/1.1 arial,sans-serif;", icon: true},
|
|
"Poorer CSS"
|
|
),
|
|
m(NestedButton,
|
|
{style: {margin: 0, padding: "10px", overflow: "visible"}},
|
|
"Object CSS"
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
var NestedButton = {
|
|
view: function (vnode) {
|
|
return m("button", m.censor(vnode.attrs), vnode.children)
|
|
}
|
|
}
|
|
|
|
var NestedMain = {
|
|
view: function () {
|
|
return m(NestedForm)
|
|
}
|
|
}
|
|
|
|
this.NestedRoot = {
|
|
view: function () {
|
|
return m("div.foo.bar[data-foo=bar]",
|
|
{p: 2},
|
|
m(NestedHeader),
|
|
m(NestedMain)
|
|
)
|
|
}
|
|
}
|
|
},
|
|
fn: function () {
|
|
m.render(rootElem, m(this.NestedRoot))
|
|
},
|
|
})
|
|
|
|
suite.add("mutate styles/properties", {
|
|
setup: function () {
|
|
function get(obj, i) { return obj[i % obj.length] }
|
|
var counter = 0
|
|
var classes = ["foo", "foo bar", "", "baz-bat", null, "fooga", null, null, undefined]
|
|
var styles = []
|
|
var multivalue = ["0 1px", "0 0 1px 0", "0", "1px", "20px 10px", "7em 5px", "1px 0 5em 2px"]
|
|
var stylekeys = [
|
|
["left", function (c) { return c % 3 ? c + "px" : c }],
|
|
["top", function (c) { return c % 2 ? c + "px" : c }],
|
|
["margin", function (c) { return get(multivalue, c).replace("1px", c+"px") }],
|
|
["padding", function (c) { return get(multivalue, c) }],
|
|
["position", function (c) { return c%5 ? c%2 ? "absolute" : "relative" : null }],
|
|
["display", function (c) { return c%10 ? c%2 ? "block" : "inline" : "none" }],
|
|
["color", function (c) { return ("rgba(" + (c%255) + ", " + (255 - c%255) + ", " + (50+c%150) + ", " + (c%50/50) + ")") }],
|
|
["border", function (c) { return c%5 ? (c%10) + "px " + (c%2?"solid":"dotted") + " " + stylekeys[6][1](c) : "" }]
|
|
]
|
|
var i, j, style, conf
|
|
|
|
for (i=0; i<1000; i++) {
|
|
style = {}
|
|
for (j=0; j<i%10; j++) {
|
|
conf = get(stylekeys, ++counter)
|
|
style[conf[0]] = conf[1](counter)
|
|
}
|
|
styles[i] = style
|
|
}
|
|
|
|
var count = 0
|
|
|
|
this.app = function () {
|
|
var vnodes = []
|
|
for (var index = ++count, last = index + 300; index < last; index++) {
|
|
vnodes.push(
|
|
m("div.booga",
|
|
{
|
|
class: get(classes, index),
|
|
"data-index": index,
|
|
title: index.toString(36)
|
|
},
|
|
m("input.dooga", {type: "checkbox", checked: index % 3 === 0}),
|
|
m("input", {value: "test " + Math.floor(index / 4), disabled: index % 10 ? null : true}),
|
|
m("div", {class: get(classes, index * 11)},
|
|
m("p", {style: get(styles, index)}, "p1"),
|
|
m("p", {style: get(styles, index + 1)}, "p2"),
|
|
m("p", {style: get(styles, index * 2)}, "p3"),
|
|
m("p.zooga", {style: get(styles, index * 3 + 1), className: get(classes, index * 7)}, "p4")
|
|
)
|
|
)
|
|
)
|
|
}
|
|
return vnodes
|
|
}
|
|
},
|
|
fn: function () {
|
|
m.render(rootElem, this.app())
|
|
},
|
|
})
|
|
|
|
suite.add("repeated add/removal", {
|
|
setup: function () {
|
|
var RepeatedHeader = {
|
|
view: function () {
|
|
return m("header",
|
|
m("h1.asdf", "a ", "b", " c ", 0, " d"),
|
|
m("nav",
|
|
m("a", {href: "/foo"}, "Foo"),
|
|
m("a", {href: "/bar"}, "Bar")
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
var RepeatedForm = {
|
|
view: function () {
|
|
return m("form", {onSubmit: function () {}},
|
|
m("input", {type: "checkbox", checked: true}),
|
|
m("input", {type: "checkbox", checked: false}),
|
|
m("fieldset",
|
|
m("label",
|
|
m("input", {type: "radio", checked: true})
|
|
),
|
|
m("label",
|
|
m("input", {type: "radio"})
|
|
)
|
|
),
|
|
m(RepeatedButtonBar, null)
|
|
)
|
|
}
|
|
}
|
|
|
|
var RepeatedButtonBar = {
|
|
view: function () {
|
|
return m(".button-bar",
|
|
m(RepeatedButton,
|
|
{style: "width:10px; height:10px; border:1px solid #FFF;"},
|
|
"Normal CSS"
|
|
),
|
|
m(RepeatedButton,
|
|
{style: "top:0 ; right: 20"},
|
|
"Poor CSS"
|
|
),
|
|
m(RepeatedButton,
|
|
{style: "invalid-prop:1;padding:1px;font:12px/1.1 arial,sans-serif;", icon: true},
|
|
"Poorer CSS"
|
|
),
|
|
m(RepeatedButton,
|
|
{style: {margin: 0, padding: "10px", overflow: "visible"}},
|
|
"Object CSS"
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
var RepeatedButton = {
|
|
view: function (vnode) {
|
|
return m("button", vnode.attrs, vnode.children)
|
|
}
|
|
}
|
|
|
|
var RepeatedMain = {
|
|
view: function () {
|
|
return m(RepeatedForm)
|
|
}
|
|
}
|
|
|
|
this.RepeatedRoot = {
|
|
view: function () {
|
|
return m("div.foo.bar[data-foo=bar]",
|
|
{p: 2},
|
|
m(RepeatedHeader, null),
|
|
m(RepeatedMain, null)
|
|
)
|
|
}
|
|
}
|
|
},
|
|
fn: function () {
|
|
m.render(rootElem, [m(this.RepeatedRoot)])
|
|
m.render(rootElem, [])
|
|
},
|
|
})
|
|
|
|
if (isDOM) {
|
|
window.onload = function () {
|
|
cycleRoot()
|
|
suite.run()
|
|
}
|
|
} else {
|
|
cycleRoot()
|
|
suite.run()
|
|
}
|