码迷,mamicode.com
首页 > Web开发 > 详细

前端之 —— node.js摸爬打滚之路(二)

时间:2017-07-14 23:09:44      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:return   console   require   mkdir   main   npm   exp   nod   替代   

这篇主要学习:

  • 测试框架mocha;
  • 断言库:should;
  • 测试率覆盖工具 istanbul;

创建并进入lesson3:

mkdir lesson3 && lesson3

创建main.js并编写测试函数:

var fibonacci = function(n) {
    if(typeof n !== ‘number‘){
        throw new Error(‘n should be a Number‘)
    }
    if(n < 0){
        throw new Error(‘n should >= 0‘)
    }
    if(n > 10){
        throw new Error(‘n should <= 10‘)
    }
    if(n === 0){
        return 0
    }
    if(n === 1){
        return 1
    }
    return fibonacci(n-1) + fibonacci(n-2)
}

if(require.main === module){
    var n = Number(process.argv[2])
    console.log(‘fibonacci(‘+ n +‘) is‘,fibonacci(n))
}

exports.fibonacci = fibonacci

 

lesson3下创建test文件夹,并创建main.test.js:

mkdir test && cd test && echo.>main.test.js

在main.test.js编写测试用例:

var main = require(‘../main‘)
var should = require(‘should‘)

describe(‘test/main.test.js‘,function(){
    it(‘should equal 0 when n === 0‘, function(){
        main.fibonacci(0).should.equal(0)
    })
    it(‘should equal 1 when n === 1‘, function(){
        main.fibonacci(1).should.equal(1)
    })
    it(‘should equal 55 when n === 10‘, function(){
        main.fibonacci(10).should.equal(55)
    })
    it(‘should throw when n > 10‘, function (){
    (function (){
      main.fibonacci(11)
    }).should.throw(‘n should <= 10‘)
  })
    it(‘should throw when n < 0‘, function(){
        (function(){
            main.fibonacci(-1)
        }).should.throw(‘n should >= 0‘)
    })
    it(‘should throw when n isnt Number‘, function(){
        (function(){
            main.fibonacci(‘逗比‘)
        }).should.throw(‘n should be a Number‘)
    })
})

cmd输出:

mocha

如下图所示则完成测试:

技术分享

安装一个 istanbul:

cnpm i istanbul -g

执行:

istanbul cover _mocha

(注:如果window下报找不到_mocha文件的错,就找到你电脑中mocha安装目录下的_mocha文件的位置替代_mocha,例:istanbul cover C:\Users\[用户名]\AppData\Roaming\npm\node_modules\mocha\bin\_mocha)

技术分享

可以看到,其中的分支覆盖率是 91.67%,行覆盖率是 87.5%。

前端之 —— node.js摸爬打滚之路(二)

标签:return   console   require   mkdir   main   npm   exp   nod   替代   

原文地址:http://www.cnblogs.com/geewonii/p/7172962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!