2

我已经设置了一个 ember.js 应用程序,我正在使用 ember.js 1.0.0-rc4 和 ember-data 0.13,我正在尝试使用类似于此https://github的 mocha.js 设置 konacha .com/dgeb/ember_data_example

我的 spec_helper.js

//= require konacha_config
//= require_tree ./templates
//= require application_test
//= require sinon
//= require spec_utils

// Sinon fake server
var server;

// Stub out Konacha.reset()
Konacha.reset = Ember.K;

// Prevent automatic scheduling of runloops. For tests, we
// want to have complete control of runloops.
Ember.testing = true;

// Defer App readiness (it will be advanced in each test below)
App.deferReadiness();

// Prevent the router from manipulating the browser's URL.
App.Router.reopen({location: 'none'});

beforeEach(function(done) {
  // Fake XHR
  server = sinon.fakeServer.create();

  Ember.run(function() {

    // Advance Contagion readiness, which was deferred above.
    App.advanceReadiness();

    // Setup is complete when the Contagion readiness promise resolves
    App.then(function() {
      done();
    });
  });
});

afterEach(function() {
  // Reset App state
  App.reset();

  // Restore XHR
  server.restore();
});

我拥有的规格正在运行并通过,但在 chrome 控制台中,我看到了类似的东西

x GET http://localhost:3500/posts 404 (Not Found)
x GET http://localhost:3500/comments 404 (Not Found)

为什么 sinon 假服务器不排除这些请求?

我试过像

server.respondWith("GET", "/comments",
  [200, { "Content-Type": "application/json" },
   '{"commemnts":[{"id":1,"text":"Comment 1"},{"id":2,"text":"Comment 2"}]}'
]);

随着"/comments.json","http://localhost:3500/comments"http://localhost:3500/comments.json

似乎没有任何效果。

我也尝试过使用 find 方法存根,sinon.stub(App.Comments,"find")但我仍然看到 404 错误。

知道出了什么问题或模拟/存根这些请求并返回有意义的 json 的正确方法吗?

更新 1

当我设置server.autoRespond = true我得到

未捕获的错误:假 XHR onreadystatechange 处理程序抛出异常:断言失败:您已打开测试模式,这禁用了运行循环的自动运行。您需要在 Ember.run 中包装任何具有异步副作用的代码。

即使所有内容都包含在 Ember.run 中,也会发生这种情况。

添加server.respond()到 afterEach 函数会导致相同的 Fake XHR onreadystatechange 错误。

添加

Ember.run(function(){
  server.respond();
});

到 afterEach 函数让我回到 404 错误的方格 1

4

1 回答 1

0

您已将服务器设置为自动响应server.autoRespond = true;或触发服务器响应server.respond();。否则服务器得到请求但不做任何事情。

于 2013-06-19T13:54:35.123 回答