Blame view

bower_components/iron-localstorage/test/basic.html 4.04 KB
73bcce88   luigser   COMPONENTS
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
  <!doctype html>
  <!--
  @license
  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>
    <meta charset="UTF-8">
    <title>iron-localstorage-basic</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  
    <script src="../../webcomponentsjs/webcomponents.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="../iron-localstorage.html">
  
  </head>
  <body>
  
    <test-fixture id="fixture">
      <template>
        <iron-localstorage id="localstorage" name="iron-localstorage-test"></iron-localstorage>
      </template>
    </test-fixture>
  
    <template id="boundTemplate" is="dom-bind">
      <iron-localstorage id="boundLocal" name="iron-localstorage-test" value="{{value}}"></iron-localstorage>
    </template>
  
    <script>
      var storage;
  
      suite('basic', function() {
  
        setup(function() {
          window.localStorage.setItem('iron-localstorage-test', '{"foo":"bar"}');
          storage = document.getElementById('fixture').create();
          storage.flushDebouncer('reload');
        });
  
        teardown(function() {
          window.localStorage.removeItem('iron-localstorage-test');
        });
  
        test('load', function() {
          assert.isNotNull(storage.value);
          assert.equal(storage.value.foo, 'bar');
        });
  
        test('save', function() {
          var newValue = {'foo': 'zot'};
          storage.value = newValue;
          storage.flushDebouncer('save');
          var v = window.localStorage.getItem(storage.name);
          v = JSON.parse(v);
          assert.equal(v.foo, newValue.foo);
        });
  
        test('delete', function() {
          storage.value = null;
          storage.flushDebouncer('save');
          var v = window.localStorage.getItem(storage.name);
          assert.isNull(v);
        });
  
        test('event iron-localstorage-load', function(done) {
          var ls = document.createElement('iron-localstorage');
          ls.addEventListener('iron-localstorage-load', function() {
            done();
          });
          ls.name = 'iron-localstorage-test';
        });
  
        test('event iron-localstorage-load-empty', function(done) {
          window.localStorage.removeItem('iron-localstorage-test');
  
          var ls = document.createElement('iron-localstorage');
          ls.addEventListener('iron-localstorage-load-empty', function() {
            // testing recommended way to initialize localstorage
            ls.value = "Yo";
            ls.flushDebouncer('save');
            assert.equal("Yo", JSON.parse( window.localStorage.getItem('iron-localstorage-test')));
            done();
          });
          ls.name = 'iron-localstorage-test';
        });
  
        test('auto-save sub-properties', function() {
          var t = document.querySelector('#boundTemplate');
          var ls = document.querySelector('#boundLocal');
          var value = { foo: 'FOO', bar: 'BAR' };
          t.value = value;
          assert.equal('FOO', ls.value.foo); // value has propagated from template to storage
  
          ls.flushDebouncer('save');
          t.value.foo = "Yo";
          ls.flushDebouncer('save');
          var item = JSON.parse( window.localStorage.getItem('iron-localstorage-test'));
          assert.notEqual('Yo', item.foo); // did not propagate because did not use setters
  
          t.set('value.foo', 'BAZ!');
          ls.flushDebouncer('save');
          var item = JSON.parse( window.localStorage.getItem('iron-localstorage-test'));
          assert.equal('BAZ!', item.foo); // did propagate
          ls.value = null;
        });
  
      });
  
    </script>
  
  </body>
  </html>