angularjs自动化测试流程

目录结构:

首先我们来看一下一个project创建好之后,整个工程的目录结构:

angularjs自动化测试流程_第1张图片
web目录结构.png

其中工具会自动生成test目录,其中放置对controllers的单元测试代码,main.js和about.js都是自动生成的。一般情况下,app/scripts/controllers下的每个文件都对应一个测试代码。

代码逻辑:

业务代码:

/**
 * Created by jrzhaoxueyong on 2017/3/8.
 */
'use strict';

angular.module('webApp')
  .controller('LoginCtrl', function ($rootScope, $location, $scope, AuthService) {
    $scope.loginUser = function (credentials) {
      $scope.credentials = {
        username : '',
        password : ''
      };
      console.log('login:', credentials);
      AuthService.login(credentials);
      $location.path('/natgw')
    };

    $rootScope.isUserAuthenticated = function () {
      return AuthService.isAuthenticated();
    }
  });

测试代码:

'use strict';

describe('Controller: LoginCtrl', function () {

  // load the controller's module
  beforeEach(module('webApp'));

  it('should have a method to check user is authenticated', function () {
    // Initialize the controller and a mock scope
    inject(function ($controller, $rootScope, $location) {
      var scope = $rootScope.$new();
      var authService = {
        isAuthenticated: function () {
          return true;
        }
      };
      $controller('LoginCtrl', {
        $scope: scope,
        // place here mocked dependencies
        AuthService: authService,
        $rootScope: $rootScope,
        $location: $location
      });
      expect($rootScope.isUserAuthenticated()).toBe(true);
    });
  });
});

上述是最简单的测试套,针对Controller做相关测试其他如DirectivesFiltersFactories可以参考文章结尾的参考资料。代码样例是验证isUserAuthenticated方法的。下面对这段代码做一个解剖:

  • describe属性:

    describe参数是一个全局的Jasmine方法,定义了一个测试套。其中有两个参数:一个字符串表示这个测试套的标题;一个函数是实现这个测试套的具体代码块。

    describe("A Test Suite", function() {
    })
    
  • beforeEach属性:

    主要用来设置测试套的前置规则,相当于setup,与afterEach作用相似,afterEach作用于teardown相似。

    beforeEach(module('webApp')); //module即加载了webApp模块
    
  • it属性:

    一般一个it对应一个用例可以包含一个或多个expect方法,it有两个入参,第一个字符串表示这个用例的标题,第二个函数是这个用例的具体实现。

    it('should have a method to check user is authenticated', function () {
      });
    
  • inject属性:

    打桩一些参数和方法,比如业务代码中需要$scope$rootScope$locationAuthService四个入参,其中需要对AuthService进行打桩,因为这是自定义Service,此外$scope是局部参数,这里需要从$rootScope生成。其他两个参数都是全局参数,且不涉及自定义的属性。

    var scope = $rootScope.$new();
    var authService = {
      isAuthenticated: function () {
        return true;
      }
    };
    
  • $controller属性:

    这个属性很重要,它用来实例化controller,并把自己定义好的桩函数传递进去。这样后续expect就能得到想要的结果了。

    $controller('LoginCtrl', {
      $scope: scope,
      // place here mocked dependencies
      AuthService: authService,
      $rootScope: $rootScope,
      $location: $location
    });
    
  • expect属性:

    主要的测试函数,执行一个表达式,并对结果做验证。其中,验证的方法包括这里用到的toBetoEqualtoContaintoMatchtoBeDefined等。

    expect($rootScope.isUserAuthenticated()).toBe(true);
    

执行用例:

至此,整个测试用例就写完了,下面看看运行结果:

Controller\web> grunt test
angularjs自动化测试流程_第2张图片
测试结果.png

参考资料:

  • 如何在 AngularJS 中对控制器进行单元测试
  • angularjs中的单元测试实例
  • Jasmine
  • Unit Testing Best Practices in AngularJS
  • Unit and End to End Testing in AngularJS

你可能感兴趣的:(angularjs自动化测试流程)