我已经让ESA与Ember 2.0.1很好地合作,但在测试时偶然发现了一个有趣的案例:
鉴于以下测试:
import Ember from 'ember';
import { module, test } from 'qunit';
import startApp from 'notifier/tests/helpers/start-app';
import Pretender from 'pretender';
import { authenticateSession } from '../../helpers/ember-simple-auth';
let server;
let application;
module('Acceptance | signout', {
beforeEach: function() {
application = startApp();
},
afterEach: function() {
Ember.run(application, 'destroy');
server.shutdown();
}
});
test('successfully sign out and get redirected', function(assert) {
server = new Pretender(function() {
this.post('/oauth/revoke', function() {
return [200, {"Content-Type": "application/json"}];
});
});
authenticateSession(application);
visit('/admin');
click('#sign-out');
andThen(() => {
assert.equal(currentRouteName(), 'users.sign-in');
});
});
测试结果是路线永远不会改变。它仍在/admin
。这只发生在测试中,如果我手动与应用程序交互,它就可以正常工作。
发生这种情况的原因是,根据https://github.com/simplabs/ember-simple-auth/blob/jj-abrams/addon/mixins/application-route-mixin.js#L99-L101会话失效后,页面永远不会重新加载(window.location.reload()
)。
因此,AuthenticatedRouteMixin
中的beforeModel hook永远不会被触发,因此测试永远不会从/admin
重定向到/users/sign-in
。
我知道发生这种情况是因为你无法在测试中运行window.location.reload()
,但我不确定使用什么替代方案。我可以在我的应用程序路由中覆盖sessionInvalidated()
,并在测试时将应用程序重定向到/users/sign-in
,但我不再测试应用程序。
有什么建议吗?
答案 0 :(得分:4)
您无法在测试模式下重新加载位置,因为这会重新启动测试套件,从而导致无限循环。您可以使用sinon将其存根并声明存根被调用。