<html>
<head>
  <meta name="referrer" content="always">
  <link href="../node_modules/mocha/mocha.css" rel="stylesheet">
  <script src="jquery-2.0.3.min.js"></script>
</head>
<body>

<div id="mocha"></div>

<script type="text/javascript" charset="utf-8">
(function() {
  // Deprecated APIs are still supported and should be tested.
  process.throwDeprecation = false

  const path = require('path')
  const electron = require('electron')
  const { remote, ipcRenderer } = electron

  // Set up chai-as-promised here first to avoid conflicts
  // It must be loaded first or really strange things happen inside
  // chai that cause test failures
  // DO NOT MOVE, REMOVE OR EDIT THIS LINE
  require('chai').use(require('chai-as-promised'))

  // Check if we are running in CI.
  const isCi = remote.getGlobal('isCi')

  if (!isCi) {
    const win = remote.getCurrentWindow()
    win.show()
    win.focus()
  }

  // Show DevTools.
  document.oncontextmenu = (e) => {
    remote.getCurrentWindow().inspectElement(e.clientX, e.clientY)
  }

  // Rediret all output to browser.
  if (isCi) {
    global.__defineGetter__('console', function () {
      return {
        log: (...args) => ipcRenderer.send('console.log', args),
        error: (...args) => ipcRenderer.send('console.error', args)
      }
    })
  }

  const Mocha = require('mocha')
  const mochaOptions = {}
  if (process.env.MOCHA_REPORTER) {
    mochaOptions.reporter = process.env.MOCHA_REPORTER
  }
  if (process.env.MOCHA_MULTI_REPORTERS) {
    mochaOptions.reporterOptions = {
      reporterEnabled: process.env.MOCHA_MULTI_REPORTERS
    }
  }
  const mocha = new Mocha(mochaOptions)

  if (!process.env.MOCHA_REPORTER) {
    mocha.ui('bdd').reporter(isCi ? 'tap' : 'html')
  }
  mocha.timeout(isCi ? 30000 : 10000)

  const query = Mocha.utils.parseQuery(window.location.search || '')
  if (query.grep) mocha.grep(query.grep)
  if (query.invert) mocha.invert()

  // Read all test files.
  const walker = require('walkdir').walk(path.dirname(__dirname), {
    no_recurse: true
  })

  const crashSpec = 'api-crash-reporter-spec.js'

  // This allows you to run specific modules only:
  // npm run test -match=menu
  const moduleMatch = process.env.npm_config_match
    ? new RegExp(process.env.npm_config_match, 'g')
    : null

  walker.on('file', (file) => {
    if (/-spec\.js$/.test(file) && !file.includes(crashSpec) &&
        (!moduleMatch || moduleMatch.test(file))) {
      mocha.addFile(file)
    }
  })

  walker.on('end', () => {
    if (!process.env.npm_config_match || new RegExp(process.env.npm_config_match, 'g').test(crashSpec)) {
      mocha.addFile(path.resolve(__dirname, '..', crashSpec))
    }

    const runner = mocha.run(() => {
      // Ensure the callback is called after runner is defined
      setTimeout(() => {
        if (isCi && runner.hasOnly) {
          try {
            throw new Error('A spec contains a call to it.only or describe.only and should be reverted.')
          } catch (error) {
            console.error(error.stack || error)
          }
          ipcRenderer.send('process.exit', 1)
          return
        }

        Mocha.utils.highlightTags('code')

        if (isCi) {
          ipcRenderer.send('process.exit', runner.failures)
        }
      }, 0)
    })
  })
})()
</script>
</body>
</html>