Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content.html « test « iron-selector « bower_components « static - github.com/pdevty/polymer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e869f98d5bf7d2b59c6ea1cbc6e4c55edad83015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!doctype html>
<!--
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->

<html>
<head>

  <title>iron-selector-content</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">

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

  <link rel="import" href="../../test-fixture/test-fixture.html">
  <link rel="import" href="content-element.html">

  <style>
    .iron-selected {
      background: #ccc;
    }
  </style>

</head>
<body>

  <test-content-element id="selector1" selected="item0">
    <div id="item0">item0</div>
    <div id="item1">item1</div>
    <div id="item2">item2</div>
    <div id="item3">item3</div>
  </test-content-element>

  <test-content-element id="selector2" selected="item0" selectable="item">
    <item id="item0">item0</item>
    <hr>
    <item id="item1">item1</item>
    <item id="item2">item2</item>
    <hr>
    <item id="item3">item3</item>
  </test-content-element>

  <test-content-element id="selector3" selected="item0">
    <template is="dom-repeat" id="t">
      <div id$="[[item.name]]">[[item.name]]</div>
    </template>
  </test-content-element>

  <script>

    var s1 = document.querySelector('#selector1');
    var s2 = document.querySelector('#selector2');
    var s3 = document.querySelector('#selector3');

    var t = document.querySelector('#t');

    suite('content', function() {

      test('attribute selected', function() {
        // check selected class
        assert.isTrue(s1.querySelector('#item0').classList.contains('iron-selected'));
      });

      test('set selected', function() {
        // set selected
        s1.selected = 'item1';
        // check selected class
        assert.isTrue(s1.querySelector('#item1').classList.contains('iron-selected'));
      });

      test('get items', function() {
        assert.equal(s1.$.selector.items.length, 4);
      });

      test('activate event', function() {
        var item = s1.querySelector('#item2');
        item.dispatchEvent(new CustomEvent('tap', {bubbles: true}));
        // check selected class
        assert.isTrue(item.classList.contains('iron-selected'));
      });

      test('add item dynamically', function() {
        var item = document.createElement('div');
        item.id = 'item4';
        item.textContent = 'item4';
        Polymer.dom(s1).appendChild(item);
        Polymer.dom.flush();
        // set selected
        s1.selected = 'item4';
        // check items length
        assert.equal(s1.$.selector.items.length, 5);
        // check selected class
        assert.isTrue(s1.querySelector('#item4').classList.contains('iron-selected'));
      });

    });

    suite('content with selectable', function() {

      test('attribute selected', function() {
        // check selected class
        assert.isTrue(s2.querySelector('#item0').classList.contains('iron-selected'));
      });

      test('set selected', function() {
        // set selected
        s2.selected = 'item1';
        // check selected class
        assert.isTrue(s2.querySelector('#item1').classList.contains('iron-selected'));
      });

      test('get items', function() {
        assert.equal(s2.$.selector.items.length, 4);
      });

      test('activate event', function() {
        var item = s2.querySelector('#item2');
        item.dispatchEvent(new CustomEvent('tap', {bubbles: true}));
        // check selected class
        assert.isTrue(item.classList.contains('iron-selected'));
      });

      test('add item dynamically', function() {
        var item = document.createElement('item');
        item.id = 'item4';
        item.textContent = 'item4';
        Polymer.dom(s2).appendChild(item);
        Polymer.dom.flush();
        // set selected
        s2.selected = 'item4';
        // check items length
        assert.equal(s2.$.selector.items.length, 5);
        // check selected class
        assert.isTrue(s2.querySelector('#item4').classList.contains('iron-selected'));
      });

    });

    suite('content with dom-repeat', function() {

      test('supports repeated children', function(done) {
        t.items = [{name:'item0'}, {name: 'item1'}, {name: 'item2'}, {name: 'item3'}];
        setTimeout(function() {
          // check selected
          assert.equal(s3.selected, 'item0');
          // check selected class
          assert.isTrue(s3.querySelector('#item0').classList.contains('iron-selected'));
          // set selected
          s3.selected = 'item2';
          // check selected class
          assert.isTrue(s3.querySelector('#item2').classList.contains('iron-selected'));
          done();
        });
      });

    });

  </script>

</body>
</html>