import pkg from 'chai' import { HostShellExecute } from '../../src/host/host-shell-execute/index.js' import { Certd } from '@certd/certd' import { createOptions } from '../../../../test/options.js' const { expect } = pkg describe('HostShellExecute', function () { it('#execute', async function () { this.timeout(10000) const options = createOptions() options.args = { test: false } options.cert.email = 'xiaojunnuo@qq.com' options.cert.domains = ['*.docmirror.cn'] const plugin = new HostShellExecute(options) const certd = new Certd(options) const cert = await certd.readCurrentCert() const context = {} const uploadOpts = { cert, props: { script: 'ls ', accessProvider: 'aliyun-ssh' }, context } const ret = await plugin.doExecute(uploadOpts) for (const retElement of ret) { console.log('-----' + retElement) } await plugin.doRollback(uploadOpts) }) })