summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_utils_timeConversion.js
blob: c71effe7094159da6fd1a794b9a7e6078e08a0aa (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Check time conversion utils.
 */

add_task(async function toDate() {
  Assert.throws(() => PlacesUtils.toDate(), /Invalid value/, "Should throw");
  Assert.throws(() => PlacesUtils.toDate(NaN), /Invalid value/, "Should throw");
  Assert.throws(
    () => PlacesUtils.toDate(null),
    /Invalid value/,
    "Should throw"
  );
  Assert.throws(() => PlacesUtils.toDate("1"), /Invalid value/, "Should throw");

  const now = Date.now();
  const usecs = now * 1000;
  Assert.deepEqual(PlacesUtils.toDate(usecs), new Date(now));
});

add_task(async function toPRTime() {
  Assert.throws(() => PlacesUtils.toPRTime(), /TypeError/, "Should throw");
  Assert.throws(() => PlacesUtils.toPRTime(null), /TypeError/, "Should throw");
  Assert.throws(
    () => PlacesUtils.toPRTime({}),
    /Invalid value/,
    "Should throw"
  );
  Assert.throws(
    () => PlacesUtils.toPRTime(NaN),
    /Invalid value/,
    "Should throw"
  );
  Assert.throws(
    () => PlacesUtils.toPRTime(new Date(NaN)),
    /Invalid value/,
    "Should throw"
  );
  Assert.throws(
    () => PlacesUtils.toPRTime(new URL("https://test.moz")),
    /Invalid value/,
    "Should throw"
  );

  const now = Date.now();
  const usecs = now * 1000;
  Assert.strictEqual(PlacesUtils.toPRTime(now), usecs);
  Assert.strictEqual(PlacesUtils.toPRTime(new Date(now)), usecs);
});