.Karma+Jasmine+karma-coverage

单元测试(模块测试)是开发者编写的一小段代码,用于检验被测代码的一个很小的、很明确的功能是否正确。通常而言,一个单元测试是用于判断某个特定条件(或者场景)下某个特定函数的行为。

Karma是一个基于Node.js的JavaScript测试执行过程管理工具( Test Runner ).。该工具可用于测试所有主流Web浏览器, 也可集成到CI ( Continuous integration ) 工具, 也可和其他代码编辑器一起使用.。这个测试工具的一个强大特性就是, 它可以监控(Watch)文件的变化, 然后自行执行。

jasmine 是一个行为驱动开发(TDD)测试框架, 一个js测试框架,它不依赖于浏览器、dom或其他js框架。具体语法参照:官方api

1.1 使用 Karma 对代码进行单元测试,首先需要安装一系列的相关插件。

创建fetest的文件夹,并进入

安装karma

npm install -g karma-cli复制代码
npm install karma --save-dev复制代码

安装各种相关的插件

npm install karma-jasmine karma-phantomjs-launcher jasmine-core --save-dev 复制代码

初始化,整体的配置选项如下:

karma init 复制代码
Which testing framework do you want to use ? Press tab to list possible options. Enter to move to the next question. > jasmine  Do you want to use Require.js ? This will add Require.js plugin. Press tab to list possible options. Enter to move to the next question. > no  Do you want to capture any browsers automatically ? Press tab to list possible options. Enter empty string to move to the next question. > PhantomJS > What is the location of your source and test files ? You can use glob patterns, eg. "js/*.js" or "test/**/*Spec.js". Enter empty string to move to the next question. >  Should any of the files included by the previous patterns be excluded ? You can use glob patterns, eg. "**/*.swp". Enter empty string to move to the next question. >  Do you want Karma to watch all the files and run the tests on change ? Press tab to list possible options. > no复制代码

启动karma

karma start复制代码

出现一下界面代表成功,可进行下一步操作,第一次需要安装phantomjs

npm install -g phantomjs复制代码

初始化完成之后,会在我们的项目中生成一个 karma.conf.js 文件,这个文件就是 Karma 的配置文件。

// Karma configuration // Generated on Sat Jun 02 2018 11:06:15 GMT+0800 (中国标准时间)  module.exports = function(config) {   config.set({      // base path that will be used to resolve all patterns (eg. files, exclude)     basePath: ‘‘,       // frameworks to use     // available frameworks: https://npmjs.org/browse/keyword/karma-adapter     frameworks: [‘jasmine‘], //使用何种断言库       // list of files / patterns to load in the browser     files: [        ‘./unit/**/*.js‘,     //被测试的代码路径        ‘./unit/**/*.spec.js‘ //测试代码路径     ],       // list of files / patterns to exclude     exclude: [     ],       // preprocess matching files before serving them to the browser     // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor     preprocessors: {     },       // test results reporter to use     // possible values: ‘dots‘, ‘progress‘     // available reporters: https://npmjs.org/browse/keyword/karma-reporter     reporters: [‘progress‘],      // web server port     port: 9876,       // enable / disable colors in the output (reporters and logs)     colors: true,       // level of logging     // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG     logLevel: config.LOG_INFO,       // enable / disable watching file and executing tests whenever any file changes     autoWatch: false,       // start these browsers     // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher     browsers: [‘PhantomJS‘],       // Continuous Integration mode     // if true, Karma captures browsers, runs the tests and exits     singleRun: true,//执行完是否退出      // Concurrency level     // how many browser should be started simultaneous     concurrency: Infinity   }) }复制代码

创建unit文件夹,并创建index.js、index.spec.js

index.js

function add (num){     if(num == 1){         return 1;     }else{         return num+1;     }  }复制代码

index.spec.js

describe("测试简单基本函数", function() {     it("+1测试", function() {         expect(add(1)).toBe(1);         expect(add(2)).toBe(5);     }); });复制代码

启动karma

karma start复制代码

成功了一个,错误一个。

1.2 使用 karma-coverage测试代码覆盖率

安装karma-coverage

npm install karma-coverage --save-dev复制代码

创建一个docs文件夹,用来存放生成的的测试文件,配置 karma.conf.js 文件:

// Karma configuration // Generated on Sat Jun 02 2018 19:49:27 GMT+0800 (中国标准时间)  module.exports = function(config) {   config.set({      // base path that will be used to resolve all patterns (eg. files, exclude)     basePath: ‘‘,       // frameworks to use     // available frameworks: https://npmjs.org/browse/keyword/karma-adapter     frameworks: [‘jasmine‘],       // list of files / patterns to load in the browser     files: [         ‘./unit/**/*.js‘,         ‘./unit/**/*.spec.js‘     ],       // list of files / patterns to exclude     exclude: [     ],       // preprocess matching files before serving them to the browser     // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor     preprocessors: {         ‘unit/**/*.js‘: [‘coverage‘]//对那些文件生成代码覆盖率检查      },       // test results reporter to use     // possible values: ‘dots‘, ‘progress‘     // available reporters: https://npmjs.org/browse/keyword/karma-reporter      reporters: [‘progress‘,‘coverage‘],//添加‘coverage‘      coverageReporter: {           type : ‘html‘,           //生成html页面           dir : ‘./docs/coverage/‘ //存放html页面位置     },      // web server port     port: 9876,       // enable / disable colors in the output (reporters and logs)     colors: true,       // level of logging     // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG     logLevel: config.LOG_INFO,       // enable / disable watching file and executing tests whenever any file changes     autoWatch: false,       // start these browsers     // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher     browsers: [‘PhantomJS‘],       // Continuous Integration mode     // if true, Karma captures browsers, runs the tests and exits     singleRun: true,      // Concurrency level     // how many browser should be started simultaneous     concurrency: Infinity   }) } 复制代码

