|
| 1 | +import { format } from "date-fns"; |
| 2 | +import { utcToZonedTime } from "date-fns-tz"; |
| 3 | +import React from "react"; |
| 4 | +import { PolarisDateTimePicker } from "../../../../src/auto/polaris/PolarisDateTimePicker.js"; |
| 5 | +import { PolarisWrapper } from "../../../support/auto.js"; |
| 6 | + |
| 7 | +const baseDate = new Date("2021-03-05T11:23:10.000Z"); |
| 8 | +const localTz = Intl.DateTimeFormat().resolvedOptions().timeZone; |
| 9 | +const dateInLocalTZ = utcToZonedTime(baseDate, localTz); |
| 10 | + |
| 11 | +describe("PolarisDateTimePicker", () => { |
| 12 | + beforeEach(() => { |
| 13 | + cy.viewport("macbook-13"); |
| 14 | + }); |
| 15 | + |
| 16 | + describe("date only", () => { |
| 17 | + it("can show with a blank current value", () => { |
| 18 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 19 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" onChange={onChangeSpy} />, PolarisWrapper); |
| 20 | + cy.get("#test-date").should("have.value", ""); |
| 21 | + }); |
| 22 | + |
| 23 | + it("can show the current value", () => { |
| 24 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 25 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 26 | + cy.get("#test-date").should("have.value", format(dateInLocalTZ, "yyyy-MM-dd")); |
| 27 | + }); |
| 28 | + |
| 29 | + it("can change the date", async () => { |
| 30 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 31 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 32 | + cy.get("#test-date").click(); |
| 33 | + cy.get(`[aria-label='Thursday March 4 2021']`).click(); |
| 34 | + // eslint-disable-next-line jest/valid-expect-in-promise |
| 35 | + cy.get("@onChangeSpy") |
| 36 | + .should("have.been.called") |
| 37 | + .then(() => { |
| 38 | + expect(onChangeSpy.getCalls()[0].args[0].toISOString()).equal(new Date("2021-03-04T11:23:10.000Z").toISOString()); |
| 39 | + }); |
| 40 | + }); |
| 41 | + |
| 42 | + it("can change the date across a DST boundary", async () => { |
| 43 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 44 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 45 | + cy.get("#test-date").click(); |
| 46 | + cy.get(`[aria-label='Wednesday March 17 2021']`).click(); |
| 47 | + // eslint-disable-next-line jest/valid-expect-in-promise |
| 48 | + cy.get("@onChangeSpy") |
| 49 | + .should("have.been.called") |
| 50 | + .then(() => { |
| 51 | + expect(onChangeSpy.getCalls()[0].args[0].toISOString()).equal(new Date("2021-03-17T10:23:10.000Z").toISOString()); |
| 52 | + }); |
| 53 | + }); |
| 54 | + }); |
| 55 | + |
| 56 | + describe("date and time", () => { |
| 57 | + it("can show with a blank current value", () => { |
| 58 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 59 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime onChange={onChangeSpy} />, PolarisWrapper); |
| 60 | + cy.get("#test-date").should("have.value", ""); |
| 61 | + cy.get("#test-time").should("have.value", ""); |
| 62 | + }); |
| 63 | + |
| 64 | + it("can show the current value", () => { |
| 65 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 66 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 67 | + cy.get("#test-date").should("have.value", format(dateInLocalTZ, "yyyy-MM-dd")); |
| 68 | + cy.get("#test-time").should("have.value", format(dateInLocalTZ, "K:m aa")); |
| 69 | + }); |
| 70 | + |
| 71 | + it("can change the date", async () => { |
| 72 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 73 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 74 | + cy.get("#test-date").click(); |
| 75 | + cy.get(`[aria-label='Thursday March 4 2021']`).click(); |
| 76 | + // eslint-disable-next-line jest/valid-expect-in-promise |
| 77 | + cy.get("@onChangeSpy") |
| 78 | + .should("have.been.called") |
| 79 | + .then(() => { |
| 80 | + expect(onChangeSpy.getCalls()[0].args[0].toISOString()).equal(new Date("2021-03-04T11:23:10.000Z").toISOString()); |
| 81 | + }); |
| 82 | + }); |
| 83 | + |
| 84 | + it("can change the time", () => { |
| 85 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 86 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 87 | + cy.get("#test-time").clear().type("11:00 AM", { parseSpecialCharSequences: false }); |
| 88 | + // eslint-disable-next-line jest/valid-expect-in-promise |
| 89 | + cy.get("@onChangeSpy") |
| 90 | + .should("have.been.called") |
| 91 | + .then(() => { |
| 92 | + const calls = onChangeSpy.getCalls(); |
| 93 | + |
| 94 | + expect(calls[calls.length - 1].args[0].toISOString()).equal(new Date("2021-03-05T16:00:00.000Z").toISOString()); |
| 95 | + }); |
| 96 | + }); |
| 97 | + |
| 98 | + it("can enter an invalid time and show an error", () => { |
| 99 | + const onChangeSpy = cy.spy().as("onChangeSpy"); |
| 100 | + cy.mountWithWrapper(<PolarisDateTimePicker id="test" includeTime value={baseDate} onChange={onChangeSpy} />, PolarisWrapper); |
| 101 | + cy.get("#test-time").clear().type("foo"); |
| 102 | + cy.get("body").click(); |
| 103 | + cy.contains("Invalid time"); |
| 104 | + cy.get("#test-time").clear().type("12:21 AM"); |
| 105 | + cy.contains("Invalid time").should("not.exist"); |
| 106 | + }); |
| 107 | + }); |
| 108 | +}); |
0 commit comments