This commit is contained in:
Tiệp Sunflower
2023-03-06 14:23:39 +07:00
commit aa9c76c82f
2234 changed files with 449471 additions and 0 deletions

269
node_modules/selenium-webdriver/bidi/logInspector.js generated vendored Normal file
View File

@@ -0,0 +1,269 @@
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
const { FilterBy } = require('./filterBy')
const { ConsoleLogEntry, JavascriptLogEntry, GenericLogEntry } = require('./logEntries')
const LOG = {
TYPE_CONSOLE : 'console',
TYPE_JS_LOGS : 'javascript',
}
class LogInspector {
bidi
ws
constructor (driver, browsingContextIds) {
this._driver = driver
this._browsingContextIds = browsingContextIds
this.listener = {}
}
/**
* Subscribe to log event
* @returns {Promise<void>}
*/
async init () {
this.bidi = await this._driver.getBidi()
await this.bidi.subscribe('log.entryAdded', this._browsingContextIds)
}
/**
* @param kind
*/
logListener (kind) {
if (!(kind in this.listener)) {
this.listener[kind] = []
}
}
/**
* Listen to Console logs
* @param callback
* @returns {Promise<void>}
*/
async onConsoleEntry(callback, filterBy = undefined) {
if (filterBy != undefined && !(filterBy instanceof FilterBy)) {
throw Error(`Pass valid FilterBy object. Received: ${filterBy}`)
}
this.ws = await this.bidi.socket
this.ws.on('message', (event) => {
const { params } = JSON.parse(Buffer.from(event.toString()))
if (params?.type === LOG.TYPE_CONSOLE) {
let consoleEntry = new ConsoleLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.method,
params.realm,
params.args,
params.stackTrace
)
if (filterBy != undefined) {
if (params?.level === filterBy.getLevel()) {
callback(consoleEntry)
}
return
}
callback(consoleEntry)
}
})
}
/**
* Listen to JS logs
* @param callback
* @returns {Promise<void>}
*/
async onJavascriptLog(callback, filterBy = undefined) {
if (filterBy != undefined && !(filterBy instanceof FilterBy)) {
throw Error(`Pass valid FilterBy object. Received: ${filterBy}`)
}
this.ws = await this.bidi.socket
this.ws.on('message', (event) => {
const { params } = JSON.parse(Buffer.from(event.toString()))
if (params?.type === LOG.TYPE_JS_LOGS) {
let jsEntry = new JavascriptLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.stackTrace
)
if (filterBy != undefined) {
if (params?.level === filterBy.getLevel()) {
callback(jsEntry)
}
return
}
callback(jsEntry)
}
})
}
/**
* Listen to JS Exceptions
* @param callback
* @returns {Promise<void>}
*/
async onJavascriptException(callback) {
this.ws = await this.bidi.socket
let enabled =
LOG.TYPE_JS_EXCEPTION in this.listener ||
this.logListener(LOG.TYPE_JS_EXCEPTION)
this.listener[LOG.TYPE_JS_EXCEPTION].push(callback)
if (enabled) {
return
}
this.ws.on('message', (event) => {
const { params } = JSON.parse(Buffer.from(event.toString()))
if (params?.type === 'javascript' && params?.level === 'error') {
let jsErrorEntry = new JavascriptLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.stackTrace
)
this.listener[LOG.TYPE_JS_EXCEPTION].forEach((listener) => {
listener(jsErrorEntry)
})
}
})
}
/**
* Listen to any logs
* @param callback
* @returns {Promise<void>}
*/
async onLog(callback, filterBy = undefined) {
if (filterBy != undefined && !(filterBy instanceof FilterBy)) {
throw Error(`Pass valid FilterBy object. Received: ${filterBy}`)
}
this.ws = await this.bidi.socket
this.ws.on('message', (event) => {
const { params } = JSON.parse(Buffer.from(event.toString()))
if (params?.type === 'javascript') {
let jsEntry = new JavascriptLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.stackTrace
)
if (filterBy != undefined) {
if (params?.level === filterBy.getLevel()) {
callback(jsEntry)
}
return
}
callback(jsEntry)
return
}
if (params?.type === 'console') {
let consoleEntry = new ConsoleLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.method,
params.realm,
params.args,
params.stackTrace
)
if (filterBy != undefined) {
if (params?.level === filterBy.getLevel()) {
callback(consoleEntry)
}
return
}
callback(consoleEntry)
return
}
if (
params != undefined &&
!['console', 'javascript'].includes(params?.type)
) {
let genericEntry = new GenericLogEntry(
params.level,
params.text,
params.timestamp,
params.type,
params.stackTrace
)
if (filterBy != undefined) {
if (params?.level === filterBy.getLevel()) {
callback(genericEntry)
}
return
}
callback(genericEntry)
}
})
}
/**
* Unsubscribe to log event
* @returns {Promise<void>}
*/
async close () {
await this.bidi.unsubscribe('log.entryAdded', this._browsingContextIds)
}
}
/**
* initiate inspector instance and return
* @param driver
* @param browsingContextIds
* @returns {Promise<LogInspector>}
*/
async function getLogInspectorInstance (driver, browsingContextIds) {
let instance = new LogInspector(driver, browsingContextIds)
await instance.init()
return instance
}
/**
* API
* @type {function(*, *): Promise<LogInspector>}
*/
module.exports = getLogInspectorInstance