mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
// load ES6 modules in Node.js on the fly
|
|
require = require('esm')(module/*, options*/)
|
|
|
|
const path = require('path')
|
|
const {expect} = require('chai')
|
|
|
|
const {JSDOM} = require('jsdom')
|
|
|
|
function ready(callback) {
|
|
const state = document.readyState
|
|
|
|
if (state === 'complete' || state === 'interactive') {
|
|
return setTimeout(callback, 0)
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', callback)
|
|
}
|
|
module.exports.init = function(fixture = 'default', config = {}, markup) {
|
|
if (markup == null) {
|
|
markup = `<!DOCTYPE html>
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = ${JSON.stringify(config, null, 2)}
|
|
</script>
|
|
</body>
|
|
</html>`
|
|
}
|
|
const rootPath = path.join(__dirname, 'fixtures', fixture)
|
|
|
|
const dom = new JSDOM(markup)
|
|
dom.reconfigure({ url: 'file:///' + rootPath })
|
|
|
|
global.window = dom.window
|
|
global.document = dom.window.document
|
|
global.navigator = dom.window.navigator
|
|
global.location = dom.window.location
|
|
global.XMLHttpRequest = dom.window.XMLHttpRequest
|
|
|
|
// mimic src/core/index.js but for Node.js
|
|
function Docsify() {
|
|
this._init()
|
|
}
|
|
|
|
const proto = Docsify.prototype
|
|
|
|
const {initMixin} = require('../src/core/init')
|
|
const {routerMixin} = require('../src/core//router')
|
|
const {renderMixin} = require('../src/core//render')
|
|
const {fetchMixin} = require('../src/core/fetch')
|
|
const {eventMixin} = require('../src/core//event')
|
|
|
|
initMixin(proto)
|
|
routerMixin(proto)
|
|
renderMixin(proto)
|
|
fetchMixin(proto)
|
|
eventMixin(proto)
|
|
|
|
const NOT_INIT_PATTERN = '<!--main-->'
|
|
|
|
return new Promise((resolve, reject) => {
|
|
ready(() => {
|
|
const docsify = new Docsify()
|
|
// TODO: use callback instead of polling, but usually it works after 10ms
|
|
const id = setInterval(() => {
|
|
if (dom.window.document.body.innerHTML.indexOf(NOT_INIT_PATTERN) == -1) {
|
|
clearInterval(id)
|
|
return resolve({
|
|
docsify: docsify,
|
|
dom: dom
|
|
})
|
|
}
|
|
}, 10)
|
|
})
|
|
|
|
})
|
|
}
|
|
module.exports.expectSameDom = function(actual, expected) {
|
|
const WHITESPACES_BETWEEN_TAGS = />(\s\s+)</g
|
|
function replacer(match, group1) {
|
|
return match.replace(group1, '')
|
|
}
|
|
expect(actual.replace(WHITESPACES_BETWEEN_TAGS, replacer).trim())
|
|
.equal(expected.replace(WHITESPACES_BETWEEN_TAGS, replacer).trim())
|
|
}
|