14

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

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

在查看Ember.js 源代码中的 linkTo 测试时,我们注意到它包含要支持的 ember 应用程序的完整连接#linkTo。这是否意味着我们在测试模板时不能存根这种行为?

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

这是我们的测试的要点和使测试通过的模板,以及使测试失败的模板。

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>
4

2 回答 2

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
});
于 2013-02-17T03:43:22.963 回答
1

处理此问题的一种方法是为 linkTo 助手创建一个存根,然后在 before 块中使用它。这将绕过真正的 linkTo 的所有额外要求(例如路由),让您专注于视图的内容。这是我的做法:

// 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');
    });
});
于 2013-11-19T23:02:15.407 回答