我有一堆单元测试进展顺利,我已经开始在我的项目中添加Protractor 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);
}();
我理解如何使用Protractor进行交互:
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
});
});
但是,我不知道如何在Protractor中设置$httpBackend
,因此我可以捕获由于.click()
事件而发送的数据。我需要一个额外的模块吗?
在Karma / Mocha我只想:
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');
});
});
但我不知道如何在Protractor中引用$httpBackend
和inject
模块。
答案 0 :(得分:1)
端到端测试是关于测试代码的方式与最终用户的方式类似。因此,验证是否发出远程请求应根据可见结果进行验证,例如将数据加载到div或网格中。
如果您要验证远程请求,仍然可以使用ngMockE2E
模块创建模拟后端设置,该模块包含与$htpBackend
中类似的模拟ngMock
查看$httpBackend
https://docs.angularjs.org/api/ngMockE2E/service/ $ httpBackend
答案 1 :(得分:0)
$ httpBackend用于模拟对服务器的虚假调用。在e2e测试中,您通常希望实际调用服务器。值得注意的是,量角器中的大多数元素定位器都会返回promises。
这意味着使用此代码,您的测试将知道等待服务器的响应返回,然后断言文本是p标记是来自服务器的正确数据。
MY-file.spec.js
'use strict';
describe('The main view', function () {
var page;
beforeEach(function () {
browser.get('/index.html');
page = require('./main.po');
});
it('should have resultText defined', function () {
expect(page.resultText).toBeDefined()
})
it('should display some text', function() {
expect(page.resultText.getText()
.then())
.toEqual("data-that-should-be-returned");
});
});
MY-file.po.js
'use strict';
var MainPage = function() {
this.resultText = element(by.css('.result-text'));
};
module.exports = new MainPage();