summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/fetch/test_request.js
blob: 7abd833869e0c27881e9edeb2ff81705248f95ef (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
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
199
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
function testDefaultCtor() {
  var req = new Request("");
  is(req.method, "GET", "Default Request method is GET");
  ok(
    req.headers instanceof Headers,
    "Request should have non-null Headers object"
  );
  is(
    req.url,
    self.location.href,
    "URL should be resolved with entry settings object's API base URL"
  );
  is(req.destination, "", "Default destination is the empty string.");
  is(
    req.referrer,
    "about:client",
    "Default referrer is `client` which serializes to about:client."
  );
  is(req.mode, "cors", "Request mode for string input is cors");
  is(
    req.credentials,
    "same-origin",
    "Default Request credentials is same-origin"
  );
  is(req.cache, "default", "Default Request cache is default");

  var req = new Request(req);
  is(req.method, "GET", "Default Request method is GET");
  ok(
    req.headers instanceof Headers,
    "Request should have non-null Headers object"
  );
  is(
    req.url,
    self.location.href,
    "URL should be resolved with entry settings object's API base URL"
  );
  is(req.destination, "", "Default destination is the empty string.");
  is(
    req.referrer,
    "about:client",
    "Default referrer is `client` which serializes to about:client."
  );
  is(req.mode, "cors", "Request mode string input is cors");
  is(
    req.credentials,
    "same-origin",
    "Default Request credentials is same-origin"
  );
  is(req.cache, "default", "Default Request cache is default");
}

function testClone() {
  var orig = new Request("./cloned_request.txt", {
    method: "POST",
    headers: { "Sample-Header": "5" },
    body: "Sample body",
    mode: "same-origin",
    credentials: "same-origin",
    cache: "no-store",
  });
  var clone = orig.clone();
  ok(clone.method === "POST", "Request method is POST");
  ok(
    clone.headers instanceof Headers,
    "Request should have non-null Headers object"
  );

  is(
    clone.headers.get("sample-header"),
    "5",
    "Request sample-header should be 5."
  );
  orig.headers.set("sample-header", 6);
  is(
    clone.headers.get("sample-header"),
    "5",
    "Cloned Request sample-header should continue to be 5."
  );

  ok(
    clone.url === new URL("./cloned_request.txt", self.location.href).href,
    "URL should be resolved with entry settings object's API base URL"
  );
  ok(
    clone.referrer === "about:client",
    "Default referrer is `client` which serializes to about:client."
  );
  ok(clone.mode === "same-origin", "Request mode is same-origin");
  ok(clone.credentials === "same-origin", "Default credentials is same-origin");
  ok(clone.cache === "no-store", "Default cache is no-store");

  ok(!orig.bodyUsed, "Original body is not consumed.");
  ok(!clone.bodyUsed, "Clone body is not consumed.");

  var origBody = null;
  var clone2 = null;
  return orig
    .text()
    .then(function (body) {
      origBody = body;
      is(origBody, "Sample body", "Original body string matches");
      ok(orig.bodyUsed, "Original body is consumed.");
      ok(!clone.bodyUsed, "Clone body is not consumed.");

      try {
        orig.clone();
        ok(false, "Cannot clone Request whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }

      clone2 = clone.clone();
      return clone.text();
    })
    .then(function (body) {
      is(body, origBody, "Clone body matches original body.");
      ok(clone.bodyUsed, "Clone body is consumed.");

      try {
        clone.clone();
        ok(false, "Cannot clone Request whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }

      return clone2.text();
    })
    .then(function (body) {
      is(body, origBody, "Clone body matches original body.");
      ok(clone2.bodyUsed, "Clone body is consumed.");

      try {
        clone2.clone();
        ok(false, "Cannot clone Request whose body is already consumed");
      } catch (e) {
        is(
          e.name,
          "TypeError",
          "clone() of consumed body should throw TypeError"
        );
      }
    });
}

function testUsedRequest() {
  // Passing a used request should fail.
  var req = new Request("", { method: "post", body: "This is foo" });
  var p1 = req.text().then(function (v) {
    try {
      var req2 = new Request(req);
      ok(false, "Used Request cannot be passed to new Request");
    } catch (e) {
      ok(true, "Used Request cannot be passed to new Request");
    }
  });

  // Passing a request should set the request as used.
  var reqA = new Request("", { method: "post", body: "This is foo" });
  var reqB = new Request(reqA);
  is(
    reqA.bodyUsed,
    true,
    "Passing a Request to another Request should set the former as used"
  );
  return p1;
}

function testSimpleUrlParse() {
  // Just checks that the URL parser is actually being used.
  var req = new Request("/file.html");
  is(
    req.url,
    new URL("/file.html", self.location.href).href,
    "URL parser should be used to resolve Request URL"
  );
}

// Bug 1109574 - Passing a Request with null body should keep bodyUsed unset.
function testBug1109574() {
  var r1 = new Request("");
  is(r1.bodyUsed, false, "Initial value of bodyUsed should be false");
  var r2 = new Request(r1);
  is(r1.bodyUsed, false, "Request with null body should not have bodyUsed set");
  // This should succeed.
  var r3 = new Request(r1);
}

// Bug 1184550 - Request constructor should always throw if used flag is set,
// even if body is null
function testBug1184550() {
  var req = new Request("", { method: "post", body: "Test" });
  fetch(req);
  ok(req.bodyUsed, "Request body should be used immediately after fetch()");
  return fetch(req)
    .then(function (resp) {
      ok(false, "Second fetch with same request should fail.");
    })
    .catch(function (err) {
      is(err.name, "TypeError", "Second fetch with same request should fail.");
    });
}

function testHeaderGuard() {
  var headers = {
    Cookie: "Custom cookie",
    "Non-Simple-Header": "value",
  };
  var r1 = new Request("", { headers });
  ok(
    !r1.headers.has("Cookie"),
    "Default Request header should have guard request and prevent setting forbidden header."
  );
  ok(
    r1.headers.has("Non-Simple-Header"),
    "Default Request header should have guard request and allow setting non-simple header."
  );

  var r2 = new Request("", { mode: "no-cors", headers });
  ok(
    !r2.headers.has("Cookie"),
    "no-cors Request header should have guard request-no-cors and prevent setting non-simple header."
  );
  ok(
    !r2.headers.has("Non-Simple-Header"),
    "no-cors Request header should have guard request-no-cors and prevent setting non-simple header."
  );
}

function testMode() {
  try {
    var req = new Request("http://example.com", { mode: "navigate" });
    ok(
      false,
      "Creating a Request with navigate RequestMode should throw a TypeError"
    );
  } catch (e) {
    is(
      e.name,
      "TypeError",
      "Creating a Request with navigate RequestMode should throw a TypeError"
    );
  }
}

function testMethod() {
  // These get normalized.
  var allowed = ["delete", "get", "head", "options", "post", "put"];
  for (var i = 0; i < allowed.length; ++i) {
    try {
      var r = new Request("", { method: allowed[i] });
      ok(true, "Method " + allowed[i] + " should be allowed");
      is(
        r.method,
        allowed[i].toUpperCase(),
        "Standard HTTP method " + allowed[i] + " should be normalized"
      );
    } catch (e) {
      ok(false, "Method " + allowed[i] + " should be allowed");
    }
  }

  var allowed = ["pAtCh", "foo"];
  for (var i = 0; i < allowed.length; ++i) {
    try {
      var r = new Request("", { method: allowed[i] });
      ok(true, "Method " + allowed[i] + " should be allowed");
      is(
        r.method,
        allowed[i],
        "Non-standard but valid HTTP method " +
          allowed[i] +
          " should not be normalized"
      );
    } catch (e) {
      ok(false, "Method " + allowed[i] + " should be allowed");
    }
  }

  var forbidden = ["connect", "trace", "track", "<invalid token??"];
  for (var i = 0; i < forbidden.length; ++i) {
    try {
      var r = new Request("", { method: forbidden[i] });
      ok(false, "Method " + forbidden[i] + " should be forbidden");
    } catch (e) {
      ok(true, "Method " + forbidden[i] + " should be forbidden");
    }
  }

  var allowedNoCors = ["get", "head", "post"];
  for (var i = 0; i < allowedNoCors.length; ++i) {
    try {
      var r = new Request("", { method: allowedNoCors[i], mode: "no-cors" });
      ok(
        true,
        "Method " + allowedNoCors[i] + " should be allowed in no-cors mode"
      );
    } catch (e) {
      ok(
        false,
        "Method " + allowedNoCors[i] + " should be allowed in no-cors mode"
      );
    }
  }

  var forbiddenNoCors = ["aardvark", "delete", "options", "put"];
  for (var i = 0; i < forbiddenNoCors.length; ++i) {
    try {
      var r = new Request("", { method: forbiddenNoCors[i], mode: "no-cors" });
      ok(
        false,
        "Method " + forbiddenNoCors[i] + " should be forbidden in no-cors mode"
      );
    } catch (e) {
      ok(
        true,
        "Method " + forbiddenNoCors[i] + " should be forbidden in no-cors mode"
      );
    }
  }

  // HEAD/GET requests cannot have a body.
  try {
    var r = new Request("", { method: "get", body: "hello" });
    ok(false, "HEAD/GET request cannot have a body");
  } catch (e) {
    is(e.name, "TypeError", "HEAD/GET request cannot have a body");
  }

  try {
    var r = new Request("", { method: "head", body: "hello" });
    ok(false, "HEAD/GET request cannot have a body");
  } catch (e) {
    is(e.name, "TypeError", "HEAD/GET request cannot have a body");
  }
  // Non HEAD/GET should not throw.
  var r = new Request("", { method: "patch", body: "hello" });
}
function testUrlFragment() {
  var req = new Request("./request#withfragment");
  is(
    req.url,
    new URL("./request#withfragment", self.location.href).href,
    "request.url should be serialized without exclude fragment flag set"
  );
}
function testUrlMalformed() {
  try {
    var req = new Request("http:// example.com");
    ok(
      false,
      "Creating a Request with a malformed URL should throw a TypeError"
    );
  } catch (e) {
    is(
      e.name,
      "TypeError",
      "Creating a Request with a malformed URL should throw a TypeError"
    );
  }
}

function testUrlCredentials() {
  try {
    var req = new Request("http://user@example.com");
    ok(false, "URLs with credentials should be rejected");
  } catch (e) {
    is(e.name, "TypeError", "URLs with credentials should be rejected");
  }

  try {
    var req = new Request("http://user:password@example.com");
    ok(false, "URLs with credentials should be rejected");
  } catch (e) {
    is(e.name, "TypeError", "URLs with credentials should be rejected");
  }
}

function testBodyUsed() {
  var req = new Request("./bodyused", { method: "post", body: "Sample body" });
  is(req.bodyUsed, false, "bodyUsed is initially false.");
  return req
    .text()
    .then(v => {
      is(v, "Sample body", "Body should match");
      is(req.bodyUsed, true, "After reading body, bodyUsed should be true.");
    })
    .then(v => {
      return req.blob().then(
        v => {
          ok(false, "Attempting to read body again should fail.");
        },
        e => {
          ok(true, "Attempting to read body again should fail.");
        }
      );
    });
}

var text = "κόσμε";
function testBodyCreation() {
  var req1 = new Request("", { method: "post", body: text });
  var p1 = req1.text().then(function (v) {
    ok(typeof v === "string", "Should resolve to string");
    is(text, v, "Extracted string should match");
  });

  var req2 = new Request("", {
    method: "post",
    body: new Uint8Array([72, 101, 108, 108, 111]),
  });
  var p2 = req2.text().then(function (v) {
    is("Hello", v, "Extracted string should match");
  });

  var req2b = new Request("", {
    method: "post",
    body: new Uint8Array([72, 101, 108, 108, 111]).buffer,
  });
  var p2b = req2b.text().then(function (v) {
    is("Hello", v, "Extracted string should match");
  });

  var reqblob = new Request("", { method: "post", body: new Blob([text]) });
  var pblob = reqblob.text().then(function (v) {
    is(v, text, "Extracted string should match");
  });

  // FormData has its own function since it has blobs and files.

  var params = new URLSearchParams();
  params.append("item", "Geckos");
  params.append("feature", "stickyfeet");
  params.append("quantity", "700");
  var req3 = new Request("", { method: "post", body: params });
  var p3 = req3.text().then(function (v) {
    var extracted = new URLSearchParams(v);
    is(extracted.get("item"), "Geckos", "Param should match");
    is(extracted.get("feature"), "stickyfeet", "Param should match");
    is(extracted.get("quantity"), "700", "Param should match");
  });

  return Promise.all([p1, p2, p2b, pblob, p3]);
}

function testFormDataBodyCreation() {
  var f1 = new FormData();
  f1.append("key", "value");
  f1.append("foo", "bar");

  var r1 = new Request("", { method: "post", body: f1 });
  // Since f1 is serialized immediately, later additions should not show up.
  f1.append("more", "stuff");
  var p1 = r1.formData().then(function (fd) {
    ok(fd instanceof FormData, "Valid FormData extracted.");
    ok(fd.has("key"), "key should exist.");
    ok(fd.has("foo"), "foo should exist.");
    ok(!fd.has("more"), "more should not exist.");
  });

  f1.append("blob", new Blob([text]));
  var r2 = new Request("", { method: "post", body: f1 });
  f1.delete("key");
  var p2 = r2.formData().then(function (fd) {
    ok(fd instanceof FormData, "Valid FormData extracted.");
    ok(fd.has("more"), "more should exist.");

    var b = fd.get("blob");
    is(b.name, "blob", "blob entry should be a Blob.");
    ok(b instanceof Blob, "blob entry should be a Blob.");

    return readAsText(b).then(function (output) {
      is(output, text, "Blob contents should match.");
    });
  });

  return Promise.all([p1, p2]);
}

function testBodyExtraction() {
  var text = "κόσμε";
  var newReq = function () {
    return new Request("", { method: "post", body: text });
  };
  return newReq()
    .text()
    .then(function (v) {
      ok(typeof v === "string", "Should resolve to string");
      is(text, v, "Extracted string should match");
    })
    .then(function () {
      return newReq()
        .blob()
        .then(function (v) {
          ok(v instanceof Blob, "Should resolve to Blob");
          return readAsText(v).then(function (result) {
            is(result, text, "Decoded Blob should match original");
          });
        });
    })
    .then(function () {
      return newReq()
        .json()
        .then(
          function (v) {
            ok(false, "Invalid json should reject");
          },
          function (e) {
            ok(true, "Invalid json should reject");
          }
        );
    })
    .then(function () {
      return newReq()
        .arrayBuffer()
        .then(function (v) {
          ok(v instanceof ArrayBuffer, "Should resolve to ArrayBuffer");
          var dec = new TextDecoder();
          is(
            dec.decode(new Uint8Array(v)),
            text,
            "UTF-8 decoded ArrayBuffer should match original"
          );
        });
    })
    .then(function () {
      return newReq()
        .formData()
        .then(
          function (v) {
            ok(false, "invalid FormData read should fail.");
          },
          function (e) {
            ok(e.name == "TypeError", "invalid FormData read should fail.");
          }
        );
    });
}

function testFormDataBodyExtraction() {
  // URLSearchParams translates to application/x-www-form-urlencoded.
  var params = new URLSearchParams();
  params.append("item", "Geckos");
  params.append("feature", "stickyfeet");
  params.append("quantity", "700");
  params.append("quantity", "800");

  var req = new Request("", { method: "POST", body: params });
  var p1 = req.formData().then(function (fd) {
    ok(fd.has("item"), "Has entry 'item'.");
    ok(fd.has("feature"), "Has entry 'feature'.");
    var entries = fd.getAll("quantity");
    is(entries.length, 2, "Entries with same name are correctly handled.");
    is(entries[0], "700", "Entries with same name are correctly handled.");
    is(entries[1], "800", "Entries with same name are correctly handled.");
  });

  var f1 = new FormData();
  f1.append("key", "value");
  f1.append("foo", "bar");
  f1.append("blob", new Blob([text]));
  var r2 = new Request("", { method: "post", body: f1 });
  var p2 = r2.formData().then(function (fd) {
    ok(fd.has("key"), "Has entry 'key'.");
    ok(fd.has("foo"), "Has entry 'foo'.");
    ok(fd.has("blob"), "Has entry 'blob'.");
    var entries = fd.getAll("blob");
    is(entries.length, 1, "getAll returns all items.");
    is(entries[0].name, "blob", "Filename should be blob.");
    ok(entries[0] instanceof Blob, "getAll returns blobs.");
  });

  var ws = "\r\n\r\n\r\n\r\n";
  f1.set(
    "key",
    new File([ws], "file name has spaces.txt", { type: "new/lines" })
  );
  var r3 = new Request("", { method: "post", body: f1 });
  var p3 = r3.formData().then(function (fd) {
    ok(fd.has("foo"), "Has entry 'foo'.");
    ok(fd.has("blob"), "Has entry 'blob'.");
    var entries = fd.getAll("blob");
    is(entries.length, 1, "getAll returns all items.");
    is(entries[0].name, "blob", "Filename should be blob.");
    ok(entries[0] instanceof Blob, "getAll returns blobs.");

    ok(fd.has("key"), "Has entry 'key'.");
    var f = fd.get("key");
    ok(f instanceof File, "entry should be a File.");
    is(f.name, "file name has spaces.txt", "File name should match.");
    is(f.type, "new/lines", "File type should match.");
    is(f.size, ws.length, "File size should match.");
    return readAsText(f).then(function (text) {
      is(text, ws, "File contents should match.");
    });
  });

  // Override header and ensure parse fails.
  var boundary = "1234567891011121314151617";
  var body =
    boundary +
    '\r\nContent-Disposition: form-data; name="greeting"\r\n\r\n"hello"\r\n' +
    boundary +
    "-";

  var r4 = new Request("", {
    method: "post",
    body,
    headers: {
      "Content-Type": "multipart/form-datafoobar; boundary=" + boundary,
    },
  });
  var p4 = r4.formData().then(
    function () {
      ok(false, "Invalid mimetype should fail.");
    },
    function () {
      ok(true, "Invalid mimetype should fail.");
    }
  );

  var r5 = new Request("", {
    method: "POST",
    body: params,
    headers: {
      "Content-Type": "application/x-www-form-urlencodedfoobar",
    },
  });
  var p5 = r5.formData().then(
    function () {
      ok(false, "Invalid mimetype should fail.");
    },
    function () {
      ok(true, "Invalid mimetype should fail.");
    }
  );
  return Promise.all([p1, p2, p3, p4]);
}

// mode cannot be set to "CORS-with-forced-preflight" from javascript.
function testModeCorsPreflightEnumValue() {
  try {
    var r = new Request(".", { mode: "cors-with-forced-preflight" });
    ok(
      false,
      "Creating Request with mode cors-with-forced-preflight should fail."
    );
  } catch (e) {
    ok(
      true,
      "Creating Request with mode cors-with-forced-preflight should fail."
    );
    // Also ensure that the error message matches error messages for truly
    // invalid strings.
    var invalidMode = "not-in-requestmode-enum";
    var invalidExc;
    try {
      var r = new Request(".", { mode: invalidMode });
    } catch (e) {
      invalidExc = e;
    }
    var expectedMessage = invalidExc.message.replace(
      invalidMode,
      "cors-with-forced-preflight"
    );
    is(
      e.message,
      expectedMessage,
      "mode cors-with-forced-preflight should throw same error as invalid RequestMode strings."
    );
  }
}

// HEAD/GET Requests are not allowed to have a body even when copying another
// Request.
function testBug1154268() {
  var r1 = new Request("/index.html", { method: "POST", body: "Hi there" });
  ["HEAD", "GET"].forEach(function (method) {
    try {
      var r2 = new Request(r1, { method });
      ok(
        false,
        method + " Request copied from POST Request with body should fail."
      );
    } catch (e) {
      is(
        e.name,
        "TypeError",
        method + " Request copied from POST Request with body should fail."
      );
    }
  });
}

function testRequestConsumedByFailedConstructor() {
  var r1 = new Request("http://example.com", {
    method: "POST",
    body: "hello world",
  });
  try {
    var r2 = new Request(r1, { method: "GET" });
    ok(false, "GET Request copied from POST Request with body should fail.");
  } catch (e) {
    ok(true, "GET Request copied from POST Request with body should fail.");
  }
  ok(
    !r1.bodyUsed,
    "Initial request should not be consumed by failed Request constructor"
  );
}

function runTest() {
  testDefaultCtor();
  testSimpleUrlParse();
  testUrlFragment();
  testUrlCredentials();
  testUrlMalformed();
  testMode();
  testMethod();
  testBug1109574();
  testBug1184550();
  testHeaderGuard();
  testModeCorsPreflightEnumValue();
  testBug1154268();
  testRequestConsumedByFailedConstructor();

  return Promise.resolve()
    .then(testBodyCreation)
    .then(testBodyUsed)
    .then(testBodyExtraction)
    .then(testFormDataBodyCreation)
    .then(testFormDataBodyExtraction)
    .then(testUsedRequest)
    .then(testClone());
  // Put more promise based tests here.
}