mapcomplete/test/Models/Units.spec.ts

29 lines
936 B
TypeScript
Raw Normal View History

2022-09-08 21:40:48 +02:00
import { describe } from "mocha"
import { expect } from "chai"
import { Unit } from "../../Models/Unit"
import { Denomination } from "../../Models/Denomination"
2022-03-15 01:53:08 +01:00
describe("Unit", () => {
2022-09-08 21:40:48 +02:00
it("should convert a value back and forth", () => {
const denomintion = new Denomination(
{
canonicalDenomination: "MW",
alternativeDenomination: ["megawatts", "megawatt"],
human: {
en: " megawatts",
nl: " megawatt",
2022-03-15 01:53:08 +01:00
},
2022-09-08 21:40:48 +02:00
},
false,
2022-09-08 21:40:48 +02:00
"test"
)
2022-03-15 01:53:08 +01:00
2022-09-08 21:40:48 +02:00
const canonical = denomintion.canonicalValue("5", true)
expect(canonical).eq("5 MW")
const units = new Unit(["key"], [denomintion], false)
const [detected, detectedDenom] = units.findDenomination("5 MW", () => "be")
expect(detected).eq("5")
expect(detectedDenom).eq(denomintion)
})
2022-03-15 01:53:08 +01:00
})