Blame view

bower_components/iron-ajax/test/iron-request.html 6.68 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
  <!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-request</title>
  
e619a3b0   Luigi Serra   Controllet cross ...
14
    <script src="../../webcomponentsjs/webcomponents.js"></script>
73bcce88   luigser   COMPONENTS
15
    <script src="../../web-component-tester/browser.js"></script>
c5169e0e   Renato De Donato   a new hope
16
    <script src="../../test-fixture/test-fixture-mocha.js"></script>
73bcce88   luigser   COMPONENTS
17
18
  
    <link rel="import" href="../../polymer/polymer.html">
c5169e0e   Renato De Donato   a new hope
19
    <link rel="import" href="../../test-fixture/test-fixture.html">
73bcce88   luigser   COMPONENTS
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
    <link rel="import" href="../iron-request.html">
  </head>
  <body>
    <test-fixture id="TrivialRequest">
      <template>
        <iron-request></iron-request>
      </template>
    </test-fixture>
    <script>
      suite('<iron-request>', function () {
        var jsonResponseHeaders;
        var successfulRequestOptions;
        var request;
        var server;
  
        setup(function () {
          jsonResponseHeaders = {
            'Content-Type': 'application/json'
          };
          server = sinon.fakeServer.create();
          server.respondWith('GET', '/responds_to_get_with_json', [
            200,
            jsonResponseHeaders,
            '{"success":true}'
          ]);
  
73bcce88   luigser   COMPONENTS
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
          server.respondWith('GET', '/responds_to_get_with_500', [
            500,
            {},
            ''
          ]);
  
          server.respondWith('GET', '/responds_to_get_with_100', [
            100,
            {},
            ''
          ]);
  
          server.respondWith('GET', '/responds_to_get_with_0', [
            0,
            jsonResponseHeaders,
            '{"success":true}'
          ]);
  
  
          request = fixture('TrivialRequest');
          successfulRequestOptions = {
            url: '/responds_to_get_with_json'
          };
        });
  
        teardown(function () {
          server.restore();
        });
  
        suite('basic usage', function () {
          test('creates network requests, requiring only `url`', function () {
            request.send(successfulRequestOptions);
  
            server.respond();
  
            expect(request.response).to.be.ok;
          });
  
          test('sets async to true by default', function () {
            request.send(successfulRequestOptions);
            expect(request.xhr.async).to.be.eql(true);
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
89
          test('can be aborted', function () {
73bcce88   luigser   COMPONENTS
90
91
92
93
94
95
            request.send(successfulRequestOptions);
  
            request.abort();
  
            server.respond();
  
e619a3b0   Luigi Serra   Controllet cross ...
96
97
            return request.completes.then(function () {
              throw new Error('Request did not abort appropriately!');
73bcce88   luigser   COMPONENTS
98
99
            }).catch(function (e) {
              expect(request.response).to.not.be.ok;
73bcce88   luigser   COMPONENTS
100
101
102
            });
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
103
          test('default responseType is text', function () {
73bcce88   luigser   COMPONENTS
104
105
106
            request.send(successfulRequestOptions);
            server.respond();
  
e619a3b0   Luigi Serra   Controllet cross ...
107
            return request.completes.then(function() {
73bcce88   luigser   COMPONENTS
108
              expect(request.response).to.be.an('string')
73bcce88   luigser   COMPONENTS
109
            });
73bcce88   luigser   COMPONENTS
110
111
          });
  
eb240478   Luigi Serra   public room cards...
112
113
114
115
116
117
118
119
120
121
122
123
          test('default responseType of text is not applied, when async is false', function () {
            var options = Object.create(successfulRequestOptions);
            options.async = false;
  
            request.send(options);
            server.respond();
  
            return request.completes.then(function() {
              expect(request.xhr.responseType).to.be.empty;
            });
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
124
          test('responseType can be configured via handleAs option', function () {
73bcce88   luigser   COMPONENTS
125
126
127
128
            var options = Object.create(successfulRequestOptions);
            options.handleAs = 'json';
  
            request.send(options);
f748e9cf   Luigi Serra   new controllet an...
129
130
131
            expect(server.requests.length).to.be.equal(1);
            expect(server.requests[0].requestHeaders['accept']).to.be.equal(
                'application/json');
73bcce88   luigser   COMPONENTS
132
133
            server.respond();
  
e619a3b0   Luigi Serra   Controllet cross ...
134
            return request.completes.then(function() {
73bcce88   luigser   COMPONENTS
135
              expect(request.response).to.be.an('object');
73bcce88   luigser   COMPONENTS
136
            });
73bcce88   luigser   COMPONENTS
137
138
          });
  
eb240478   Luigi Serra   public room cards...
139
140
141
142
143
144
          test('responseType cannot be configured via handleAs option, when async is false', function () {
            var options = Object.create(successfulRequestOptions);
            options.handleAs = 'json';
            options.async = false;
  
            request.send(options);
f748e9cf   Luigi Serra   new controllet an...
145
146
147
            expect(server.requests.length).to.be.equal(1);
            expect(server.requests[0].requestHeaders['accept']).to.be.equal(
                'application/json');
eb240478   Luigi Serra   public room cards...
148
149
150
151
152
153
154
            server.respond();
  
            return request.completes.then(function() {
              expect(request.response).to.be.a('string');
            });
          });
  
73bcce88   luigser   COMPONENTS
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
        });
  
        suite('special cases', function() {
          test('treats status code 0 as success, though the outcome is ambiguous', function() {
            // Note: file:// status code will probably be 0 no matter what happened.
            request.send({
              url: '/responds_to_get_with_0'
            });
  
            server.respond();
  
            expect(request.succeeded).to.be.equal(true);
          });
        });
  
        suite('errors', function() {
          test('treats status codes between 1 and 199 as errors', function() {
            request.send({
              url: '/responds_to_get_with_100'
            });
  
            server.respond();
  
            expect(request.succeeded).to.be.equal(false);
          });
  
          test('treats status codes between 300 and ∞ as errors', function() {
            request.send({
              url: '/responds_to_get_with_500'
            });
  
            server.respond();
  
            expect(request.succeeded).to.be.equal(false);
          });
        });
  
        suite('status codes', function() {
          test('status and statusText is set after a ambiguous request', function() {
            request.send({
              url: '/responds_to_get_with_0'
            });
  
            server.respond();
e619a3b0   Luigi Serra   Controllet cross ...
199
  
73bcce88   luigser   COMPONENTS
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
            expect(request.status).to.be.equal(0);
            expect(request.statusText).to.be.equal('');
          });
  
          test('status and statusText is set after a request that succeeded', function() {
            request.send({
              url: '/responds_to_get_with_json'
            });
  
            server.respond();
  
            expect(request.status).to.be.equal(200);
            expect(request.statusText).to.be.equal('OK');
          });
  
          test('status and statusText is set after a request that failed', function() {
            request.send({
              url: '/responds_to_get_with_500'
            });
  
            server.respond();
  
            expect(request.status).to.be.equal(500);
            expect(request.statusText).to.be.equal('Internal Server Error');
          });
        });
      });
    </script>
  
  </body>
  </html>