Best JavaScript code snippet using istanbul
cos.js
Source:cos.js
1const fs = require('fs')2const { jp, sizeFormate } = require('./index')3const chalk = require('chalk')4const COS = require('cos-nodejs-sdk-v5')5const config = require('./cosConfig')6const MultiProgress = require('multi-progress')7const multi = new MultiProgress(process.stderr)8const cos = new COS({9 SecretId: config.secretId,10 SecretKey: config.secretKey,11 KeepAlive: false,12})13const getCosFileList = () => new Promise((resolve, reject) => {14 cos.getBucket({15 Bucket: config.bucket,16 Region: config.region,17 Prefix: config.prefix,18 }, function(err, data) {19 if (err) {20 console.log(err)21 reject(err)22 console.log(chalk.red('COSæ件å表è·å失败'))23 }24 resolve(data.Contents.filter(o => o.Key !== config.prefix).map(o => o.Key.replace(config.prefix, '')))25 })26})27const getLocalFileList = () => fs.readdirSync(jp('../assets'), 'utf8')28const diffFileList = (localFiles, cosFiles) => {29 const removeFiles = []30 cosFiles.forEach(file => {31 let index = localFiles.indexOf(file)32 if (index < 0) return removeFiles.push(file)33 localFiles.splice(index, 1)34 })35 if (cosFiles.includes('latest.yml')) {36 removeFiles.push('latest.yml')37 localFiles.push('latest.yml')38 }39 if (cosFiles.includes('version.json')) {40 removeFiles.push('version.json')41 localFiles.push('version.json')42 }43 return removeFiles44}45const deleteCosFiles = files => new Promise((resolve, reject) => {46 files = files.map(f => ({ Key: config.prefix + f }))47 cos.deleteMultipleObject({48 Bucket: config.bucket,49 Region: config.region,50 Objects: files,51 }, function(err, data) {52 if (err) {53 console.log(err)54 reject(err)55 }56 resolve()57 })58})59const createProgressBar = (name, spacekLen, total) => multi.newBar(60 `${` ${name}`.padEnd(spacekLen, ' ')} :status [:bar] :current/:total :percent :speed`, {61 complete: '=',62 incomplete: ' ',63 width: 30,64 total,65 })66const uploadFile = (fileName, len) => new Promise((resolve, reject) => {67 const filePath = jp('../assets', fileName)68 // let size = fs.statSync(filePath).size69 let bar = null70 let prevLoaded = 071 cos.sliceUploadFile({72 Bucket: config.bucket,73 Region: config.region,74 Key: config.prefix + fileName, /* å¿
é¡» */75 FilePath: filePath, /* å¿
é¡» */76 // TaskReady: function(taskId) { /* éå¿
é¡» */77 // console.log(taskId)78 // },79 onHashProgress(progressData) { /* éå¿
é¡» */80 if (!bar) {81 bar = createProgressBar(fileName, len, progressData.total)82 prevLoaded = 083 }84 bar.tick(progressData.loaded - prevLoaded, {85 status: 'æ ¡éªä¸',86 speed: sizeFormate(progressData.speed) + '/s',87 })88 prevLoaded = progressData.loaded89 // console.log('æ ¡éª', fileName, JSON.stringify(progressData))90 // console.log('æ ¡éª', JSON.stringify(progressData))91 },92 onProgress(progressData) { /* éå¿
é¡» */93 if (!bar) {94 bar = createProgressBar(fileName, len, progressData.total)95 prevLoaded = 096 }97 bar.tick(progressData.loaded - prevLoaded, {98 status: 'ä¸ä¼ ä¸',99 speed: sizeFormate(progressData.speed) + '/s',100 })101 prevLoaded = progressData.loaded102 // console.log('ä¸ä¼ ', fileName, JSON.stringify(progressData))103 // console.log('ä¸ä¼ ', JSON.stringify(progressData))104 },105 }, (err, data) => {106 if (err) {107 console.log(err)108 return reject(err)109 }110 bar.tick({111 status: 'å·²å®æ',112 speed: '',113 })114 resolve(data)115 })116})117module.exports = async() => {118 console.log(chalk.blue('æ£å¨è·åCOSæ件å表...'))119 const cosFiles = await getCosFileList()120 console.log(chalk.green('COSæ件å表è·åæå'))121 const uploadFiles = getLocalFileList()122 const removeFiles = diffFileList(uploadFiles, cosFiles)123 if (removeFiles.length) {124 console.log(chalk.blue('å
±éå é¤') + chalk.yellow(removeFiles.length) + chalk.blue('个æ件'))125 console.log(chalk.blue('æ£å¨ä»COSå é¤å¤ä½çæ件...'))126 await deleteCosFiles(removeFiles)127 console.log(chalk.green('å¤ä½æ件å é¤æå'))128 } else {129 console.log(chalk.blue('没æå¨COSåç°å¤ä½çæ件'))130 }131 if (uploadFiles.length) {132 console.log(chalk.blue('å
±éä¸ä¼ ') + chalk.green(uploadFiles.length) + chalk.blue('个æ件'))133 console.log(chalk.blue('æ£å¨ä¸ä¼ æ°æ件å°COS...'))134 let max = Math.max(...uploadFiles.map(f => f.length)) + 2135 let tasks = uploadFiles.map(f => uploadFile(f, max))136 await Promise.all(tasks)137 console.log(''.padEnd(Math.max(2, tasks.length - 2), '\n'))138 console.log(chalk.green('æææ件ä¸ä¼ å®æ'))139 } else {140 console.log(chalk.blue('没æéè¦ä¸ä¼ çæ件'))141 }...
files.js
Source:files.js
1const Events = require('events')2class Files extends Events{3 constructor(options, div) {4 super()5 this.data6 this.div = document.createElement('DIV')7 this.div.style.display = 'block'8 this.div.style.marginTop = options.margin / 2 + 'px'9 this.files = document.createElement('INPUT')10 // this.files.style.display = 'block'11 this.files.type = 'file'12 this.div.appendChild(this.files)13 this.removeFiles = document.createElement('DIV')14 this.removeFiles.style.display = 'none'15 this.removeFiles.style.float = 'right'16 this.removeFiles.style.marginRight = options.margin / 2 + 'px'17 this.removeFiles.style.fontSize = 'smaller'18 this.removeFiles.style.color = 'red'19 this.removeFiles.innerHTML = "remove files"20 this.removeFiles.style.cursor = 'pointer'21 this.div.appendChild(this.removeFiles)22 this.thumbs = document.createElement('DIV')23 this.thumbs.style.display = 'block'24 this.thumbs.style.marginTop = options.margin + 'px'25 this.thumbs.style.marginRight = options.margin + 'px'26 this.thumbs.style.width = '600px'27 this.div.appendChild(this.thumbs)28 div.appendChild(this.div)29 } // constructor30 init(data) {31 this.data = data32 this.update()33 this.listener()34 } // init35 update(data = this.data) {36 this.data = data37 if(this.data[0].value == 'image') {38 this.files.accept = 'image/png, image/jpeg, image/tiff'39 this.files.multiple = true40 } else {41 this.files.accept = 'audio/aiff'42 this.files.multiple = false43 }44 this.files.value = ''45 this.thumbs.innerHTML = ''46 if(this.data[6].length > 0) {47 this.removeFiles.style.display = "inline-block";48 if(this.data[0].value == 'image') {49 const height = 5050 const width = height * this.data[3].value // ratio51 for (let i = 0; i < this.data[6].length; i++) {52 const div = document.createElement("DIV")53 div.style.display = 'inline-block'54 div.style.width = width + 'px'55 div.style.height = height + 'px'56 div.style.marginRight = '2px'57 const image = new Image()58 image.src = this.data[6][i].file59 image.style.objectFit = 'cover'60 image.style.width = '100%'61 image.style.height = '100%'62 div.appendChild(image)63 this.thumbs.appendChild(div)64 }65 } else if (this.data[0].value == 'audio') {66 for (let i = 0; i < this.data[6].length; i++) {67 const audio = document.createElement("SPAN")68 audio.innerHTML = this.data[6][i].file.match(/([^\/]*)\/*$/)[1]69 this.thumbs.appendChild(audio)70 if (i < this.data[6].length - 1) {71 const br = document.createElement("BR")72 this.thumbs.appendChild(br)73 }74 }75 }76 } else {77 this.removeFiles.style.display = "none";78 }79 } // update80 // crop(image, width, height) {81 //82 // const naturalWidth = parseInt(image.naturalWidth)83 // const naturalHeight = parseInt(image.naturalHeight)84 //85 // if (static_cast<unsigned int>(image.cols) != width || static_cast<unsigned int>(image.rows) != height) {86 //87 // cv::Mat temp;88 //89 // double a = width / static_cast<double>(height);90 // double b = image.cols / static_cast<double>(image.rows);91 // if(a < b) { // portrait92 // unsigned int w, x0, x1;93 //94 // w = round(image.cols * (static_cast<float>(height) / image.rows));95 //96 // cv::Size size(w, height);97 // cv::resize(image, temp, size, 0, 0, cv::INTER_CUBIC);98 //99 // x0 = (temp.cols - width) / 2;100 // x1 = x0 + width;101 //102 // cv::Rect roi(x0, 0, x1, temp.rows);103 // image = temp(roi);104 //105 // } else { // landscape106 // unsigned int h, y0, y1;107 //108 // h = round(image.rows * (static_cast<float>(width) / image.cols));109 //110 // cv::Size size(width, h);111 // cv::resize(image, temp, size, 0, 0, cv::INTER_CUBIC);112 //113 // y0 = (temp.rows - height) / 2;114 // y1 = y0 + height;115 //116 // cv::Rect roi(0, y0, temp.cols, y1);117 // image = temp(roi);118 //119 // }120 // }121 //122 // } // crop123 listener() {124 this.files.addEventListener('change', () => {125 let files = []126 for (var i = 0; i < this.files.files.length; i++) {127 let fileObject = {}128 if(this.data[0].value == 'image') {129 fileObject = {130 file: this.files.files[i].path,131 width: 0,132 height: 0133 }134 }135 if (this.data[0].value == 'audio') {136 fileObject = {137 file: this.files.files[i].path,138 time: 0139 }140 }141 files.push(fileObject)142 }143 this.data[6] = files144 this.emit('update', files)145 }, false)146 this.removeFiles.addEventListener('click', () => {147 let files = []148 this.data[6] = files149 this.emit('update', files)150 }, false)151 } // listener152} // Range...
Using AI Code Generation
1var istanbul = require('istanbul');2var collector = new istanbul.Collector();3collector.add({4 'path/to/file1.js': {5 s: { 1: 1, 2: 0, 3: 1 },6 b: { 1: [ 1, 0 ], 2: [ 1, 1 ] },7 f: { 1: 1, 2: 1 },8 fnMap: { 1: { name: 'foo', line: 1, loc: { start: { line: 1, column: 0 }, end: { line: 1, column: 3 } } }, 2: { name: 'bar', line: 2, loc: { start: { line: 2, column: 4 }, end: { line: 2, column: 7 } } } },9 statementMap: { 1: { start: { line: 1, column: 0 }, end: { line: 1, column: 3 } }, 2: { start: { line: 2, column: 0 }, end: { line: 2, column: 3 } }, 3: { start: { line: 2, column: 4 }, end: { line: 2, column: 7 } } },10 branchMap: { 1: { line: 2, type: 'if', locations: [ [Object], [Object] ] }, 2: { line: 2, type: 'binary-expr', locations: [ [Object], [Object] ] } }11 }12});13collector.removeFiles(['path/to/file1.js']);14console.log(collector.files());15var istanbul = require('istanbul');16var collector = new istanbul.Collector();17collector.add({18 'path/to/file1.js': {19 s: { 1: 1, 2: 0, 3: 1 },20 b: { 1: [ 1, 0 ], 2: [ 1, 1 ] },21 f: { 1: 1, 2:
Using AI Code Generation
1var istanbul = require('istanbul'),2 collector = new istanbul.Collector(),3 reporter = new istanbul.Reporter(),4 sync = false;5var report = istanbul.Report.create('html', {6});7collector.add({8 'test.js': {9 s: {10 },11 b: {},12 f: {13 },14 fnMap: {15 1: {16 loc: {17 start: {18 },19 end: {20 }21 }22 },23 2: {24 loc: {25 start: {26 },27 end: {28 }29 }30 },31 3: {32 name: '(anonymous_3)',33 loc: {34 start: {35 },36 end: {37 }38 }39 }40 },41 statementMap: {42 1: {43 start: {44 },45 end: {46 }47 },48 2: {49 start: {50 },51 end: {52 }53 },54 3: {55 start: {56 },57 end: {58 }59 }60 }61 }62});63report.writeReport(collector, sync);64var istanbul = require('istanbul'),
Using AI Code Generation
1var istanbul = require('istanbul');2var collector = new istanbul.Collector();3var reporter = new istanbul.Reporter();4var sync = false;5collector.add({ path: 'coverage/coverage.json' });6reporter.add('lcov');7reporter.write(collector, sync, function () {8 console.log('All reports generated');9});10{11 "scripts": {12 },13 "devDependencies": {14 }15}16var istanbul = require('istanbul');17var collector = new istanbul.Collector();18var reporter = new istanbul.Reporter();19var sync = false;20collector.add({ path: 'coverage/coverage.json' });21reporter.add('lcov');22reporter.write(collector, sync, function () {23 console.log('All reports generated');24});25{26 "scripts": {27 },28 "devDependencies": {29 }30}
Using AI Code Generation
1var istanbul = require('istanbul-api');2var mapStore = istanbul.libReport.create('json');3var coverageMap = istanbul.libCoverage.createCoverageMap({});4var sync = true;5istanbul.utils.removeFiles(coverageMap, sync, [ 'test.js' ]);6var report = istanbul.utils.summarizeCoverage(coverageMap);7console.log(report);8{ total: { lines: { total: 0, covered: 0, skipped: 0, pct: 0 },9 statements: { total: 0, covered: 0, skipped: 0, pct: 0 },10 functions: { total: 0, covered: 0, skipped: 0, pct: 0 },11 branches: { total: 0, covered: 0, skipped: 0, pct: 0 } },12 files: {} }13{ total: { lines: { total: 0, covered: 0, skipped: 0, pct: 0 },14 statements: { total: 0, covered: 0, skipped: 0, pct: 0 },15 functions: { total: 0, covered: 0, skipped: 0, pct: 0 },16 branches: { total: 0, covered: 0, skipped: 0, pct: 0 } },17 files: {} }18{ total: { lines: { total: 1, covered: 1, skipped: 0, pct: 100 },19 statements: { total: 1, covered: 1, skipped: 0, pct: 100 },20 functions: { total: 1, covered: 1, skipped: 0, pct: 100 },21 branches: { total: 0, covered: 0, skipped: 0, pct: 0 } },22 files: { 'test.js': { path: 'test.js',23 statementMap: { '0': [Object] },24 s: { '0': 1 },25 f: { '0': 1 },26 fnMap: { '0': [Object] },27 b: {},28 branchMap: {},29 l: { '0': 1 },30 lineMap: { '0': [Object] } } } }
Using AI Code Generation
1var istanbul = require('istanbul');2var collector = new istanbul.Collector();3var reporter = new istanbul.Reporter();4var sync = false;5collector.getFinalCoverage();6reporter.addAll(['lcov']);7reporter.write(collector, sync, function () {8 console.log('All reports generated');9});
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!