3

我对我的自定义聚合物组件进行了以下单元测试:

<head>
  <meta charset="UTF-8">
  <title>survey</title>

  <script src="../bower_components/webcomponentsjs/webcomponents.js"></script>
  <script src="/web-component-tester/browser.js"></script>
  <script src="../bower_components/test-fixture/test-fixture-mocha.js"></script>

  <link rel="import" href="../bower_components/polymer/polymer.html">
  <link rel="import" href="../bower_components/test-fixture/test-fixture.html">
  <link rel="import" href="../bower_components/iron-test-helpers/iron-test-helpers.html">
  <link rel="import" href="../views/components/survey.html">

</head>

<body>
  <test-fixture id="Network">
    <template>
      <survey></survey>
    </template>
  </test-fixture>
  <script>
    describe('<survey>', function() {
      var survey;


      describe('network', function() {
        beforeEach(function(done) {
          survey = fixture('Network');
        })
        it('should work', function() {
          expect(survey.$.dog).to.exist;
        });

      });
    });
  </script>

以及以下定制聚合物survey组分:

<link rel="import" href="../../bower_components/paper-checkbox/paper-checkbox.html">
<link rel="import" href="../../bower_components/paper-button/paper-button.html">
<link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html">

<dom-module id="survey">
<template>
  <h3 class="text-center">Tell us about yourself!</h3>
  <div class="form-group">
    <label>I'm a...</label>
    <array-selector id="imaSelector" items="{{ima}}" selected="{{imaSelected}}" multi toggle></array-selector>
    <template is="dom-repeat" id="imaList" items="{{ima}}">
      <div class="checkbox">
        <paper-checkbox id="{{item.id}}" on-iron-change="toggleIma">{{item.name}}</paper-checkbox>
      </div>
    </template>
  </div>
</template>
</dom-module>
<script>
  Polymer({
    is: 'survey',
    properties: {
      ima: {
        type: Array,
        value: function() {
          return [ {
            name: 'House Cat',
            id: 'houseCat'
          }, {
            name: 'Basic Dog',
            id: 'dog'
          }, {
            name: 'Swimming Fish',
            id: 'fish'
          }];
        }
      },
    
    },
    toggleIma: function(e) {
      var item = this.$.imaList.itemForElement(e.target);
      if (item) {
        this.$.imaSelector.select(item.id);
      }
    }

  })
</script>

这个测试将失败,因为本地 dom 没有初始化,因为我正在使用一个dom-repeat元素。

在本地 dom 被盖章之前我要怎么做?

4

3 回答 3

2

这有两个部分。等待异步渲染,并找到节点。

对于渲染:要么监听dom-change来自dom-repeat模板的事件,要么调用 上的render()方法dom-repeat来强制同步渲染。

在单元测试中,您可能只想调用render().

用于查找节点 -this.$仅填充静态创建的元素(例如,不是来自 adom-ifdom-repeat模板的元素),如docs 中所述。这是一个常见的混淆来源。

您可以使用this.$$便捷方法通过选择器查询本地 DOM 元素,因此您可以执行以下操作:

survey.$.imaList.render();
expect(survey.$$(#dog)).to.exist;
于 2015-12-04T19:50:52.880 回答
1

您可以返回 aPromise而不是立即期待某些东西:

it('should work', function() {
    return expect(survey.$.dog).should.eventually.exist();
});

有关更多信息,请参阅http://mochajs.org/#asynchronous-code

于 2015-07-12T20:34:37.127 回答
1

这似乎是一个聚合物问题。问题是我试图使用this.$选择器来引用动态创建的节点。但是,聚合物文档明确指出,this.$将仅包括静态创建的节点,而不包括动态创建的节点。

请参阅此链接中的注释。这是针对 0.5 版本的,但我假设这在 1.0 版本中是相同的。如果除了链接中提到的解决方案之外还有其他已知的解决方案,我很想听听。

https://www.polymer-project.org/0.5/docs/polymer/polymer.html#automatic-node-finding

注意最终的解决方案,看起来像这样:

  
describe('network', function() {
  beforeEach(function(done) {
    survey = fixture('Network');
    flush(function(){
        done()
    });
  })
  it('should work', function() {
    expect(survey.querySelector('#dog')).to.exist;
  });
});

请注意,这flush()是确保加载 dom 所必需的。 https://www.polymer-project.org/0.5/articles/unit-testing-elements.html#wct-specific-helpers

于 2015-07-13T00:59:10.050 回答