|
| 1 | +import React from "react"; |
| 2 | +import { render, screen } from "@testing-library/react"; |
| 3 | +import Amount from "./amount"; |
| 4 | + |
| 5 | +it("renders 0 correctly", () => { |
| 6 | + const { asFragment } = render(<Amount>{0}</Amount>); |
| 7 | + const integer = asFragment() |
| 8 | + .querySelector(".amount-integer") |
| 9 | + ?.innerHTML.trim(); |
| 10 | + const fraction = asFragment() |
| 11 | + .querySelector(".amount-fraction") |
| 12 | + ?.innerHTML.trim(); |
| 13 | + expect(integer).toBe("0"); |
| 14 | + expect(fraction).toBe("00"); |
| 15 | +}); |
| 16 | + |
| 17 | +it("renders positive two-digit integer correctly", () => { |
| 18 | + const { asFragment } = render(<Amount>{15}</Amount>); |
| 19 | + const integer = asFragment() |
| 20 | + .querySelector(".amount-integer") |
| 21 | + ?.innerHTML.trim(); |
| 22 | + const fraction = asFragment() |
| 23 | + .querySelector(".amount-fraction") |
| 24 | + ?.innerHTML.trim(); |
| 25 | + expect(integer).toBe("15"); |
| 26 | + expect(fraction).toBe("00"); |
| 27 | +}); |
| 28 | + |
| 29 | +it("renders negative integer correctly", () => { |
| 30 | + const { asFragment } = render(<Amount>{-8}</Amount>); |
| 31 | + const integer = asFragment() |
| 32 | + .querySelector(".amount-integer") |
| 33 | + ?.innerHTML.trim(); |
| 34 | + const fraction = asFragment() |
| 35 | + .querySelector(".amount-fraction") |
| 36 | + ?.innerHTML.trim(); |
| 37 | + expect(integer).toBe("-8"); |
| 38 | + expect(fraction).toBe("00"); |
| 39 | +}); |
| 40 | + |
| 41 | +it("renders number with 1 fraction digit correctly", () => { |
| 42 | + const { asFragment } = render(<Amount>{28.4}</Amount>); |
| 43 | + const integer = asFragment() |
| 44 | + .querySelector(".amount-integer") |
| 45 | + ?.innerHTML.trim(); |
| 46 | + const fraction = asFragment() |
| 47 | + .querySelector(".amount-fraction") |
| 48 | + ?.innerHTML.trim(); |
| 49 | + expect(integer).toBe("28"); |
| 50 | + expect(fraction).toBe("40"); |
| 51 | +}); |
| 52 | + |
| 53 | +it("renders number with 2 fraction digits correctly", () => { |
| 54 | + const { asFragment } = render(<Amount>{231.87}</Amount>); |
| 55 | + const integer = asFragment() |
| 56 | + .querySelector(".amount-integer") |
| 57 | + ?.innerHTML.trim(); |
| 58 | + const fraction = asFragment() |
| 59 | + .querySelector(".amount-fraction") |
| 60 | + ?.innerHTML.trim(); |
| 61 | + expect(integer).toBe("231"); |
| 62 | + expect(fraction).toBe("87"); |
| 63 | +}); |
| 64 | + |
| 65 | +it("renders number with 3 fraction digits rounded up correctly", () => { |
| 66 | + const { asFragment } = render(<Amount>{0.336}</Amount>); |
| 67 | + const integer = asFragment() |
| 68 | + .querySelector(".amount-integer") |
| 69 | + ?.innerHTML.trim(); |
| 70 | + const fraction = asFragment() |
| 71 | + .querySelector(".amount-fraction") |
| 72 | + ?.innerHTML.trim(); |
| 73 | + expect(integer).toBe("0"); |
| 74 | + expect(fraction).toBe("34"); |
| 75 | +}); |
| 76 | + |
| 77 | +it("renders number with 3 fraction digits rounded down correctly", () => { |
| 78 | + const { asFragment } = render(<Amount>{-72.168}</Amount>); |
| 79 | + const integer = asFragment() |
| 80 | + .querySelector(".amount-integer") |
| 81 | + ?.innerHTML.trim(); |
| 82 | + const fraction = asFragment() |
| 83 | + .querySelector(".amount-fraction") |
| 84 | + ?.innerHTML.trim(); |
| 85 | + expect(integer).toBe("-72"); |
| 86 | + expect(fraction).toBe("17"); |
| 87 | +}); |
| 88 | + |
| 89 | +it("hides fraction if it's zero and hide zero flag is set", () => { |
| 90 | + const { asFragment } = render(<Amount hideZeroFraction>{-28}</Amount>); |
| 91 | + const integer = asFragment() |
| 92 | + .querySelector(".amount-integer") |
| 93 | + ?.innerHTML.trim(); |
| 94 | + expect(integer).toBe("-28"); |
| 95 | + expect(asFragment().querySelector(".amount-fraction")).toBeNull(); |
| 96 | +}); |
| 97 | + |
| 98 | +it("shows fraction if hide zero flag is set but it's not zero", () => { |
| 99 | + const { asFragment } = render(<Amount hideZeroFraction>{-12.8}</Amount>); |
| 100 | + const integer = asFragment() |
| 101 | + .querySelector(".amount-integer") |
| 102 | + ?.innerHTML.trim(); |
| 103 | + const fraction = asFragment() |
| 104 | + .querySelector(".amount-fraction") |
| 105 | + ?.innerHTML.trim(); |
| 106 | + expect(integer).toBe("-12"); |
| 107 | + expect(fraction).toBe("80"); |
| 108 | +}); |
0 commit comments