2020-03-20 16:38:22 +01:00
|
|
|
import bme680
|
|
|
|
|
|
|
|
|
|
|
|
def test_calc_temperature(smbus, calibration):
|
|
|
|
"""Validate temperature calculation against mock calibration data."""
|
|
|
|
sensor = bme680.BME680()
|
|
|
|
sensor.calibration_data = calibration
|
|
|
|
assert sensor._calc_temperature(501240) == 2669
|
|
|
|
assert sensor.calibration_data.t_fine == 136667
|
|
|
|
|
|
|
|
|
|
|
|
def test_calc_pressure(smbus, calibration):
|
|
|
|
"""Validate pressure calculation against mock calibration data."""
|
|
|
|
sensor = bme680.BME680()
|
|
|
|
sensor.calibration_data = calibration
|
|
|
|
sensor._calc_temperature(501240)
|
|
|
|
assert sensor._calc_pressure(353485) == 98712
|
|
|
|
|
|
|
|
|
|
|
|
def test_calc_humidity(smbus, calibration):
|
|
|
|
"""Validate humidity calculation against mock calibration data."""
|
|
|
|
sensor = bme680.BME680()
|
|
|
|
sensor.calibration_data = calibration
|
|
|
|
sensor._calc_temperature(501240)
|
|
|
|
assert sensor._calc_humidity(19019) == 42402
|
|
|
|
|
|
|
|
|
|
|
|
def test_calc_gas_resistance(smbus, calibration):
|
|
|
|
"""Validate gas calculation against mock calibration data."""
|
|
|
|
sensor = bme680.BME680()
|
|
|
|
sensor.calibration_data = calibration
|
2020-03-20 16:44:06 +01:00
|
|
|
assert int(sensor._calc_gas_resistance(0, 0)) == 12946860
|
2020-03-20 16:38:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_temp_offset(smbus, calibration):
|
|
|
|
"""Validate temperature calculation with offset against mock calibration data."""
|
|
|
|
sensor = bme680.BME680()
|
|
|
|
sensor.calibration_data = calibration
|
|
|
|
sensor.set_temp_offset(1.99)
|
|
|
|
assert sensor._calc_temperature(501240) == 2669 + 199
|
|
|
|
assert sensor.calibration_data.t_fine == 146830
|