在Ember的Sinon假服务器

时间:2013-01-09 17:57:37

标签: javascript testing ember.js sinon

我想测试我的控制器,它对我的​​后端进行ajax调用。因此我想用茉莉和僧。为了用sinon伪造我的后端服务器我试过这样的事情:

describe("fake server", function() {
 var server;

 beforeEach(function() {
    this.server = sinon.fakeServer.create();
  });

  afterEach(function() {
    this.server.restore();
  });

 it("calls callback with deserialized data", function () {
    var callback = sinon.spy();

    this.server.respondWith("GET", "/comments/1",
    [200, {"Content-Type": "application/json"},
      '{"comment":{"id":1,"title":"ducks and ducks"}}']);

    commentController = App.CommentController.create();

    //commentController.bind('getComment', callback);

    commentController.getComment(); 

    this.server.respond(); 

    expect(callback.called).toBeTruthy();
    expect(callback.getCall(0).args[0].attributes)
      .toEqual({
        id: "1",
        title: "ducks and ducks"
      });
  });
});

我的控制器看起来像这样:

 App.CommentController = Ember.Controller.extend({
      getComment: function() {
        $.ajax({
          url: 'http://myapi/comments/' + id,
          //...
          error: function(jqXHR, textStatus){
            this.set("error",true);
            //do something
          },
          success: function(data) {
            this.set("error",false);
            //do something else
          }
        });
      }
  });

有人可以告诉我我是如何运行它的吗?

1 个答案:

答案 0 :(得分:0)

this.server.respondWith("GET", "http://myapi.com/comments/1",
[200, {"Content-Type": "application/json"},
  '{"comment":{"id":1,"title":"ducks and ducks"}}']);

在我的情况下,网址应该是绝对的。