karma+requirejs+angular 测试

http://karma-runner.github.io/0.8/plus/RequireJS.html

karma 不是测试框架,只是一个运行测试框架的服务器

karma测试的原理是,将所有的文件都加载,然后执行对应的测试文件

使用到的前端自动化工具:

grunt bower npm 等

安装依赖:

  1. "karma": "^0.13.15",
  2. "karma-chrome-launcher": "^0.2.1",
  3. "karma-jasmine": "^0.3.6",
  4. "karma-mocha": "^0.2.0", //与jasmine 二选一即可,建议使用jasmine,mocha需要其他的断言包
  5. "karma-requirejs": "^0.2.2",

初始化配置文件:

  1. karma init

配置说明:

  1. // Karma configuration
  2. // Generated on Tue Nov 10 2015 09:39:31 GMT+0800 (中国标准时间)
  3. module.exports = function (config) {
  4. config.set({
  5. // base path that will be used to resolve all patterns (eg. files, exclude)
  6. basePath: ‘‘,
  7. // frameworks to use
  8. // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
  9. frameworks: [‘jasmine‘, ‘requirejs‘],
  10. // 配置要加载的文件
  11. //字符串形式的表示 通过<script>标签进行加载
  12. //对象形式的必须包含pattern、included属性,pattern进行匹配文件,included为true表示通过requirejs进行加载(后面会结束配置说明),否则通过script标签进行加载
  13. files: [
  14. ‘app/bower_components/angular/angular.js‘,
  15. ‘app/bower_components/angular-route/angular-route.js‘,
  16. ‘app/bower_components/angular-mocks/angular-mocks.js‘,
  17. ‘app/components/**/*.js‘,
  18. ‘app/view*/**/*.js‘,
  19. {pattern: ‘app/define/*.js‘, included: false},
  20. {pattern: ‘app/test/*.js‘, included: false},
  21. ‘test-main.js‘
  22. ],
  23. // list of files to exclude
  24. exclude: [
  25. ‘**/*.swp‘
  26. ],
  27. proxies: { //‘/static‘: ‘http://gstatic.com‘, ‘/log‘: ‘http://localhost:3000‘ //避免跨域,测试异步请求时如果指定完整url就是跨域,会出错,如果只写路径会请求到karma服务器localhsot:9876/ },

  28. // preprocess matching files before serving them to the browser
  29. // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
  30. preprocessors: {},
  31. // test results reporter to use
  32. // possible values: ‘dots‘, ‘progress‘
  33. // available reporters: https://npmjs.org/browse/keyword/karma-reporter
  34. reporters: [‘progress‘],
  35. // web server port
  36. port: 9876,
  37. // enable / disable colors in the output (reporters and logs)
  38. colors: true,
  39. // level of logging
  40. // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
  41. logLevel: config.LOG_INFO,
  42. // enable / disable watching file and executing tests whenever any file changes
  43. autoWatch: true,
  44. // start these browsers
  45. // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
  46. browsers: [‘Chrome‘],
  47. // Continuous Integration mode
  48. // if true, Karma captures browsers, runs the tests and exits
  49. singleRun: false
  50. })
  51. }

requirejs配置

  1. /**
  2. * Created by weichunhe on 2015/11/10.
  3. */
  4. var tests = [];
  5. for (var file in window.__karma__.files) { //这里的文件路径已经包含了 /base了
  6. if (window.__karma__.files.hasOwnProperty(file)) {
  7. if (/test1\.js$/.test(file)) {
  8. tests.push(file);
  9. }
  10. }
  11. }
  12. console.log(window.__karma__.files);
  13. console.log(tests);
  14. requirejs.config({
  15. // Karma serves files from ‘/base‘
  16. baseUrl: ‘/base/app/define‘,
  17. paths: {},
  18. shim: {},
  19. // ask Require.js to load these files (all our tests)
  20. deps: tests, //这里只包含需要测试的文件就可以了
  21. // start test run, once Require.js is done
  22. callback: window.__karma__.start
  23. });

启动:

cd node_modules/.bin/

karma.cmd start ../../karma.conf.js

karma:

files: 根据正则表达式去遍历文件系统,将符合条件的文件在/base下面通过web提供服务

将included指定为false时通过requirejs加载,如果指定为true 会出现  Uncaught Error: Mismatched anonymous define() module 这是因为在加载requirejs之前通过script标签进行加载的

使用requirejs时:

所有在deps里面的文件都会去加载执行,所以deps里面放的只是要测试的文件就可以了,要么define、要么直接写,不能require,这是异步了

angular 的 $controllerProvider.reigster 在 angular启动之后注册的controller测试时通过angular-mock就加载不进来了

如果是所有controller都在angular bootstrap之前注册了,就可以使用 angular-mocks ,否则还是不要用了,太麻烦了;直接angular测试

  1. $injector = angular.injector([‘app‘]); //执行这步之后 注册的controller可以injector获取到
  2. require(‘app‘).register.controller(‘testCtrl‘, function (name) {
  3. console.log(‘controller‘, name);
  4. });
  5. $injector.invoke(function ($controller) {
  6. $controller(‘testCtrl‘, {name: ‘testCtrl‘});
  7. });

来自为知笔记(Wiz)

时间: 2024-12-21 00:52:48

karma+requirejs+angular 测试的相关文章

浅谈HTML5单页面架构(一)——requirejs + angular + angular-route

本文转载自:http://www.cnblogs.com/kenkofox/p/4643760.html 心血来潮,打算结合实际开发的经验,浅谈一下HTML5单页面App或网页的架构. 众所周知,现在移动Webapp越来越多,例如天猫.京东.国美这些都是很好的例子.而在Webapp中,又要数单页面架构体验最好,更像原生app.简单来说,单页面App不需要频繁切换网页,可以局部刷新,整个加载流畅度会好很多. 废话就不多说了,直接到正题吧,浅谈一下我自己理解的几种单页面架构: 1.requirejs

AngularJS进阶(二十五)requirejs + angular + angular-route 浅谈HTML5单页面架构

requirejs + angular + angular-route 浅谈HTML5单页面架构 众所周知,现在移动Webapp越来越多,例如天猫.京东.国美这些都是很好的例子.而在Webapp中,又要数单页面架构体验最好,更像原生app.简单来说,单页面App不需要频繁切换网页,可以局部刷新,整个加载流畅度会好很多. 废话就不多说了,直接到正题吧,浅谈一下我自己理解的几种单页面架构: 1.requirejs+angular+angular-route(+zepto) 最后这个zepto可有可无

H5单页面架构:requirejs + angular + angular-route

说到项目架构,往往要考虑很多方面: 方便.例如使用jquery,必然比没有使用jquery方便很多,所以大部分网站都接入类似的库: 性能优化.包括加载速度.渲染效率: 代码管理.大型项目需要考虑代码的模块化,模块间低耦合高内聚,目的就为了团队合作效率: 可扩展性.这个不用说了. 学习成本.一个框架再好,团队新成员难以掌握,学习难度大,结果很容易造成代码混乱. 而根据实际经验来看,方便是必然首要地位,除此之外,应该是代码管理了.团队合作过程中,各种协作,代码冲突等等,都会给一个优秀框架带来各种奇怪

基于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 mocha angular angular-mock 测试

describe('工具方法测试', function () { var utilsModule; beforeEach(function () { module('Admin'); // module('app.menu'); // utilsModule = module('blocks.utils'); } ); it('数组转换方法测试', function () { var dataset = []; var arr = []; var level = 9999; // var uti

karma+requirejs

下面的介绍以karma能正常运行为前提,看karma系列文章:http://www.cnblogs.com/laixiangran/tag/Karma/ 目录结构 步骤 安装 npm install karma-requirejs --save-dev karma.conf.js /*** * Created by laixiangran on 2015/12/22. * karma单元测试配置文件 */ module.exports = function(config) { config.se

Grunt + Bower + Requirejs + Angular

http://www.tuicool.com/articles/ENbI7j3 时间 2014-07-27 22:08:46  Freewind.me原文  http://freewind.me/blog/20140727/2739.html 现在web开发的趋势是前后端分离.前端采用某些js框架,后端采用某些语言提供restful API,两者以json格式进行数据交互. 如果后端采用node.js,则前后端可以使用同一种语言,共享某些可重用的Js代码,并共享构建工具.但很多时候我们可能采用别

angular 测试

describe('Controllers: CheckListOverCtrl', function () { var $scope, ctrl, $httpBackend; var data = []; data.d = [{ name: 'name1', ProjectName: "ProjectName1", I_Category: "I_Category1", uName: "uName1", dName: "dName1&q

karma作为jQuery单元测试Runner

karma作为angular测试runner出现,如果你使用过karma一定感受到这很不错的javascript测试runner.简单干净的配置文件karma.config.js,以及karma init一些快捷的配置command.以及整套测试套件,如html2js,coverage.对于angular单元测试karma就是一个全生态的测试套件,能够简洁快速的搭建整个测试流程. 本文将尝试运用karma作为jQuery单元测试runner.对于jQuery这种DOM操作的框架,有时难于分离vi