如何在ember.js中单元测试视图?

时间:2013-02-15 21:02:52

标签: javascript unit-testing model-view-controller ember.js

我们正在学习Ember.js。我们做所有开发TDD,并希望Ember.js也不例外。我们有构建Backbone.js应用程序测试驱动的经验,因此我们熟悉使用Jasmine或Mocha / Chai测试前端代码。

在确定如何测试视图时,当视图使用的模板具有#linkTo语句时,我们遇到了问题。遗憾的是,我们无法找到好的测试示例和实践。这个要点是我们寻求如何正确地对ember应用程序进行单元测试的答案。

在查看test for linkTo in Ember.js source code时,我们发现它包含一个支持#linkTo的余烬应用程序的完整连接。这是否意味着我们在测试模板时不能存在这种行为?

如何使用模板渲染为ember视图创建测试?

以下是a gist我们的测试和一个将使测试通过的模板,以及一个使其失败的模板。

view_spec.js.coffee

# This test is made with Mocha / Chai,
# With the chai-jquery and chai-changes extensions

describe 'TodoItemsView', ->

  beforeEach ->
    testSerializer = DS.JSONSerializer.create
      primaryKey: -> 'id'

    TestAdapter = DS.Adapter.extend
      serializer: testSerializer
    TestStore = DS.Store.extend
      revision: 11
      adapter: TestAdapter.create()

    TodoItem = DS.Model.extend
      title: DS.attr('string')

    store = TestStore.create()
    @todoItem = store.createRecord TodoItem
      title: 'Do something'

    @controller = Em.ArrayController.create
      content: []

    @view = Em.View.create
      templateName: 'working_template'
      controller: @controller

    @controller.pushObject @todoItem

  afterEach ->
    @view.destroy()
    @controller.destroy()
    @todoItem.destroy()

  describe 'amount of todos', ->

    beforeEach ->
      # $('#konacha') is a div that gets cleaned between each test
      Em.run => @view.appendTo '#konacha'

    it 'is shown', ->
      $('#konacha .todos-count').should.have.text '1 things to do'

    it 'is livebound', ->
      expect(=> $('#konacha .todos-count').text()).to.change.from('1 things to do').to('2 things to do').when =>
        Em.run =>
          extraTodoItem = store.createRecord TodoItem,
            title: 'Moar todo'
          @controller.pushObject extraTodoItem

broken_template.handlebars

<div class="todos-count"><span class="todos">{{length}}</span> things to do</div>

{{#linkTo "index"}}Home{{/linkTo}}

working_template.handlebars

<div class="todos-count"><span class="todos">{{length}}</span> things to do</div>

2 个答案:

答案 0 :(得分:9)

我们的解决方案主要是加载整个应用程序,但尽可能地隔离我们的测试对象。例如,

describe('FooView', function() {
  beforeEach(function() {
    this.foo = Ember.Object.create();
    this.subject = App.FooView.create({ foo: this.foo });
    this.subject.append();
  });

  afterEach(function() {
    this.subject && this.subject.remove();
  });

  it("renders the foo's favoriteFood", function() {
    this.foo.set('favoriteFood', 'ramen');
    Em.run.sync();
    expect( this.subject.$().text() ).toMatch( /ramen/ );
  });
});

也就是说,路由器和其他全局变量都是可用的,因此它不是完全隔离,但我们可以轻松地发送双精度数据,以便更接近被测对象。

如果你真的想要隔离路由器,linkTo帮助器会将其查找为controller.router,所以你可以这样做

this.router = {
  generate: jasmine.createSpy(...)
};

this.subject = App.FooView.create({
  controller: { router: this.router },
  foo: this.foo
});

答案 1 :(得分:1)

您可以处理此问题的一种方法是为linkTo帮助程序创建存根,然后在before块中使用它。这将绕过真实链接的所有额外要求(例如路由),并让您专注于视图的内容。以下是我的表现:

// Test helpers
TEST.stubLinkToHelper = function() {
    if (!TEST.originalLinkToHelper) {
        TEST.originalLinkToHelper = Ember.Handlebars.helpers['link-to'];
    }
    Ember.Handlebars.helpers['link-to'] = function(route) {
        var options = [].slice.call(arguments, -1)[0];
        return Ember.Handlebars.helpers.view.call(this, Em.View.extend({
            tagName: 'a',
            attributeBindings: ['href'],
            href: route
        }), options);
    };
};

TEST.restoreLinkToHelper = function() {
    Ember.Handlebars.helpers['link-to'] = TEST.originalLinkToHelper;
    TEST.originalLinkToHelper = null;
};

// Foo test
describe('FooView', function() {
    before(function() {
        TEST.stubLinkToHelper();
    });

    after(function() {
        TEST.restoreLinkToHelper();
    });

    it('renders the favoriteFood', function() {
        var view = App.FooView.create({
            context: {
                foo: {
                    favoriteFood: 'ramen'
                }
            }
        });

        Em.run(function() {
            view.createElement();
        });

        expect(view.$().text()).to.contain('ramen');
    });
});