我试图断言代码中的一些步骤(访问页面,提供错误的卡号,密码组合和单击提交)应该从后端服务生成错误 - 我已经提到this ..
并尝试使用Error Object作为assert.throws的第二个参数的建议,但这对我不起作用。
我在发布问题之前确实看到了this链接, 我的问题是 - 在这种情况下,我无法控制抛出异常/错误的代码。 (我不能改变它说Ember.assert等)我只是想能够抓住一个错误的案例。
其次,在这种情况下我没有组件。它是一个直接的API调用,在点击提交时完成,基本上是一个动作submitAuthForm在控制器中调用,调用ember cli mirage场景,返回以下对象问题对象。
return new Response(401,{'X-Auth-Token': 'wrong-username-password-combination'},failResponse401);
,返回的对象看起来像
var failResponse401 = {
problems: [ {
field: null,
index: null,
value: null,
code: '0006',
subCode: '',
details: {},
_type: 'error'
} ]
};
我们对内部异常工具包有一个node_module依赖项,该工具包会根据此情况抛出一个Error对象。
这是我的Qunit测试
test('ERROR_CASE_visiting /signon, provide cardNumber(2342314) and ' +
'password, submit and expect to see invalid cardnumber/password error',
function (assert) {
assert.expect(2);
assert.throws(
function () {
visit('/signon');
fillIn('#a8n-signon-card-number input', '2342314');
fillIn('#a8n-signon-password input', 'password');
click('#a8n-signon-submit-button button');
},
Error,
"Error Thrown"
);
});
我一直从Qunit
收到此错误Error Thrown@ 110 ms
Expected:
function Error( a ){
[code]
}
Result:
undefined
Diff:
function Error( a ){
[code]
}defined
Source:
at Object.<anonymous> (http://localhost:7357/assets/tests.js:175:12)
at runTest (http://localhost:7357/assets/test-support.js:3884:30)
at Test.run (http://localhost:7357/assets/test-support.js:3870:6)
at http://localhost:7357/assets/test-support.js:4076:12
at Object.advance (http://localhost:7357/assets/test-support.js:3529:26)
at begin (http://localhost:7357/assets/test-support.js:5341:20)
API rejected the request because of : []@ 1634 ms
Expected:
true
Result:
false
Source:
Error: API rejected the request because of : []
at Class.init (http://localhost:7357/assets/vendor.js:172237:14)
at Class.superWrapper [as init] (http://localhost:7357/assets/vendor.js:55946:22)
at new Class (http://localhost:7357/assets/vendor.js:51657:19)
at Function._ClassMixinProps.create (http://localhost:7357/assets/vendor.js:51849:12)
at Function.createException (http://localhost:7357/assets/vendor.js:172664:16)
at Class.<anonymous> (http://localhost:7357/assets/vendor.js:133592:72)
at ComputedPropertyPrototype.get (http://localhost:7357/assets/vendor.js:32450:27)
at Object.get (http://localhost:7357/assets/vendor.js:37456:19)
at Class.get (http://localhost:7357/assets/vendor.js:50194:26)
at http://localhost:7357/assets/vendor.js:133645:30
还有什么我可以尝试让它发挥作用。 是否有某种程度上我可以以某种方式通过这个测试,通过以某种方式包装返回的响应,它不会完全破坏我的测试。