Rename to hkt.sh
This commit is contained in:
52
node_modules/puppeteer-extra-plugin-stealth/test/fpscanner.test.js
generated
vendored
Normal file
52
node_modules/puppeteer-extra-plugin-stealth/test/fpscanner.test.js
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
const test = require('ava')
|
||||
|
||||
const fpscanner = require('fpscanner')
|
||||
|
||||
const { getVanillaFingerPrint, getStealthFingerPrint, compareLooseVersionStrings } = require('./util')
|
||||
const Plugin = require('../.')
|
||||
|
||||
// Fix CI issues with old versions
|
||||
const isOldPuppeteerVersion = () => {
|
||||
const version = process.env.PUPPETEER_VERSION
|
||||
if (!version) {
|
||||
return false
|
||||
}
|
||||
if (version === '1.9.0' || version === '1.6.2') {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
test('vanilla: will fail multiple fpscanner tests', async t => {
|
||||
const fingerPrint = await getVanillaFingerPrint()
|
||||
const testedFingerPrints = fpscanner.analyseFingerprint(fingerPrint)
|
||||
const failedChecks = Object.values(testedFingerPrints).filter(
|
||||
val => val.consistent < 3
|
||||
)
|
||||
|
||||
if (isOldPuppeteerVersion()) {
|
||||
t.is(failedChecks.length, 8)
|
||||
} else {
|
||||
t.is(failedChecks.length, 7)
|
||||
}
|
||||
})
|
||||
|
||||
test('stealth: will not fail a single fpscanner test', async t => {
|
||||
const fingerPrint = await getStealthFingerPrint(Plugin)
|
||||
const testedFingerPrints = fpscanner.analyseFingerprint(fingerPrint)
|
||||
const failedChecks = Object.values(testedFingerPrints).filter(
|
||||
val => val.consistent < 3
|
||||
)
|
||||
|
||||
if (failedChecks.length) {
|
||||
console.warn('The following fingerprints failed:', failedChecks)
|
||||
}
|
||||
|
||||
if (compareLooseVersionStrings(fingerPrint.userAgent, '89.0.4339.0') >= 0) {
|
||||
// Updated navigator.webdriver behavior breaks the fpscanner tests.
|
||||
t.is(failedChecks.length, 1)
|
||||
t.is(failedChecks[0].name, 'WEBDRIVER')
|
||||
} else {
|
||||
t.is(failedChecks.length, 0)
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user