summaryrefslogtreecommitdiffstats
path: root/vendor/js-sys/tests/wasm/Temporal.rs
blob: feff11991c323c009a996fa4c9bc52177e00f696 (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
use js_sys::*;
use wasm_bindgen::prelude::*;
use wasm_bindgen_test::*;

#[wasm_bindgen(module = "tests/wasm/Temporal.js")]
extern "C" {
    fn is_temporal_supported() -> bool;
}

#[wasm_bindgen_test]
fn now() {
    if !is_temporal_supported() {
        return;
    }
    let x = Temporal::Now::plain_date("iso8086");
    let y: JsValue = x.into();
    assert!(y.is_object());
}

#[wasm_bindgen_test]
fn duration() {
    if !is_temporal_supported() {
        return;
    }
    let x = Temporal::Duration::from(&"PT1.00001S".into());
    assert_eq!(x.years(), 0);
    assert_eq!(x.microseconds(), 10);
}

#[wasm_bindgen_test]
fn zoned_date_time() {
    if !is_temporal_supported() {
        return;
    }
    let zdt = Temporal::ZonedDateTime::from(&"2020-03-09T00:00-07:00[America/Los_Angeles]".into());
    let earlier_day = zdt.subtract(
        &Temporal::Duration::from(&"P1D".into()),
        &JsValue::UNDEFINED,
    );
    let earlier_hours = zdt.subtract(
        &Temporal::Duration::from(&"PT24H".into()),
        &JsValue::UNDEFINED,
    );
    assert_eq!(earlier_day.hour(), 0);
    assert_eq!(earlier_hours.hour(), 23);
}

#[wasm_bindgen_test]
fn plain_time() {
    if !is_temporal_supported() {
        return;
    }
    let time = Temporal::PlainTime::from(&"19:39:09.068346205".into());
    assert_eq!(time.microsecond(), 346);
    assert_eq!(time.round(&"hour".into()).hour(), 20);
}

#[wasm_bindgen_test]
fn plain_date() {
    if !is_temporal_supported() {
        return;
    }
    let x = Temporal::PlainDate::new(2022, 2, 2).with_calendar("persian");
    let y = Temporal::PlainDate::new(2022, 2, 5);
    let z = Temporal::PlainDate::from(&"-002022-02-02[u-ca=gregory]".into());
    assert_eq!(Temporal::PlainDate::compare(&x, &y), -1);
    assert_eq!(x.year(), 1400);
    assert_eq!(x.month(), 11);
    assert_eq!(x.month_code(), "M11");
    assert_eq!(x.day(), 13);
    assert_eq!(x.era(), "ap");
    assert_eq!(y.era(), JsValue::UNDEFINED);
    assert_eq!(z.era_year(), 2023i32);
    assert_eq!(y.day_of_week(), 6);
    assert_eq!(
        Reflect::get(&x.get_iso_fields(), &"isoYear".into()).unwrap(),
        2022i32
    );
    assert_eq!(x.in_leap_year(), false);
}