update integration tests to pass

This commit is contained in:
Feross Aboukhadijeh
2020-07-15 17:55:02 -07:00
parent 9b4dea29f4
commit 6b075ebe83
31 changed files with 47 additions and 42 deletions

View File

@@ -96,22 +96,24 @@ function screenshotCreateOrCompare (app, t, name) {
} catch (err) {
ssBuf = Buffer.alloc(0)
}
return wait().then(function () {
return app.browserWindow.capturePage()
}).then(function (buffer) {
if (ssBuf.length === 0) {
console.log('Saving screenshot ' + ssPath)
fs.writeFileSync(ssPath, buffer)
} else {
const match = compareIgnoringTransparency(buffer, ssBuf)
t.ok(match, 'screenshot comparison ' + name)
if (!match) {
const ssFailedPath = path.join(ssDir, name + '-failed.png')
console.log('Saving screenshot, failed comparison: ' + ssFailedPath)
fs.writeFileSync(ssFailedPath, buffer)
return app.browserWindow.focus()
.then(() => wait())
.then(() => app.browserWindow.capturePage())
.then(function (buffer) {
if (ssBuf.length === 0) {
console.log('Saving screenshot ' + ssPath)
fs.writeFileSync(ssPath, buffer)
} else {
const match = compareIgnoringTransparency(buffer, ssBuf)
t.ok(match, 'screenshot comparison ' + name)
if (!match) {
const ssFailedPath = path.join(ssDir, name + '-failed.png')
console.log('Saving screenshot, failed comparison: ' + ssFailedPath)
fs.writeFileSync(ssFailedPath, buffer)
}
}
}
})
})
}
// Compares two PNGs, ignoring any transparent regions in bufExpected.
@@ -177,6 +179,7 @@ function compareDownloadFolder (t, dirname, filenames) {
}
const expectedSorted = filenames.slice().sort()
const actualSorted = actualFilenames.slice().sort()
console.log(actualSorted)
t.deepEqual(actualSorted, expectedSorted, 'download folder contents: ' + dirname)
} catch (err) {
if (err.code === 'ENOENT') {
@@ -209,12 +212,14 @@ function compareTorrentFiles (t, pathActual, pathExpected) {
function compareTorrentFile (t, pathActual, fieldsExpected) {
const bufActual = fs.readFileSync(pathActual)
const fieldsActual = extractImportantFields(parseTorrent(bufActual))
if (Array.isArray(fieldsExpected.announce)) fieldsExpected.announce.sort()
t.deepEqual(fieldsActual, fieldsExpected, 'torrent contents: ' + pathActual)
}
function extractImportantFields (parsedTorrent) {
const { infoHash, name, announce, urlList, comment } = parsedTorrent
let { infoHash, name, announce, urlList, comment } = parsedTorrent
const priv = parsedTorrent.private // private is a reserved word in JS
announce = announce.slice().sort()
return { infoHash, name, announce, urlList, comment, private: priv }
}