initDOM.js 1.61 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const fs = require('fs')
const http = require('http')
const jsdom = require('jsdom')
const path = require('path')

let getMarkup
let resourceLoader

if (process.env.E2E_FILE) {
  const file = path.isAbsolute(process.env.E2E_FILE)
    ? process.env.E2E_FILE
    : path.join(process.cwd(), process.env.E2E_FILE)

  const markup = fs.readFileSync(file, 'utf8')
  getMarkup = () => markup

  resourceLoader = (resource, callback) => callback(
    null,
    fs.readFileSync(path.join(path.dirname(file), resource.url.pathname), 'utf8')
  )
} else if (process.env.E2E_URL) {
  getMarkup = () => new Promise(resolve => {
    http.get(process.env.E2E_URL, (res) => {
      let rawData = ''
      res.on('data', chunk => rawData += chunk)
      res.on('end', () => resolve(rawData))
    })
  })

Fabrizio Castellarin's avatar
Fabrizio Castellarin committed
30
  resourceLoader = (resource, callback) => resource.defaultFetch(callback)
31
32
33
34
35
36
37
38
39
40
} else {
  it.only('can run jsdom (at least one of "E2E_FILE" or "E2E_URL" environment variables must be provided)', () => {
    expect(new Error('This isn\'t the error you are looking for.')).toBeUndefined()
  })
}

export default feature => new Promise(async resolve => {
  const markup = await getMarkup()
  const host = process.env.E2E_URL || 'http://localhost:3000'
  const doc = jsdom.jsdom(markup, {
Fabrizio Castellarin's avatar
Fabrizio Castellarin committed
41
42
43
    features: {
      FetchExternalResources: ['script', 'css'],
      ProcessExternalResources: ['script'],
44
    },
Fabrizio Castellarin's avatar
Fabrizio Castellarin committed
45
46
    created: (_, win) => win.addEventListener('ReactFeatureDidMount', () => resolve(doc), true),
    deferClose: true,
47
48
49
50
51
    resourceLoader,
    url: `${host}#${feature}`,
    virtualConsole: jsdom.createVirtualConsole().sendTo(console),
  })

Fabrizio Castellarin's avatar
Fabrizio Castellarin committed
52
  doc.close()
53
})