10

我正在开发的单页应用程序有一个登录视图,其中包含两种表单:登录表单和注册表单。以下规范描述了这些表格的测试。我正在使用Jasmine-jQuery 1.4.2。

// user_spec.js

describe("User", function() {

  var userController;

  beforeEach(function () {
    loadFixtures('menu.html');
    userController = new MyApp.User.Controller();
  });

  describe("LoginView", function() {

    beforeEach(function() {
      // Mock the $.ajax function to prevent XHR:
      spyOn($, "ajax").andCallFake(function(params) {});
    });

    it("should pass email and password with the 'signInForm:submit' event.", function() {
      var email = "firstname.name@email.com";
      var password = "Passw0rd";
      var callback = jasmine.createSpy("FormSubmitSpy");

      userController.loginView.$el.find("#signInEmail").val(email);
      userController.loginView.$el.find("#signInPassword").val(password);
      userController.loginView.bind("signInForm:submit", callback, this);
      userController.loginView.ui.signInForm.trigger("submit");

      expect(callback).toHaveBeenCalledWith({
        email: email,
        password: password
      });
    });

    it("should pass name, email and password with the 'signUpForm:submit' event.", function() {
      var name = "John Doe";
      var email = "firstname.name@email.com";
      var password = "Passw0rd";
      var callback = jasmine.createSpy("FormSubmitSpy");

      userController.loginView.$el.find("#signUpName").val(name);
      userController.loginView.$el.find("#signUpMail").val(email);
      userController.loginView.$el.find("#signUpPassword").val(password);
      userController.loginView.$el.find("#signUpPasswordConfirmation").val(password);
      userController.loginView.bind("signUpForm:submit", callback, this);

      userController.loginView.ui.signUpForm.trigger("submit");

      expect(callback).toHaveBeenCalledWith({
        name: name,
        email: email,
        password: password,
        password_confirmation: password
      });
    });

  });

});

登录表单的测试运行成功,但注册表单的测试失败。

Error: Expected spy FormSubmitSpy to have been called with \
    [ { name : 'John Doe', email : 'firstname.name@email.com', \
    password : 'Passw0rd', password_confirmation : 'Passw0rd' } ] \
    but it was never called.

    at new jasmine.ExpectationResult (http://localhost:3000/assets/jasmine.js?body=1:114:32)
    at null.toHaveBeenCalledWith (http://localhost:3000/assets/jasmine.js?body=1:1235:29)
    at null.<anonymous> (http://localhost:3000/assets/user_spec.js?body=1:233:24)
    at jasmine.Block.execute (http://localhost:3000/assets/jasmine.js?body=1:1064:17)
    at jasmine.Queue.next_ (http://localhost:3000/assets/jasmine.js?body=1:2096:31)
    at jasmine.Queue.start (http://localhost:3000/assets/jasmine.js?body=1:2049:8)
    at jasmine.Spec.execute (http://localhost:3000/assets/jasmine.js?body=1:2376:14)
    at jasmine.Queue.next_ (http://localhost:3000/assets/jasmine.js?body=1:2096:31)
    at jasmine.Queue.start (http://localhost:3000/assets/jasmine.js?body=1:2049:8)
    at jasmine.Suite.execute (http://localhost:3000/assets/jasmine.js?body=1:2521:14)

在应用程序中使用表格没有问题。传输数据。一切正常。只是测试没有。

解决方法

但是,当我延迟执行时,测试成功。

_.defer(function() {
  expect(callback).toHaveBeenCalledWith({
    name: name,
    email: email,
    password: password,
    password_confirmation: password
  });
});

为什么这行得通并且“正常”实施失败了?


这是给定情况的简化:

it("should evaluate true", function() {
  var foo = false;
  _.defer(function() {
    foo = true;
  });
  expect(foo).toBeTruthy();
});
4

2 回答 2

2

Jasmine 在不使用下划线函数的情况下执行相同操作的方式如下:

var flag = false;
...

runs(function() {
  userController.loginView.ui.signInForm.trigger("submit");
  setTimeout(function() { flag = true; }, 1);
}

waitsFor(function() {
  return flag;
}, "Blah this should never happen", 10);

runs(function() {
  expect(callback).toHaveBeenCalledWith({
    name: name,
    email: email,
    password: password,
    password_confirmation: password
  });
}

@Marc 是正确的,问题在于使用绑定和 Javascript 将事件“有时/通常/总是”发送到下一个事件循环的方式(它的异步性质如何工作),所以既然你在监视你想要制作的回调确保编写您的测试以考虑该异步行为。

在编写测试时,您冒着第一个测试偶尔不会通过的风险(我很惊讶它可以按原样工作)。您正在以非异步方式测试异步事件回调......有意义吗?

于 2013-06-10T19:51:06.773 回答
1

您看到此问题的原因是因为回调嵌套在其他方法中,可能是 jQuery 绑定和 jasmine 的 spy 直接包裹在您的方法上,因此在设置测试时,您的方法要等到下一个刻度才会执行。

我发现这个页面:http ://trevmex.com/post/7017702464/nesting-spies-to-see-if-a-callback-in-a-deep-nest-has很有用,因为它描述了您的问题和潜在的工作大约。

但是我发现最好不必测试回调,因为它们可以被视为私有方法。也许你可以测试它的最终结果?

于 2013-05-28T19:44:13.710 回答