我正在尝试为在unit test
通话中使用simple-auth authentication
的控制器编写ajax
。断言测试工作得很好但session
属性似乎没有在unit test
模块范围中定义。
控制器中的示例操作:
authenticate() {
let credentials = this.getProperties('identification', 'password');
this.get('session').authenticate('simple-auth-authenticator:token', credentials)
.then(() => {
this.transitionToRoute('index');
}, (error) => {
this.set('errorMessage', error.error);
});
}
示例测试:
it('should not authenticate', function () {
let controller = this.subject();
controller.send('authenticate');
expect(controller.get('errorMessage')).to.equal("Invalid email/password combination");
});
会话未定义错误消息:
TypeError: Cannot read property 'authenticate' of undefined
at authenticate (http://localhost:7357/assets/app.js:587:28)
at mixin.Mixin.create.send (http://localhost:7357/assets/vendor.js:37164:54)
at Context.<anonymous> (http://localhost:7357/assets/app.js:2002:18)
at Context.wrapper (http://localhost:7357/assets/test-support.js:1756:27)
at invoke (http://localhost:7357/assets/test-support.js:13772:21)
at Context.suite.on.context.it.context.specify.method (http://localhost:7357/assets/test-support.js:13837:13)
at Test.require.register.Runnable.run (http://localhost:7357/assets/test-support.js:7064:15)
at Runner.require.register.Runner.runTest (http://localhost:7357/assets/test-support.js:7493:10)
at http://localhost:7357/assets/test-support.js:7571:12
at next (http://localhost:7357/assets/test-support.js:7418:14)
答案 0 :(得分:1)
在单元测试中,您没有正在运行的应用程序,因此初始化程序中发生的注射等不会运行。确保会话存在于控制器中的最佳方法是将其存根,这样可以很容易地确保它的行为与您希望它在测试中的行为一样。
另一种方法是将单元测试转换为验收测试 - 在这种情况下,您有一个初始化的应用程序,测试运行,并且会话将在控制器中可用。