启动karma

karma start复制代码

会在docs中生成一个coverage文件夹,里面有生成的测试代码覆盖率的可视化html页面。

打开index.html

修改index.spec.js

describe("测试简单基本函数", function() {     it("+1测试", function() {         expect(add(1)).toBe(1);     }); });复制代码
karma start复制代码

作者:eternalless
链接:https://juejin.im/post/5b13526d6fb9a01e831461e6
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

原文地址:https://www.cnblogs.com/yayaxuping/p/10678436.html

时间: 2024-11-06 07:35:14

.Karma+Jasmine+karma-coverage的相关文章

karma+jasmine自动化测试

1.安装nodejs,进入项目目录 2.安装karma和相关插件 npm install karma --save-dev npm install karma-jasmine karma-chrome-launcher --save-dev npm install -g karma-cli 3.执行karma start,可以看到karma会自动打开浏览器 4.进入./node_modules/karma/bin,执行karma init,就成功配置了karma自动化运行脚本 5.修改karma

使用karma+jasmine做单元测试

目的 使用karma和jasmine来配置自动化的js单元测试. Karma和Jasmine Karma是由Angular团队所开发的一种自动化测试工具.链接:http://karma-runner.github.io/ Karma会启动PhantomJS实例来运行测试,可以在其上使用Jasmine.Mocha等测试框架,也可以和Jenkins.Travis等CI(Continuous Integration,持续集成)进行整合. Jasmine是一个按照BDD(behavior-driven

Karma +Jasmine+ require JS进行单元测试并生成测试报告、代码覆盖率报告

1. 关于Karma Karma是一个基于Node.js的JavaScript测试执行过程管理工具(Test Runner). 该工具可用于测试所有主流Web浏览器,也可集成到CI(Continuous integration). 这个测试工具的一个强大特性就是,它可以监控(Watch)文件的变化,然后自行执行,通过console.log显示测试结果. 2. Karma集成Jasmine进行单元测试 a.初始化 NPM 实现初始化 NPM 包管理,创建 package.json 项目管理文件.

基于Angularjs+jasmine+karma的测试驱动开发(TDD)实例

简介(摘自baidu) 测试驱动开发,英文全称Test-Driven Development,简称TDD,是一种不同于传统软件开发流程的新型的开发方法.它要求在编写某个功能的代码之前先编写测试代码,然后只编写使测试通过的功能代码,通过测试来推动整个开发的进行.这有助于编写简洁可用和高质量的代码,并加速开发过程. 优势 高质量 简洁可用 便于重构 流程 与客户一起建立测试用例,此时的每个测试用例只是简单的一句话就可以,也可以引导客户一起建立测试用例表格,包含两列“输入/动作”,“期望的输出” 对所

Karma和Jasmine自动化单元测试

前言 在Java领域,Apache, Spring, JBoss 三大社区的开源库,包罗万象,但每个库都在其领域中都鹤立鸡群.而Nodejs中各种各样的开源库,却让人眼花缭乱,不知从何下手. Nodejs领域: Jasmine做单元测试,Karma自动化完成单元测试,Grunt启动Karma统一项目管理,Yeoman最后封装成一个项目原型模板,npm做nodejs的包依赖管理,bower做javascript的包依赖管理.Java领域:JUnit做单元测试, Maven自动化单元测试,统一项目管

Karma和Jasmine自动化单元测试——本质上还是在要开一个浏览器来做测试

1. Karma的介绍 Karma是Testacular的新名字,在2012年google开源了Testacular,2013年Testacular改名为Karma.Karma是一个让人感到非常神秘的名字,表示佛教中的缘分,因果报应,比Cassandra这种名字更让人猜不透! Karma是一个基于Node.js的JavaScript测试执行过程管理工具(Test Runner).该工具可用于测试所有主流Web浏览器,也可集成到CI(Continuous integration)工具,也可和其他代

利用Karma、Jasmine 做前端单元测试

<一> 使用技术 karma jasmine karma-coverage <二> 安装插件 1.nodejs 2.安装karma npm install -g karma npm install -g karma-cli 3.安装jasmine npm install -g jasmine 4.安装karma-coverage npm install -g karma-coverage <三>跑起一个程序 1.项目的目录结构: 2.add.js 文件 function

基于Karma 和 Jasmine 的Angular 测试(持续更新中)

最近对前端测试较感兴趣,尤其是Nodejs + Karma + Jasmine 对Angular 的测试.到处看看,做个记录吧,断断续续的更新. <一> 用Jasmine 测试 Angular 的service 1. 先扔代码吧: var app = angular.module('Application', []); app.factory('myService', function(){     var service  = {};     service.one  = 1;     se

基于Karma和Jasmine的AngularJS测试

1:工程目录结构 [email protected]:karma-t01$ tree -L 3.├── client│   ├── app│   │   └── user│   ├── bower_components│   │   ├── angular│   │   ├── angular-mocks│   │   └── angular-resource│   └── bower.json├── karma.conf.js└── readme 7 directories, 3 files