1

登録とログインのプロセスをテストしようとしていますが、currentUser プロパティで Ember-Simple-Auth セッション オブジェクトを拡張するイニシャライザを作成する前に、統合テストは完全に合格していました。

ブラウザーではすべて正常に動作しますが、次の行のアプリケーション ルートの sessionAuthenticationSucceeded アクションですべてのテストが失敗するだけです。

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

with : TypeError: undefined のプロパティ 'then' を読み取れません


/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');
  });
});

test/helpers/registration-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、テスト中に呼び出しがまったく行われません。

奇妙な部分は、ブラウザで完全に機能することです。

なぜこれがうまくいかないのか理解しようとしていますか?任意のガイダンスをいただければ幸いです。

注意:ここここにリストされている解決策も試しましたが、上記と同じ結果が得られました。

4

1 に答える 1