javascript - 在对 AngularJS Controller 进行单元测试时如何模拟网络延迟?

标签 javascript unit-testing angularjs mocking jasmine

我正在使用模块 ngMock 中的 $httpBackend 服务来模拟 GET 请求。来自AngularJS documentation ,这里是一个示例 Controller :

// The controller code
function MyController($scope, $http) {
  var authToken;

  $http.get('/auth.py').success(function(data, status, headers) {
    authToken = headers('A-Token');
    $scope.user = data;
  });

  $scope.saveMessage = function(message) {
    var headers = { 'Authorization': authToken };
    $scope.status = 'Saving...';

  $http.post('/add-msg.py', message, { headers: headers } ).success(function(response) {
    $scope.status = '';
  }).error(function() {
    $scope.status = 'ERROR!';
  });
  };
}

并且,这是相应的 Jasmine 测试规范:

// testing controller
describe('MyController', function() {
  var $httpBackend, $rootScope, createController;

  beforeEach(inject(function($injector) {
   // Set up the mock http service responses
   $httpBackend = $injector.get('$httpBackend');
   // backend definition common for all tests
   $httpBackend.when('GET', '/auth.py').respond({userId: 'userX'}, {'A-Token': 'xxx'});

   // Get hold of a scope (i.e. the root scope)
   $rootScope = $injector.get('$rootScope');
   // The $controller service is used to create instances of controllers
   var $controller = $injector.get('$controller');

   createController = function() {
     return $controller('MyController', {'$scope' : $rootScope });
   };
 }));


 afterEach(function() {
   $httpBackend.verifyNoOutstandingExpectation();
   $httpBackend.verifyNoOutstandingRequest();
 });


 it('should fetch authentication token', function() {
   $httpBackend.expectGET('/auth.py');
   var controller = createController();
   $httpBackend.flush();
 });


 it('should send msg to server', function() {
   var controller = createController();
   $httpBackend.flush();

   // now you don’t care about the authentication, but
   // the controller will still send the request and
   // $httpBackend will respond without you having to
   // specify the expectation and response for this request

   $httpBackend.expectPOST('/add-msg.py', 'message content').respond(201, '');
   $rootScope.saveMessage('message content');
   expect($rootScope.status).toBe('Saving...');
   $httpBackend.flush();
   expect($rootScope.status).toBe('');
 });

 it('should send auth header', function() {
   var controller = createController();
   $httpBackend.flush();

   $httpBackend.expectPOST('/add-msg.py', undefined, function(headers) {
     // check if the header was send, if it wasn't the expectation won't
     // match the request and the test will fail
     return headers['Authorization'] == 'xxx';
   }).respond(201, '');

   $rootScope.saveMessage('whatever');
     $httpBackend.flush();
   });
 });

如上所述,模拟请求在执行测试时立即响应。我想对模拟 GET 请求设置延迟。这可能吗?我有一种感觉 $timeout实现这一目标需要服务。

奖励问题:像这样设置延迟有什么缺点吗?在 AngularJS 单元测试中这样做合理吗?

最佳答案

为$httpBackend 创建一个装饰器,像这样:http://endlessindirection.wordpress.com/2013/05/18/angularjs-delay-response-from-httpbackend/

将其放入您的 app.js 中,在每次模拟或直通响应期间延迟 700 毫秒:

.config(function($provide) {
    $provide.decorator('$httpBackend', function($delegate) {
        var proxy = function(method, url, data, callback, headers) {
            var interceptor = function() {
                var _this = this,
                    _arguments = arguments;
                setTimeout(function() {
                    callback.apply(_this, _arguments);
                }, 700);
            };
            return $delegate.call(this, method, url, data, interceptor, headers);
        };
        for(var key in $delegate) {
            proxy[key] = $delegate[key];
        }
        return proxy;
    });
})

奖励答案:我相信时间不是您要在单元测试中测试的东西。但是可以肯定的是,您需要测试服务器错误,这就是模拟 http 派上用场的原因。

我在制作原型(prototype)时使用这样的延迟,这也是一个有效的场景。

关于javascript - 在对 AngularJS Controller 进行单元测试时如何模拟网络延迟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18917628/

相关文章:

javascript - map 是否有可能改变对象?

javascript - AngularJS - 共享服务对象被错误删除

javascript - 有没有一种方法可以仅使用 javascript( Angular 前端和 Node ,express 服务器代码)来允许用户帐户(注册+注册)?

javascript - Angular 应用已经在进行中

javascript - 将自定义 JS 按钮添加到预先存在的 div 中

javascript - 在第一行的第二张图片加载完成后开始加载第二行

javascript - 如何在vue-panzoom中实现zoomIn和zoomout

java - 关于单元测试结构的思考

c# - 使用 FluentAssertions 测试可选的等价性

unit-testing - 测试 nServicebus 中的消息 header