2023-01-21 12:11:13 +00:00
|
|
|
"""Test Home Assistant unit conversion utility functions."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import inspect
|
2023-05-29 18:50:40 +00:00
|
|
|
from itertools import chain
|
2023-01-21 12:11:13 +00:00
|
|
|
|
2022-09-22 13:39:49 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from homeassistant.const import (
|
2023-05-12 14:46:37 +00:00
|
|
|
CONCENTRATION_PARTS_PER_BILLION,
|
|
|
|
CONCENTRATION_PARTS_PER_MILLION,
|
2023-01-22 15:39:45 +00:00
|
|
|
PERCENTAGE,
|
2022-12-28 20:49:00 +00:00
|
|
|
UnitOfDataRate,
|
2022-12-30 12:55:14 +00:00
|
|
|
UnitOfElectricCurrent,
|
2023-01-22 15:39:45 +00:00
|
|
|
UnitOfElectricPotential,
|
2022-10-26 11:56:51 +00:00
|
|
|
UnitOfEnergy,
|
2022-12-29 08:58:15 +00:00
|
|
|
UnitOfInformation,
|
2022-10-26 18:47:17 +00:00
|
|
|
UnitOfLength,
|
|
|
|
UnitOfMass,
|
|
|
|
UnitOfPower,
|
|
|
|
UnitOfPressure,
|
|
|
|
UnitOfSpeed,
|
|
|
|
UnitOfTemperature,
|
|
|
|
UnitOfVolume,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux,
|
2022-09-22 13:39:49 +00:00
|
|
|
)
|
2022-09-28 08:58:04 +00:00
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
2023-01-21 12:11:13 +00:00
|
|
|
from homeassistant.util import unit_conversion
|
2022-09-22 13:39:49 +00:00
|
|
|
from homeassistant.util.unit_conversion import (
|
|
|
|
BaseUnitConverter,
|
2022-12-28 20:49:00 +00:00
|
|
|
DataRateConverter,
|
2022-09-23 12:23:59 +00:00
|
|
|
DistanceConverter,
|
2022-12-30 12:55:14 +00:00
|
|
|
ElectricCurrentConverter,
|
2023-01-21 12:11:13 +00:00
|
|
|
ElectricPotentialConverter,
|
2022-09-22 13:39:49 +00:00
|
|
|
EnergyConverter,
|
2022-12-29 08:58:15 +00:00
|
|
|
InformationConverter,
|
2022-09-28 10:13:49 +00:00
|
|
|
MassConverter,
|
2022-09-22 13:39:49 +00:00
|
|
|
PowerConverter,
|
2022-09-22 14:44:09 +00:00
|
|
|
PressureConverter,
|
2022-09-23 12:23:59 +00:00
|
|
|
SpeedConverter,
|
2022-09-22 16:31:50 +00:00
|
|
|
TemperatureConverter,
|
2023-01-21 12:11:13 +00:00
|
|
|
UnitlessRatioConverter,
|
2022-09-22 15:49:45 +00:00
|
|
|
VolumeConverter,
|
2022-09-22 13:39:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
INVALID_SYMBOL = "bob"
|
|
|
|
|
|
|
|
|
2023-01-21 12:11:13 +00:00
|
|
|
# Dict containing all converters that need to be tested.
|
|
|
|
# The VALID_UNITS are sorted to ensure that pytest runs are consistent
|
|
|
|
# and avoid `different tests were collected between gw0 and gw1`
|
|
|
|
_ALL_CONVERTERS: dict[type[BaseUnitConverter], list[str | None]] = {
|
|
|
|
converter: sorted(converter.VALID_UNITS, key=lambda x: (x is None, x))
|
|
|
|
for converter in (
|
|
|
|
DataRateConverter,
|
|
|
|
DistanceConverter,
|
|
|
|
ElectricCurrentConverter,
|
|
|
|
ElectricPotentialConverter,
|
|
|
|
EnergyConverter,
|
|
|
|
InformationConverter,
|
|
|
|
MassConverter,
|
|
|
|
PowerConverter,
|
|
|
|
PressureConverter,
|
|
|
|
SpeedConverter,
|
|
|
|
TemperatureConverter,
|
|
|
|
UnitlessRatioConverter,
|
|
|
|
VolumeConverter,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-01-22 15:39:45 +00:00
|
|
|
# Dict containing all converters with a corresponding unit ratio.
|
|
|
|
_GET_UNIT_RATIO: dict[type[BaseUnitConverter], tuple[str | None, str | None, float]] = {
|
|
|
|
DataRateConverter: (
|
|
|
|
UnitOfDataRate.BITS_PER_SECOND,
|
|
|
|
UnitOfDataRate.BYTES_PER_SECOND,
|
|
|
|
8,
|
|
|
|
),
|
|
|
|
DistanceConverter: (UnitOfLength.KILOMETERS, UnitOfLength.METERS, 0.001),
|
|
|
|
ElectricCurrentConverter: (
|
|
|
|
UnitOfElectricCurrent.AMPERE,
|
|
|
|
UnitOfElectricCurrent.MILLIAMPERE,
|
|
|
|
0.001,
|
|
|
|
),
|
|
|
|
ElectricPotentialConverter: (
|
|
|
|
UnitOfElectricPotential.MILLIVOLT,
|
|
|
|
UnitOfElectricPotential.VOLT,
|
|
|
|
1000,
|
|
|
|
),
|
|
|
|
EnergyConverter: (UnitOfEnergy.WATT_HOUR, UnitOfEnergy.KILO_WATT_HOUR, 1000),
|
|
|
|
InformationConverter: (UnitOfInformation.BITS, UnitOfInformation.BYTES, 8),
|
|
|
|
MassConverter: (UnitOfMass.STONES, UnitOfMass.KILOGRAMS, 0.157473),
|
|
|
|
PowerConverter: (UnitOfPower.WATT, UnitOfPower.KILO_WATT, 1000),
|
|
|
|
PressureConverter: (UnitOfPressure.HPA, UnitOfPressure.INHG, 33.86389),
|
|
|
|
SpeedConverter: (
|
|
|
|
UnitOfSpeed.KILOMETERS_PER_HOUR,
|
|
|
|
UnitOfSpeed.MILES_PER_HOUR,
|
|
|
|
1.609343,
|
|
|
|
),
|
|
|
|
TemperatureConverter: (
|
|
|
|
UnitOfTemperature.CELSIUS,
|
|
|
|
UnitOfTemperature.FAHRENHEIT,
|
|
|
|
0.555556,
|
|
|
|
),
|
|
|
|
UnitlessRatioConverter: (PERCENTAGE, None, 100),
|
|
|
|
VolumeConverter: (UnitOfVolume.GALLONS, UnitOfVolume.LITERS, 0.264172),
|
|
|
|
}
|
|
|
|
|
2023-01-23 09:11:11 +00:00
|
|
|
# Dict containing a conversion test for every know unit.
|
|
|
|
_CONVERTED_VALUE: dict[
|
|
|
|
type[BaseUnitConverter], list[tuple[float, str | None, float, str | None]]
|
|
|
|
] = {
|
|
|
|
DataRateConverter: [
|
2022-12-28 20:49:00 +00:00
|
|
|
(8e3, UnitOfDataRate.BITS_PER_SECOND, 8, UnitOfDataRate.KILOBITS_PER_SECOND),
|
|
|
|
(8e6, UnitOfDataRate.BITS_PER_SECOND, 8, UnitOfDataRate.MEGABITS_PER_SECOND),
|
|
|
|
(8e9, UnitOfDataRate.BITS_PER_SECOND, 8, UnitOfDataRate.GIGABITS_PER_SECOND),
|
|
|
|
(8, UnitOfDataRate.BITS_PER_SECOND, 1, UnitOfDataRate.BYTES_PER_SECOND),
|
|
|
|
(8e3, UnitOfDataRate.BITS_PER_SECOND, 1, UnitOfDataRate.KILOBYTES_PER_SECOND),
|
|
|
|
(8e6, UnitOfDataRate.BITS_PER_SECOND, 1, UnitOfDataRate.MEGABYTES_PER_SECOND),
|
|
|
|
(8e9, UnitOfDataRate.BITS_PER_SECOND, 1, UnitOfDataRate.GIGABYTES_PER_SECOND),
|
|
|
|
(
|
|
|
|
8 * 2**10,
|
|
|
|
UnitOfDataRate.BITS_PER_SECOND,
|
|
|
|
1,
|
|
|
|
UnitOfDataRate.KIBIBYTES_PER_SECOND,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
8 * 2**20,
|
|
|
|
UnitOfDataRate.BITS_PER_SECOND,
|
|
|
|
1,
|
|
|
|
UnitOfDataRate.MEBIBYTES_PER_SECOND,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
8 * 2**30,
|
|
|
|
UnitOfDataRate.BITS_PER_SECOND,
|
|
|
|
1,
|
|
|
|
UnitOfDataRate.GIBIBYTES_PER_SECOND,
|
|
|
|
),
|
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
DistanceConverter: [
|
2022-12-30 09:16:20 +00:00
|
|
|
(5, UnitOfLength.MILES, 8.04672, UnitOfLength.KILOMETERS),
|
|
|
|
(5, UnitOfLength.MILES, 8046.72, UnitOfLength.METERS),
|
|
|
|
(5, UnitOfLength.MILES, 804672.0, UnitOfLength.CENTIMETERS),
|
|
|
|
(5, UnitOfLength.MILES, 8046720.0, UnitOfLength.MILLIMETERS),
|
|
|
|
(5, UnitOfLength.MILES, 8800.0, UnitOfLength.YARDS),
|
|
|
|
(5, UnitOfLength.MILES, 26400.0008448, UnitOfLength.FEET),
|
|
|
|
(5, UnitOfLength.MILES, 316800.171072, UnitOfLength.INCHES),
|
|
|
|
(5, UnitOfLength.YARDS, 0.004572, UnitOfLength.KILOMETERS),
|
|
|
|
(5, UnitOfLength.YARDS, 4.572, UnitOfLength.METERS),
|
|
|
|
(5, UnitOfLength.YARDS, 457.2, UnitOfLength.CENTIMETERS),
|
|
|
|
(5, UnitOfLength.YARDS, 4572, UnitOfLength.MILLIMETERS),
|
|
|
|
(5, UnitOfLength.YARDS, 0.002840908212, UnitOfLength.MILES),
|
|
|
|
(5, UnitOfLength.YARDS, 15.00000048, UnitOfLength.FEET),
|
|
|
|
(5, UnitOfLength.YARDS, 180.0000972, UnitOfLength.INCHES),
|
|
|
|
(5000, UnitOfLength.FEET, 1.524, UnitOfLength.KILOMETERS),
|
|
|
|
(5000, UnitOfLength.FEET, 1524, UnitOfLength.METERS),
|
|
|
|
(5000, UnitOfLength.FEET, 152400.0, UnitOfLength.CENTIMETERS),
|
|
|
|
(5000, UnitOfLength.FEET, 1524000.0, UnitOfLength.MILLIMETERS),
|
|
|
|
(5000, UnitOfLength.FEET, 0.946969404, UnitOfLength.MILES),
|
|
|
|
(5000, UnitOfLength.FEET, 1666.66667, UnitOfLength.YARDS),
|
|
|
|
(5000, UnitOfLength.FEET, 60000.0324, UnitOfLength.INCHES),
|
|
|
|
(5000, UnitOfLength.INCHES, 0.127, UnitOfLength.KILOMETERS),
|
|
|
|
(5000, UnitOfLength.INCHES, 127.0, UnitOfLength.METERS),
|
|
|
|
(5000, UnitOfLength.INCHES, 12700.0, UnitOfLength.CENTIMETERS),
|
|
|
|
(5000, UnitOfLength.INCHES, 127000.0, UnitOfLength.MILLIMETERS),
|
|
|
|
(5000, UnitOfLength.INCHES, 0.078914117, UnitOfLength.MILES),
|
|
|
|
(5000, UnitOfLength.INCHES, 138.88889, UnitOfLength.YARDS),
|
|
|
|
(5000, UnitOfLength.INCHES, 416.66668, UnitOfLength.FEET),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 5000, UnitOfLength.METERS),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 500000, UnitOfLength.CENTIMETERS),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 5000000, UnitOfLength.MILLIMETERS),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 3.106855, UnitOfLength.MILES),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 5468.066, UnitOfLength.YARDS),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 16404.2, UnitOfLength.FEET),
|
|
|
|
(5, UnitOfLength.KILOMETERS, 196850.5, UnitOfLength.INCHES),
|
|
|
|
(5000, UnitOfLength.METERS, 5, UnitOfLength.KILOMETERS),
|
|
|
|
(5000, UnitOfLength.METERS, 500000, UnitOfLength.CENTIMETERS),
|
|
|
|
(5000, UnitOfLength.METERS, 5000000, UnitOfLength.MILLIMETERS),
|
|
|
|
(5000, UnitOfLength.METERS, 3.106855, UnitOfLength.MILES),
|
|
|
|
(5000, UnitOfLength.METERS, 5468.066, UnitOfLength.YARDS),
|
|
|
|
(5000, UnitOfLength.METERS, 16404.2, UnitOfLength.FEET),
|
|
|
|
(5000, UnitOfLength.METERS, 196850.5, UnitOfLength.INCHES),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 5, UnitOfLength.KILOMETERS),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 5000, UnitOfLength.METERS),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 5000000, UnitOfLength.MILLIMETERS),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 3.106855, UnitOfLength.MILES),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 5468.066, UnitOfLength.YARDS),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 16404.2, UnitOfLength.FEET),
|
|
|
|
(500000, UnitOfLength.CENTIMETERS, 196850.5, UnitOfLength.INCHES),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 5, UnitOfLength.KILOMETERS),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 5000, UnitOfLength.METERS),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 500000, UnitOfLength.CENTIMETERS),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 3.106855, UnitOfLength.MILES),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 5468.066, UnitOfLength.YARDS),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 16404.2, UnitOfLength.FEET),
|
|
|
|
(5000000, UnitOfLength.MILLIMETERS, 196850.5, UnitOfLength.INCHES),
|
2022-09-23 12:23:59 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
ElectricCurrentConverter: [
|
|
|
|
(5, UnitOfElectricCurrent.AMPERE, 5000, UnitOfElectricCurrent.MILLIAMPERE),
|
|
|
|
(5, UnitOfElectricCurrent.MILLIAMPERE, 0.005, UnitOfElectricCurrent.AMPERE),
|
|
|
|
],
|
|
|
|
ElectricPotentialConverter: [
|
|
|
|
(5, UnitOfElectricPotential.VOLT, 5000, UnitOfElectricPotential.MILLIVOLT),
|
|
|
|
(5, UnitOfElectricPotential.MILLIVOLT, 0.005, UnitOfElectricPotential.VOLT),
|
|
|
|
],
|
|
|
|
EnergyConverter: [
|
2022-10-26 11:56:51 +00:00
|
|
|
(10, UnitOfEnergy.WATT_HOUR, 0.01, UnitOfEnergy.KILO_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.WATT_HOUR, 0.00001, UnitOfEnergy.MEGA_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.KILO_WATT_HOUR, 10000, UnitOfEnergy.WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.KILO_WATT_HOUR, 0.01, UnitOfEnergy.MEGA_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.MEGA_WATT_HOUR, 10000000, UnitOfEnergy.WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.MEGA_WATT_HOUR, 10000, UnitOfEnergy.KILO_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.GIGA_JOULE, 10000 / 3.6, UnitOfEnergy.KILO_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.GIGA_JOULE, 10 / 3.6, UnitOfEnergy.MEGA_WATT_HOUR),
|
2023-01-25 13:13:42 +00:00
|
|
|
(10, UnitOfEnergy.MEGA_JOULE, 10 / 3.6, UnitOfEnergy.KILO_WATT_HOUR),
|
|
|
|
(10, UnitOfEnergy.MEGA_JOULE, 0.010 / 3.6, UnitOfEnergy.MEGA_WATT_HOUR),
|
2022-09-22 13:39:49 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
InformationConverter: [
|
2022-12-29 08:58:15 +00:00
|
|
|
(8e3, UnitOfInformation.BITS, 8, UnitOfInformation.KILOBITS),
|
|
|
|
(8e6, UnitOfInformation.BITS, 8, UnitOfInformation.MEGABITS),
|
|
|
|
(8e9, UnitOfInformation.BITS, 8, UnitOfInformation.GIGABITS),
|
|
|
|
(8, UnitOfInformation.BITS, 1, UnitOfInformation.BYTES),
|
|
|
|
(8e3, UnitOfInformation.BITS, 1, UnitOfInformation.KILOBYTES),
|
|
|
|
(8e6, UnitOfInformation.BITS, 1, UnitOfInformation.MEGABYTES),
|
|
|
|
(8e9, UnitOfInformation.BITS, 1, UnitOfInformation.GIGABYTES),
|
|
|
|
(8e12, UnitOfInformation.BITS, 1, UnitOfInformation.TERABYTES),
|
|
|
|
(8e15, UnitOfInformation.BITS, 1, UnitOfInformation.PETABYTES),
|
|
|
|
(8e18, UnitOfInformation.BITS, 1, UnitOfInformation.EXABYTES),
|
|
|
|
(8e21, UnitOfInformation.BITS, 1, UnitOfInformation.ZETTABYTES),
|
|
|
|
(8e24, UnitOfInformation.BITS, 1, UnitOfInformation.YOTTABYTES),
|
|
|
|
(8 * 2**10, UnitOfInformation.BITS, 1, UnitOfInformation.KIBIBYTES),
|
|
|
|
(8 * 2**20, UnitOfInformation.BITS, 1, UnitOfInformation.MEBIBYTES),
|
|
|
|
(8 * 2**30, UnitOfInformation.BITS, 1, UnitOfInformation.GIBIBYTES),
|
|
|
|
(8 * 2**40, UnitOfInformation.BITS, 1, UnitOfInformation.TEBIBYTES),
|
|
|
|
(8 * 2**50, UnitOfInformation.BITS, 1, UnitOfInformation.PEBIBYTES),
|
|
|
|
(8 * 2**60, UnitOfInformation.BITS, 1, UnitOfInformation.EXBIBYTES),
|
|
|
|
(8 * 2**70, UnitOfInformation.BITS, 1, UnitOfInformation.ZEBIBYTES),
|
|
|
|
(8 * 2**80, UnitOfInformation.BITS, 1, UnitOfInformation.YOBIBYTES),
|
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
MassConverter: [
|
2022-10-26 18:47:17 +00:00
|
|
|
(10, UnitOfMass.KILOGRAMS, 10000, UnitOfMass.GRAMS),
|
|
|
|
(10, UnitOfMass.KILOGRAMS, 10000000, UnitOfMass.MILLIGRAMS),
|
|
|
|
(10, UnitOfMass.KILOGRAMS, 10000000000, UnitOfMass.MICROGRAMS),
|
2022-12-30 09:16:20 +00:00
|
|
|
(10, UnitOfMass.KILOGRAMS, 352.73961, UnitOfMass.OUNCES),
|
|
|
|
(10, UnitOfMass.KILOGRAMS, 22.046226, UnitOfMass.POUNDS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(10, UnitOfMass.GRAMS, 0.01, UnitOfMass.KILOGRAMS),
|
|
|
|
(10, UnitOfMass.GRAMS, 10000, UnitOfMass.MILLIGRAMS),
|
|
|
|
(10, UnitOfMass.GRAMS, 10000000, UnitOfMass.MICROGRAMS),
|
2022-12-30 09:16:20 +00:00
|
|
|
(10, UnitOfMass.GRAMS, 0.35273961, UnitOfMass.OUNCES),
|
|
|
|
(10, UnitOfMass.GRAMS, 0.022046226, UnitOfMass.POUNDS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(10, UnitOfMass.MILLIGRAMS, 0.00001, UnitOfMass.KILOGRAMS),
|
|
|
|
(10, UnitOfMass.MILLIGRAMS, 0.01, UnitOfMass.GRAMS),
|
|
|
|
(10, UnitOfMass.MILLIGRAMS, 10000, UnitOfMass.MICROGRAMS),
|
2022-12-30 09:16:20 +00:00
|
|
|
(10, UnitOfMass.MILLIGRAMS, 0.00035273961, UnitOfMass.OUNCES),
|
|
|
|
(10, UnitOfMass.MILLIGRAMS, 0.000022046226, UnitOfMass.POUNDS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(10000, UnitOfMass.MICROGRAMS, 0.00001, UnitOfMass.KILOGRAMS),
|
|
|
|
(10000, UnitOfMass.MICROGRAMS, 0.01, UnitOfMass.GRAMS),
|
|
|
|
(10000, UnitOfMass.MICROGRAMS, 10, UnitOfMass.MILLIGRAMS),
|
2022-12-30 09:16:20 +00:00
|
|
|
(10000, UnitOfMass.MICROGRAMS, 0.00035273961, UnitOfMass.OUNCES),
|
|
|
|
(10000, UnitOfMass.MICROGRAMS, 0.000022046226, UnitOfMass.POUNDS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(1, UnitOfMass.POUNDS, 0.45359237, UnitOfMass.KILOGRAMS),
|
|
|
|
(1, UnitOfMass.POUNDS, 453.59237, UnitOfMass.GRAMS),
|
|
|
|
(1, UnitOfMass.POUNDS, 453592.37, UnitOfMass.MILLIGRAMS),
|
|
|
|
(1, UnitOfMass.POUNDS, 453592370, UnitOfMass.MICROGRAMS),
|
|
|
|
(1, UnitOfMass.POUNDS, 16, UnitOfMass.OUNCES),
|
|
|
|
(16, UnitOfMass.OUNCES, 0.45359237, UnitOfMass.KILOGRAMS),
|
|
|
|
(16, UnitOfMass.OUNCES, 453.59237, UnitOfMass.GRAMS),
|
|
|
|
(16, UnitOfMass.OUNCES, 453592.37, UnitOfMass.MILLIGRAMS),
|
|
|
|
(16, UnitOfMass.OUNCES, 453592370, UnitOfMass.MICROGRAMS),
|
|
|
|
(16, UnitOfMass.OUNCES, 1, UnitOfMass.POUNDS),
|
2022-12-30 09:16:20 +00:00
|
|
|
(1, UnitOfMass.STONES, 6.350293, UnitOfMass.KILOGRAMS),
|
|
|
|
(1, UnitOfMass.STONES, 6350.293, UnitOfMass.GRAMS),
|
|
|
|
(1, UnitOfMass.STONES, 6350293, UnitOfMass.MILLIGRAMS),
|
|
|
|
(1, UnitOfMass.STONES, 14, UnitOfMass.POUNDS),
|
|
|
|
(1, UnitOfMass.STONES, 224, UnitOfMass.OUNCES),
|
2022-09-28 10:13:49 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
PowerConverter: [
|
2022-10-26 18:47:17 +00:00
|
|
|
(10, UnitOfPower.KILO_WATT, 10000, UnitOfPower.WATT),
|
|
|
|
(10, UnitOfPower.WATT, 0.01, UnitOfPower.KILO_WATT),
|
2022-09-22 15:49:45 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
PressureConverter: [
|
2022-12-30 09:16:20 +00:00
|
|
|
(1000, UnitOfPressure.HPA, 14.5037743897, UnitOfPressure.PSI),
|
|
|
|
(1000, UnitOfPressure.HPA, 29.5299801647, UnitOfPressure.INHG),
|
|
|
|
(1000, UnitOfPressure.HPA, 100000, UnitOfPressure.PA),
|
|
|
|
(1000, UnitOfPressure.HPA, 100, UnitOfPressure.KPA),
|
|
|
|
(1000, UnitOfPressure.HPA, 1000, UnitOfPressure.MBAR),
|
|
|
|
(1000, UnitOfPressure.HPA, 100, UnitOfPressure.CBAR),
|
|
|
|
(100, UnitOfPressure.KPA, 14.5037743897, UnitOfPressure.PSI),
|
|
|
|
(100, UnitOfPressure.KPA, 29.5299801647, UnitOfPressure.INHG),
|
|
|
|
(100, UnitOfPressure.KPA, 100000, UnitOfPressure.PA),
|
|
|
|
(100, UnitOfPressure.KPA, 1000, UnitOfPressure.HPA),
|
|
|
|
(100, UnitOfPressure.KPA, 1000, UnitOfPressure.MBAR),
|
|
|
|
(100, UnitOfPressure.KPA, 100, UnitOfPressure.CBAR),
|
|
|
|
(30, UnitOfPressure.INHG, 14.7346266155, UnitOfPressure.PSI),
|
|
|
|
(30, UnitOfPressure.INHG, 101.59167, UnitOfPressure.KPA),
|
|
|
|
(30, UnitOfPressure.INHG, 1015.9167, UnitOfPressure.HPA),
|
|
|
|
(30, UnitOfPressure.INHG, 101591.67, UnitOfPressure.PA),
|
|
|
|
(30, UnitOfPressure.INHG, 1015.9167, UnitOfPressure.MBAR),
|
|
|
|
(30, UnitOfPressure.INHG, 101.59167, UnitOfPressure.CBAR),
|
|
|
|
(30, UnitOfPressure.INHG, 762, UnitOfPressure.MMHG),
|
|
|
|
(30, UnitOfPressure.MMHG, 0.580103, UnitOfPressure.PSI),
|
|
|
|
(30, UnitOfPressure.MMHG, 3.99967, UnitOfPressure.KPA),
|
|
|
|
(30, UnitOfPressure.MMHG, 39.9967, UnitOfPressure.HPA),
|
|
|
|
(30, UnitOfPressure.MMHG, 3999.67, UnitOfPressure.PA),
|
|
|
|
(30, UnitOfPressure.MMHG, 39.9967, UnitOfPressure.MBAR),
|
|
|
|
(30, UnitOfPressure.MMHG, 3.99967, UnitOfPressure.CBAR),
|
|
|
|
(30, UnitOfPressure.MMHG, 1.181102, UnitOfPressure.INHG),
|
2023-01-23 09:11:11 +00:00
|
|
|
(5, UnitOfPressure.BAR, 72.51887, UnitOfPressure.PSI),
|
2022-09-22 15:49:45 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
SpeedConverter: [
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 km/h / 1.609 km/mi = 3.10686 mi/h
|
2022-12-30 09:16:20 +00:00
|
|
|
(5, UnitOfSpeed.KILOMETERS_PER_HOUR, 3.106856, UnitOfSpeed.MILES_PER_HOUR),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 mi/h * 1.609 km/mi = 8.04672 km/h
|
2022-10-26 18:47:17 +00:00
|
|
|
(5, UnitOfSpeed.MILES_PER_HOUR, 8.04672, UnitOfSpeed.KILOMETERS_PER_HOUR),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 in/day * 25.4 mm/in = 127 mm/day
|
2022-10-19 12:35:49 +00:00
|
|
|
(
|
|
|
|
5,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.INCHES_PER_DAY,
|
2022-10-19 12:35:49 +00:00
|
|
|
127,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.MILLIMETERS_PER_DAY,
|
2022-10-19 12:35:49 +00:00
|
|
|
),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 mm/day / 25.4 mm/in = 0.19685 in/day
|
2022-10-19 12:35:49 +00:00
|
|
|
(
|
|
|
|
5,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.MILLIMETERS_PER_DAY,
|
2022-12-30 09:16:20 +00:00
|
|
|
0.1968504,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.INCHES_PER_DAY,
|
2022-10-19 12:35:49 +00:00
|
|
|
),
|
|
|
|
# 48 mm/day = 2 mm/h
|
|
|
|
(
|
|
|
|
48,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.MILLIMETERS_PER_DAY,
|
2022-12-30 09:16:20 +00:00
|
|
|
2,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.MILLIMETERS_PER_HOUR,
|
2022-10-19 12:35:49 +00:00
|
|
|
),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 in/hr * 24 hr/day = 3048 mm/day
|
2022-10-19 12:35:49 +00:00
|
|
|
(
|
|
|
|
5,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.INCHES_PER_HOUR,
|
2022-10-19 12:35:49 +00:00
|
|
|
3048,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.MILLIMETERS_PER_DAY,
|
2022-10-19 12:35:49 +00:00
|
|
|
),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 m/s * 39.3701 in/m * 3600 s/hr = 708661
|
2022-10-19 12:35:49 +00:00
|
|
|
(
|
|
|
|
5,
|
2022-10-26 18:47:17 +00:00
|
|
|
UnitOfSpeed.METERS_PER_SECOND,
|
2022-12-30 09:16:20 +00:00
|
|
|
708661.42,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.INCHES_PER_HOUR,
|
2022-10-19 12:35:49 +00:00
|
|
|
),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5000 in/h / 39.3701 in/m / 3600 s/h = 0.03528 m/s
|
|
|
|
(
|
|
|
|
5000,
|
2022-10-25 14:45:45 +00:00
|
|
|
UnitOfVolumetricFlux.INCHES_PER_HOUR,
|
2022-12-30 09:16:20 +00:00
|
|
|
0.0352778,
|
2022-10-26 18:47:17 +00:00
|
|
|
UnitOfSpeed.METERS_PER_SECOND,
|
2022-09-23 12:23:59 +00:00
|
|
|
),
|
|
|
|
# 5 kt * 1852 m/nmi / 3600 s/h = 2.5722 m/s
|
2022-12-30 09:16:20 +00:00
|
|
|
(5, UnitOfSpeed.KNOTS, 2.57222, UnitOfSpeed.METERS_PER_SECOND),
|
2022-09-23 12:23:59 +00:00
|
|
|
# 5 ft/s * 0.3048 m/ft = 1.524 m/s
|
2022-12-30 09:16:20 +00:00
|
|
|
(5, UnitOfSpeed.FEET_PER_SECOND, 1.524, UnitOfSpeed.METERS_PER_SECOND),
|
2022-09-23 12:23:59 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
TemperatureConverter: [
|
2022-10-26 18:47:17 +00:00
|
|
|
(100, UnitOfTemperature.CELSIUS, 212, UnitOfTemperature.FAHRENHEIT),
|
|
|
|
(100, UnitOfTemperature.CELSIUS, 373.15, UnitOfTemperature.KELVIN),
|
2022-12-30 09:16:20 +00:00
|
|
|
(100, UnitOfTemperature.FAHRENHEIT, 37.7778, UnitOfTemperature.CELSIUS),
|
|
|
|
(100, UnitOfTemperature.FAHRENHEIT, 310.9277, UnitOfTemperature.KELVIN),
|
|
|
|
(100, UnitOfTemperature.KELVIN, -173.15, UnitOfTemperature.CELSIUS),
|
|
|
|
(100, UnitOfTemperature.KELVIN, -279.6699, UnitOfTemperature.FAHRENHEIT),
|
2022-09-22 16:31:50 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
UnitlessRatioConverter: [
|
|
|
|
(5, None, 500, PERCENTAGE),
|
2023-05-12 14:46:37 +00:00
|
|
|
(5, None, 5000000000, CONCENTRATION_PARTS_PER_BILLION),
|
|
|
|
(5, None, 5000000, CONCENTRATION_PARTS_PER_MILLION),
|
2023-01-23 09:11:11 +00:00
|
|
|
(5, PERCENTAGE, 0.05, None),
|
2022-09-22 16:31:50 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
VolumeConverter: [
|
2022-12-19 13:57:04 +00:00
|
|
|
(5, UnitOfVolume.LITERS, 1.32086, UnitOfVolume.GALLONS),
|
|
|
|
(5, UnitOfVolume.GALLONS, 18.92706, UnitOfVolume.LITERS),
|
|
|
|
(5, UnitOfVolume.CUBIC_METERS, 176.5733335, UnitOfVolume.CUBIC_FEET),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 14.1584233, UnitOfVolume.CUBIC_METERS),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 14.1584233, UnitOfVolume.CUBIC_METERS),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 478753.2467, UnitOfVolume.FLUID_OUNCES),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 3740.25974, UnitOfVolume.GALLONS),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 14158.42329599, UnitOfVolume.LITERS),
|
|
|
|
(500, UnitOfVolume.CUBIC_FEET, 14158423.29599, UnitOfVolume.MILLILITERS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.CUBIC_METERS, 500, UnitOfVolume.CUBIC_METERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.CUBIC_METERS, 16907011.35, UnitOfVolume.FLUID_OUNCES),
|
|
|
|
(500, UnitOfVolume.CUBIC_METERS, 132086.02617, UnitOfVolume.GALLONS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.CUBIC_METERS, 500000, UnitOfVolume.LITERS),
|
|
|
|
(500, UnitOfVolume.CUBIC_METERS, 500000000, UnitOfVolume.MILLILITERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.FLUID_OUNCES, 0.52218967, UnitOfVolume.CUBIC_FEET),
|
|
|
|
(500, UnitOfVolume.FLUID_OUNCES, 0.014786764, UnitOfVolume.CUBIC_METERS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.FLUID_OUNCES, 3.90625, UnitOfVolume.GALLONS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.FLUID_OUNCES, 14.786764, UnitOfVolume.LITERS),
|
|
|
|
(500, UnitOfVolume.FLUID_OUNCES, 14786.764, UnitOfVolume.MILLILITERS),
|
|
|
|
(500, UnitOfVolume.GALLONS, 66.84027, UnitOfVolume.CUBIC_FEET),
|
|
|
|
(500, UnitOfVolume.GALLONS, 1.892706, UnitOfVolume.CUBIC_METERS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.GALLONS, 64000, UnitOfVolume.FLUID_OUNCES),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.GALLONS, 1892.70589, UnitOfVolume.LITERS),
|
|
|
|
(500, UnitOfVolume.GALLONS, 1892705.89, UnitOfVolume.MILLILITERS),
|
|
|
|
(500, UnitOfVolume.LITERS, 17.65733, UnitOfVolume.CUBIC_FEET),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.LITERS, 0.5, UnitOfVolume.CUBIC_METERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.LITERS, 16907.011, UnitOfVolume.FLUID_OUNCES),
|
|
|
|
(500, UnitOfVolume.LITERS, 132.086, UnitOfVolume.GALLONS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.LITERS, 500000, UnitOfVolume.MILLILITERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.MILLILITERS, 0.01765733, UnitOfVolume.CUBIC_FEET),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.MILLILITERS, 0.0005, UnitOfVolume.CUBIC_METERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(500, UnitOfVolume.MILLILITERS, 16.907, UnitOfVolume.FLUID_OUNCES),
|
|
|
|
(500, UnitOfVolume.MILLILITERS, 0.132086, UnitOfVolume.GALLONS),
|
2022-10-26 18:47:17 +00:00
|
|
|
(500, UnitOfVolume.MILLILITERS, 0.5, UnitOfVolume.LITERS),
|
2022-12-19 13:57:04 +00:00
|
|
|
(5, UnitOfVolume.CENTUM_CUBIC_FEET, 500, UnitOfVolume.CUBIC_FEET),
|
|
|
|
(5, UnitOfVolume.CENTUM_CUBIC_FEET, 14.15842, UnitOfVolume.CUBIC_METERS),
|
|
|
|
(5, UnitOfVolume.CENTUM_CUBIC_FEET, 478753.24, UnitOfVolume.FLUID_OUNCES),
|
|
|
|
(5, UnitOfVolume.CENTUM_CUBIC_FEET, 3740.26, UnitOfVolume.GALLONS),
|
|
|
|
(5, UnitOfVolume.CENTUM_CUBIC_FEET, 14158.42, UnitOfVolume.LITERS),
|
2022-09-22 15:49:45 +00:00
|
|
|
],
|
2023-01-23 09:11:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"converter",
|
|
|
|
[
|
|
|
|
# Generate list of all converters available in
|
|
|
|
# `homeassistant.util.unit_conversion` to ensure
|
|
|
|
# that we don't miss any in the tests.
|
|
|
|
obj
|
|
|
|
for _, obj in inspect.getmembers(unit_conversion)
|
|
|
|
if inspect.isclass(obj)
|
|
|
|
and issubclass(obj, BaseUnitConverter)
|
|
|
|
and obj != BaseUnitConverter
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_all_converters(converter: type[BaseUnitConverter]) -> None:
|
|
|
|
"""Ensure all unit converters are tested."""
|
|
|
|
assert converter in _ALL_CONVERTERS, "converter is not present in _ALL_CONVERTERS"
|
|
|
|
|
|
|
|
assert converter in _GET_UNIT_RATIO, "converter is not present in _GET_UNIT_RATIO"
|
|
|
|
unit_ratio_item = _GET_UNIT_RATIO[converter]
|
|
|
|
assert unit_ratio_item[0] != unit_ratio_item[1], "ratio units should be different"
|
|
|
|
|
|
|
|
assert converter in _CONVERTED_VALUE, "converter is not present in _CONVERTED_VALUE"
|
|
|
|
converted_value_items = _CONVERTED_VALUE[converter]
|
|
|
|
for valid_unit in converter.VALID_UNITS:
|
|
|
|
assert any(
|
|
|
|
item
|
|
|
|
for item in converted_value_items
|
|
|
|
# item[1] is from_unit, item[3] is to_unit
|
|
|
|
if valid_unit in {item[1], item[3]}
|
|
|
|
), f"Unit `{valid_unit}` is not tested in _CONVERTED_VALUE"
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("converter", "valid_unit"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
# Ensure all units are tested
|
|
|
|
(converter, valid_unit)
|
|
|
|
for converter, valid_units in _ALL_CONVERTERS.items()
|
|
|
|
for valid_unit in valid_units
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_convert_same_unit(converter: type[BaseUnitConverter], valid_unit: str) -> None:
|
|
|
|
"""Test conversion from any valid unit to same unit."""
|
|
|
|
assert converter.convert(2, valid_unit, valid_unit) == 2
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("converter", "valid_unit"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
# Ensure all units are tested
|
|
|
|
(converter, valid_unit)
|
|
|
|
for converter, valid_units in _ALL_CONVERTERS.items()
|
|
|
|
for valid_unit in valid_units
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_convert_invalid_unit(
|
|
|
|
converter: type[BaseUnitConverter], valid_unit: str
|
|
|
|
) -> None:
|
|
|
|
"""Test exception is thrown for invalid units."""
|
|
|
|
with pytest.raises(HomeAssistantError, match="is not a recognized .* unit"):
|
|
|
|
converter.convert(5, INVALID_SYMBOL, valid_unit)
|
|
|
|
|
|
|
|
with pytest.raises(HomeAssistantError, match="is not a recognized .* unit"):
|
|
|
|
converter.convert(5, valid_unit, INVALID_SYMBOL)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("converter", "from_unit", "to_unit"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
# Pick any two units
|
|
|
|
(converter, valid_units[0], valid_units[1])
|
|
|
|
for converter, valid_units in _ALL_CONVERTERS.items()
|
|
|
|
],
|
2022-09-22 15:49:45 +00:00
|
|
|
)
|
2023-01-23 09:11:11 +00:00
|
|
|
def test_convert_nonnumeric_value(
|
|
|
|
converter: type[BaseUnitConverter], from_unit: str, to_unit: str
|
|
|
|
) -> None:
|
|
|
|
"""Test exception is thrown for nonnumeric type."""
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
converter.convert("a", from_unit, to_unit)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("converter", "from_unit", "to_unit", "expected"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
# Process all items in _GET_UNIT_RATIO
|
|
|
|
(converter, item[0], item[1], item[2])
|
|
|
|
for converter, item in _GET_UNIT_RATIO.items()
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_get_unit_ratio(
|
|
|
|
converter: type[BaseUnitConverter], from_unit: str, to_unit: str, expected: float
|
|
|
|
) -> None:
|
|
|
|
"""Test unit ratio."""
|
|
|
|
ratio = converter.get_unit_ratio(from_unit, to_unit)
|
|
|
|
assert ratio == pytest.approx(expected)
|
|
|
|
assert converter.get_unit_ratio(to_unit, from_unit) == pytest.approx(1 / ratio)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("converter", "value", "from_unit", "expected", "to_unit"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
# Process all items in _CONVERTED_VALUE
|
|
|
|
(converter, list_item[0], list_item[1], list_item[2], list_item[3])
|
|
|
|
for converter, item in _CONVERTED_VALUE.items()
|
|
|
|
for list_item in item
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_unit_conversion(
|
|
|
|
converter: type[BaseUnitConverter],
|
2022-09-22 15:49:45 +00:00
|
|
|
value: float,
|
|
|
|
from_unit: str,
|
|
|
|
expected: float,
|
|
|
|
to_unit: str,
|
|
|
|
) -> None:
|
|
|
|
"""Test conversion to other units."""
|
2023-01-23 09:11:11 +00:00
|
|
|
assert converter.convert(value, from_unit, to_unit) == pytest.approx(expected)
|
|
|
|
|
|
|
|
|
2023-05-29 18:50:40 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
("converter", "value", "from_unit", "expected", "to_unit"),
|
|
|
|
[
|
|
|
|
# Process all items in _CONVERTED_VALUE
|
|
|
|
(converter, value, from_unit, expected, to_unit)
|
|
|
|
for converter, item in _CONVERTED_VALUE.items()
|
|
|
|
for value, from_unit, expected, to_unit in item
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_unit_conversion_factory(
|
|
|
|
converter: type[BaseUnitConverter],
|
|
|
|
value: float,
|
|
|
|
from_unit: str,
|
|
|
|
expected: float,
|
|
|
|
to_unit: str,
|
|
|
|
) -> None:
|
|
|
|
"""Test conversion to other units."""
|
|
|
|
assert converter.converter_factory(from_unit, to_unit)(value) == pytest.approx(
|
|
|
|
expected
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_unit_conversion_factory_allow_none_with_none() -> None:
|
|
|
|
"""Test test_unit_conversion_factory_allow_none with None."""
|
|
|
|
assert (
|
|
|
|
SpeedConverter.converter_factory_allow_none(
|
|
|
|
UnitOfSpeed.FEET_PER_SECOND, UnitOfSpeed.FEET_PER_SECOND
|
|
|
|
)(1)
|
|
|
|
== 1
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
SpeedConverter.converter_factory_allow_none(
|
|
|
|
UnitOfSpeed.FEET_PER_SECOND, UnitOfSpeed.FEET_PER_SECOND
|
|
|
|
)(None)
|
|
|
|
is None
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
TemperatureConverter.converter_factory_allow_none(
|
|
|
|
UnitOfTemperature.CELSIUS, UnitOfTemperature.CELSIUS
|
|
|
|
)(1)
|
|
|
|
== 1
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
TemperatureConverter.converter_factory_allow_none(
|
|
|
|
UnitOfTemperature.CELSIUS, UnitOfTemperature.CELSIUS
|
|
|
|
)(None)
|
|
|
|
is None
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
("converter", "value", "from_unit", "expected", "to_unit"),
|
|
|
|
chain(
|
|
|
|
[
|
|
|
|
# Process all items in _CONVERTED_VALUE
|
|
|
|
(converter, value, from_unit, expected, to_unit)
|
|
|
|
for converter, item in _CONVERTED_VALUE.items()
|
|
|
|
for value, from_unit, expected, to_unit in item
|
|
|
|
],
|
|
|
|
[
|
|
|
|
# Process all items in _CONVERTED_VALUE and replace the value with None
|
|
|
|
(converter, None, from_unit, None, to_unit)
|
|
|
|
for converter, item in _CONVERTED_VALUE.items()
|
|
|
|
for value, from_unit, expected, to_unit in item
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
def test_unit_conversion_factory_allow_none(
|
|
|
|
converter: type[BaseUnitConverter],
|
|
|
|
value: float,
|
|
|
|
from_unit: str,
|
|
|
|
expected: float,
|
|
|
|
to_unit: str,
|
|
|
|
) -> None:
|
|
|
|
"""Test conversion to other units."""
|
|
|
|
assert converter.converter_factory_allow_none(from_unit, to_unit)(
|
|
|
|
value
|
|
|
|
) == pytest.approx(expected)
|
|
|
|
|
|
|
|
|
2023-01-23 09:11:11 +00:00
|
|
|
@pytest.mark.parametrize(
|
2023-02-15 13:09:50 +00:00
|
|
|
("value", "from_unit", "expected", "to_unit"),
|
2023-01-23 09:11:11 +00:00
|
|
|
[
|
|
|
|
(100, UnitOfTemperature.CELSIUS, 180, UnitOfTemperature.FAHRENHEIT),
|
|
|
|
(100, UnitOfTemperature.CELSIUS, 100, UnitOfTemperature.KELVIN),
|
|
|
|
(100, UnitOfTemperature.FAHRENHEIT, 55.5556, UnitOfTemperature.CELSIUS),
|
|
|
|
(100, UnitOfTemperature.FAHRENHEIT, 55.5556, UnitOfTemperature.KELVIN),
|
|
|
|
(100, UnitOfTemperature.KELVIN, 100, UnitOfTemperature.CELSIUS),
|
|
|
|
(100, UnitOfTemperature.KELVIN, 180, UnitOfTemperature.FAHRENHEIT),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_temperature_convert_with_interval(
|
|
|
|
value: float, from_unit: str, expected: float, to_unit: str
|
|
|
|
) -> None:
|
|
|
|
"""Test conversion to other units."""
|
|
|
|
expected = pytest.approx(expected)
|
|
|
|
assert TemperatureConverter.convert_interval(value, from_unit, to_unit) == expected
|