This package has been deprecated

Author message:

botphus-core has been moved to @botphus/server-runner, please check detail in npm

botphus-core
TypeScript icon, indicating that this package has built-in type declarations

0.3.4 • Public • Published

botphus-core

botphusCorebotphus的核心测试程序,通过底层使用puppeteer提供web测试单元任务配置和执行.

build status codecov.io node version

功能特性

  • 使用任务单元组成的测试任务,可以按需执行特定部分.如:
    • 执行Web页面测试
    • 连接数据库/Redis缓存进行数据验证
    • Web页面事件捕获
  • 服务端和PC客户端均可使用

索引

快速使用

安装

npm install botphus-core --save

构建

npm run build

使用

import BotphusCore, {TaskMessage, TaskType, TaskTypeDomSubType} from 'botphus-core';
const botphusCore = new BotphusCore();
(async () => {
    // Create task cache file
    const taskNo = await botphusCore.createTask('Test task', new Date().getTime(), [
        {
            argments: ['div'],
            assertion: ['data === "wrong assertion rule"'],
            subType: TaskTypeDomSubType.SUB_TYPE_GET_TEXT,
            type: TaskType.TYPE_DOM
        }
    ]);
    // Start task & listen child process message
    const subProcess = await botphusCore.startTask(taskNo, 'https://bing.com/');
    // Get task exec message info
    subProcess.on('message', ([error, messageData]: TaskMessage) => {
        if (error) {
            global.console.log(error.stack);
        }
        global.console.log(messageData);
    });
    // Process close
    subProcess.on('close', (code) => {
        global.console.log('done:', code);
    });
})();

Package Sidebar

Install

npm i botphus-core

Weekly Downloads

11

Version

0.3.4

License

MIT

Unpacked Size

6.94 MB

Total Files

95

Last publish

Collaborators

  • cqggff