我有一堆被順利單元測試,我已經開始量角器E2E測試添加到我的項目。我正在測試頁面上的交互式元素,但我無法測試從瀏覽器發出的某些數據。
舉例來說,我想看看如果點擊某個按鈕產生POST
一定的端點。
我有量角器設置使用如下:
/*globals global*/
module.exports = function() {
'use strict';
var chai = require('chai')
, promised = require('chai-as-promised');
global.expect = chai.expect;
chai.use(promised);
}();
我知道如何使用量角器互動:
it('send data to the "log" endpoint when clicked', function() {
var repeater = element.all(by.repeater('finding in data.items'));
repeater.get(0).click().then(function() {
// $http expectation
});
});
不過,我不知道如何設置$httpBackend
在量角器所以我可以捕獲由於.click()
事件而發送的數據。我需要額外的模塊嗎?
在噶/摩卡我只想:
beforeEach(module('exampleApp'));
describe('logging service', function() {
var $httpPostSpy, LoggingService;
beforeEach(inject(function(_logging_, $http, $httpBackend) {
$httpPostSpy = sinon.spy($http, 'post');
LoggingService = _logging_;
backend = $httpBackend;
backend.when('POST', '/api/log').respond(200);
}));
it('should send data to $http.post', function() [
LoggingService.sendLog({ message: 'logged!'});
backend.flush();
expect($httpPostSpy.args[0][1]).to.have.property('message');
});
});
但我不知道如何讓一個參考量角器$httpBackend
和inject
模塊。