@tarojs/cli
Version:
cli tool for taro
75 lines (61 loc) • 2.77 kB
text/typescript
import * as path from 'node:path'
import { chalk } from '@tarojs/helper'
import { getPkgVersion } from '../util'
import { run } from './utils'
jest.mock('envinfo', () => {
const envinfo = jest.requireActual('envinfo')
return {
__esModule: true,
async run(data, options) {
const res = await envinfo.run(data, { ...options, json: true })
return JSON.parse(res)
},
}
})
const runInfo = run('info', ['commands/info'])
describe('info', () => {
it("should exit because there isn't a Taro project", async () => {
const exitSpy = jest.spyOn(process, 'exit') as jest.SpyInstance<void, any>
const logSpy = jest.spyOn(console, 'log')
exitSpy.mockImplementation(() => {
throw new Error()
})
logSpy.mockImplementation(() => {})
try {
await runInfo('')
} catch (error) {} // eslint-disable-line no-empty
expect(exitSpy).toBeCalledWith(1)
expect(logSpy).toBeCalledWith(chalk.red('找不到项目配置文件config/index,请确定当前目录是 Taro 项目根目录!'))
exitSpy.mockRestore()
logSpy.mockRestore()
})
it('should log information', async () => {
const logSpy = jest.spyOn(console, 'log')
logSpy.mockImplementation(() => {})
const appPath = path.resolve(__dirname, 'fixtures/default')
await runInfo(appPath)
expect(logSpy).toBeCalledTimes(1)
const res = logSpy.mock.calls[0][0]
const title = `Taro CLI ${getPkgVersion()} environment info`
expect(res.hasOwnProperty(title)).toBeTruthy()
const info = res[title]
expect('System' in info).toBeTruthy()
expect('Binaries' in info).toBeTruthy()
// envinfo 还不支持 yarn workspace
// expect('npmPackages' in info).toBeTruthy()
// Note: windows 操作系统可能不存在 System.Shell
expect(Object.keys(info.System)).toEqual(expect.arrayContaining(['OS']))
// Note: 环境内可能不包括 Yarn
expect(Object.keys(info.Binaries)).toEqual(expect.arrayContaining(['Node', 'npm']))
// expect(info.npmPackages.hasOwnProperty('@tarojs/helper')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('@tarojs/service')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('@tarojs/taro')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('@tarojs/taroize')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('@tarojs/webpack-runner')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('babel-plugin-transform-taroapi')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('eslint-config-taro')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('eslint-plugin-taro')).toBeTruthy()
// expect(info.npmPackages.hasOwnProperty('postcss-pxtransform')).toBeTruthy()
logSpy.mockRestore()
})
})