Ember初始化程序异步属性在集成测试中未定义

时间:2014-11-12 23:41:16

标签: ember.js integration-testing ember-cli ember-simple-auth

我正在尝试测试我的注册和登录过程,在创建初始化程序以使用currentUser属性扩展Ember-Simple-Auth Session对象之前,集成测试完全通过。

这一切在浏览器中都能正常运行,只是测试现在在以下行的应用程序路由中的sessionAuthenticationSucceeded操作中全部失败:

this.get('session.currentUser').then(function(user) {

with: TypeError:无法读取未定义

的属性'

/routes/application.js

import Ember from 'ember';
import ApplicationRouteMixin from 'simple-auth/mixins/application-route-mixin';

export default Ember.Route.extend(ApplicationRouteMixin, {
  actions: {
    sessionAuthenticationSucceeded: function () {
      var self = this;
      this.get('session.currentUser').then(function(user) {
          if (user.get('account') && user.get('status') === 'complete'){
            self.transtionTo('home');
          } else {
            console.log('Need to complete Registration');
            self.transitionTo('me');
          }
      });
    }
  }
}

/initializers/custom-session.js

import Ember from 'ember';
import Session from 'simple-auth/session';

export default {
  name: 'custom-session',
  before: 'simple-auth',
  initialize: function(container) {
    // application.deferReadiness();
    Session.reopen({
      currentUser: function() {
        var id = this.get('user_id');
        if (!Ember.isEmpty(id)) {
          console.log('getting the current user');
          return container.lookup('store:main').find('user', id);
        }
      }.property('user_id')
    });
    // application.advanceReadiness();
  }
};

/tests/integration/visitor-signs-up-test.js

test('As a user with valid email and password', function(){
  var email = faker.internet.email();
  signUpUser(email, 'correctpassword', 'correctpassword');
  andThen(function(){
    equal(find('#logged-in-user').text(), email, 'User registered successfully as ' + email);
    equal(sessionIsAuthenticated(App), true, 'The session is Authenticated');
  });
});

测试/助手/注册-login.js

export function signUpUser(email, password, passwordConfirmation) {
  visit('/register').then(function(){
    fillIn('input.email', email);
    fillIn('input.password', password);
    fillIn('input.password-confirmation', passwordConfirmation);
    click('button.submit');
  });
}

我尝试过使用

application.deferReadiness()

正如您所看到的那样在初始化程序中注释掉(也在该实例中传递应用程序)以确保异步请求已完成并且用户可用但是也没有用。

我正在使用Pretender拦截api请求,但在测试期间根本没有调用api/v1/users/:id

奇怪的是它在浏览器中完美运行。

我试图理解为什么这不起作用?任何指导将不胜感激!

注意:我还尝试了列出herehere的解决方案,其结果与上述相同。

1 个答案:

答案 0 :(得分:1)

我已经发现了问题,结果发现我没有从user_id请求中返回api/v1/users/sign_in预占义者正在拦截,因此当sessionAuthenticationSucceeded被解雇时,没有user_id可用,因此currentUser永远不会被更新/触发。

我会将所有代码保留在那里,以防它帮助其他人。对它的评论或改进仍然非常受欢迎!