8

有谁知道如何在角度 e2e 测试中模拟 $httpBackend ?这个想法是在 travis-ci 上运行测试时存根 XHR 请求。我正在使用 karma 来代理我在 travis 上运行的 rails 应用程序的资产和部分。我想在没有真正数据库查询的情况下进行验收测试。

这是我的业力配置文件的一部分:

...
files = [
  MOCHA,
  MOCHA_ADAPTER,

  'spec/javascripts/support/angular-scenario.js',
  ANGULAR_SCENARIO_ADAPTER,

  'spec/javascripts/support/angular-mocks.js',
  'spec/javascripts/e2e/**/*_spec.*'
];
...

proxies = {
  '/app': 'http://localhost:3000/',
  '/assets': 'http://localhost:3000/assets/'
};
...

这是我的规范文件的一部分:

beforeEach(inject(function($injector){
  browser().navigateTo('/app');
}));

it('should do smth', inject(function($rootScope, $injector){
  input('<model name>').enter('smth');
  //this is the point where I want to stub real http query
  pause();
}));

我尝试通过 $injector 接收 $httpBackend 服务:

$injector.get('$httpBackend')

但这不是在我的测试运行的 iframe 中使用的那个。

我的下一次尝试是使用 angular.scenario.dsl,这里是代码示例:

angular.scenario.dsl('mockHttpGet', function(){
  return function(path, fakeResponse){
    return this.addFutureAction("Mocking response", function($window, $document, done) {
      // I have access to window and document instances 
      // from iframe where my tests run here
      var $httpBackend =  $document.injector().get(['$httpBackend']);
      $httpBackend.expectGET(path).respond(fakeResponse)
      done(null);
    });
  };
});

使用示例:

it('should do smth', inject(function($rootScope, $injector){
  mockHttpGet('<path>', { /* fake data */ });
  input('search.name').enter('mow');
  pause();
}));

这会导致以下错误:

<$httpBackend listing>  has no method 'expectGET'

所以,在这一点上,我不知道下一步。有没有人尝试过这样做,这种类型的存根真的可能吗?

4

3 回答 3

7

如果您真的想在 E2E 测试中模拟后端(这些测试称为场景,而规格用于单元测试),那么这就是我在之前的项目中所做的。

我正在测试的应用程序被称为studentsApp. 这是一个通过查询 REST api 来搜索学生的应用程序。我想在不实际查询该 api 的情况下测试应用程序。

我创建了一个名为studentsAppDev我注入studentsApp和注入的 E2E 应用程序ngMockE2E。在那里,我定义了 mockBackend 应该期待什么调用以及返回什么数据。以下是我的studentsAppDev文件的示例:

"use strict";

// This application is to mock out the backend. 
var studentsAppDev = angular.module('studentsAppDev', ['studentsApp', 'ngMockE2E']);
studentsAppDev.run(function ($httpBackend) {

    // Allow all calls not to the API to pass through normally
    $httpBackend.whenGET('students/index.html').passThrough();

    var baseApiUrl = 'http://localhost:19357/api/v1/';
    var axelStudent = {
        Education: [{...}],
        Person: {...}
    };
    var femaleStudent = {
        Education: [{...}],
        Person: {...}
    };
    $httpBackend.whenGET(baseApiUrl + 'students/?searchString=axe&')
        .respond([axelStudent, femaleStudent]);
    $httpBackend.whenGET(baseApiUrl + 'students/?searchString=axel&')    
        .respond([axelStudent, femaleStudent]);
    $httpBackend.whenGET(baseApiUrl + 'students/?searchString=axe&department=1&')
        .respond([axelStudent]);
    $httpBackend.whenGET(baseApiUrl + 'students/?searchString=axe&department=2&')
        .respond([femaleStudent]);
    $httpBackend.whenGET(baseApiUrl + 'students/?searchString=axe&department=3&')    
        .respond([]);

    ...

    $httpBackend.whenGET(baseApiUrl + 'departments/?teachingOnly=true')
        .respond([...]);
    $httpBackend.whenGET(baseApiUrl + 'majors?organization=RU').respond([...]);
});

然后,我在我的 Jenkins CI 服务器中迈出了第一步,将其替换为studentsApp并在主 index.html 文件中studentsAppDev添加对的引用。angular-mocks.js

于 2013-06-24T21:42:18.450 回答
1

模拟你的后端是构建复杂 Angular 应用程序的重要一步。它允许在不访问后端的情况下完成测试,您无需测试两次,并且需要担心的依赖项更少。

Angular Multimocks是一种简单的方法来测试您的应用程序在来自 API 的不同响应下的行为方式。

它允许您将不同场景的模拟 API 响应集定义为 JSON 文件。

它还允许您轻松更改场景。它通过允许您从不同的模拟文件组成“场景”来做到这一点。

如何将其添加到您的应用程序

将所需文件添加到您的页面后,只需将scenario其作为依赖项添加到您的应用程序:

angular
  .module('yourAppNameHere', ['scenario'])
  // Your existing code here...

一旦你把它添加到你的应用程序中,你就可以开始为 API 调用创建模拟了。

假设您的应用进行了以下 API 调用:

$http.get('/games').then(function (response) {
  $scope.games = response.data.games;
});

您可以创建一个default模拟文件:

示例someGames.json

{
  "httpMethod": "GET",
  "statusCode": 200,
  "uri": "/games",
  "response": {
    "games": [{"name": "Legend of Zelda"}]
  }
}

当你加载你的应用程序时,调用/games将返回200并且{"games": [{"name": "Legend of Zelda"}]}

现在假设您想为同一个 API 调用返回不同的响应,您可以通过更改 URL 将应用程序置于不同的场景中,例如?scenario=no-games

no-games场景可以使用不同的模拟文件,可以这样说:

示例noGames.json

{
  "httpMethod": "GET",
  "statusCode": 200,
  "uri": "/games",
  "response": {
    "games": []
  }
}

现在,当您加载应用程序时,调用/games将返回200并且{"games": []}

场景由清单中的各种 JSON 模拟组成,如下所示:

{
  "_default": [
    "games/someGames.json"
  ],
  "no-games": [
    "games/noGames.json"
  ]
}

然后,您可以排除模拟文件并去除scenario生产应用程序中的依赖项。

于 2016-01-25T22:40:32.453 回答
0

这感觉更像是单元/规范测试。一般来说,您应该在单元/规范测试中使用模拟,而不是 e2e/集成测试。基本上,将 e2e 测试视为对一个主要集成的应用程序的断言......模拟事物有点违背 e2e 测试的目的。事实上,我不确定 karam 如何将 angular-mocks.js 插入到正在运行的应用程序中。

规格测试可能看起来像......

describe('Controller: MainCtrl', function () {
    'use strict';

    beforeEach(module('App.main-ctrl'));

    var MainCtrl,
        scope,
        $httpBackend;

    beforeEach(inject(function ($controller, $rootScope, $injector) {
        $httpBackend = $injector.get('$httpBackend');
        $httpBackend.when('GET', '/search/mow').respond([
            {}
        ]);
        scope = $rootScope.$new();
        MainCtrl = $controller('MainCtrl', {
            $scope: scope
        });
    }));

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

    it('should search for mow', function () {
        scope.search = 'mow';
        $httpBackend.flush();
        expect(scope.accounts.length).toBe(1);
    });
});
于 2013-06-20T20:49:02.620 回答