-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bluetooth: inline BluetoothUtils into Handler classes.
- Loading branch information
1 parent
deeb447
commit 4c8554b
Showing
13 changed files
with
391 additions
and
314 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
.../de/dennisguse/opentracks/sensors/BluetoothConnectionManagerCyclingDistanceSpeedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package de.dennisguse.opentracks.sensors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNull; | ||
|
||
import android.bluetooth.BluetoothGattCharacteristic; | ||
|
||
import org.junit.Test; | ||
|
||
import de.dennisguse.opentracks.sensors.sensorData.SensorDataCyclingCadenceAndDistanceSpeed; | ||
|
||
public class BluetoothConnectionManagerCyclingDistanceSpeedTest { | ||
@Test | ||
public void parseCyclingSpeedCadence_crankOnly() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerCyclingDistanceSpeed.CYCLING_SPEED_CADENCE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x02, (byte) 0xC8, 0x00, 0x00, 0x00, 0x06, (byte) 0x99}); | ||
|
||
// when | ||
SensorDataCyclingCadenceAndDistanceSpeed sensor = BluetoothConnectionManagerCyclingDistanceSpeed.parseCyclingCrankAndWheel("address", "sensorName", characteristic); | ||
|
||
// then | ||
assertNull(sensor.getDistanceSpeed()); | ||
assertEquals(200, sensor.getCadence().getCrankRevolutionsCount()); | ||
} | ||
|
||
@Test | ||
public void parseCyclingSpeedCadence_wheelOnly() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerCyclingDistanceSpeed.CYCLING_SPEED_CADENCE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x01, (byte) 0xFF, (byte) 0xFF, 0, 1, 0x45, (byte) 0x99}); | ||
|
||
// when | ||
SensorDataCyclingCadenceAndDistanceSpeed sensor = BluetoothConnectionManagerCyclingDistanceSpeed.parseCyclingCrankAndWheel("address", "sensorName", characteristic); | ||
|
||
// then | ||
assertEquals(65535 + 16777216, sensor.getDistanceSpeed().getWheelRevolutionsCount()); | ||
assertNull(sensor.getCadence()); | ||
} | ||
|
||
@Test | ||
public void parseCyclingSpeedCadence_crankWheel() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerCyclingDistanceSpeed.CYCLING_SPEED_CADENCE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x03, (byte) 0xC8, 0x00, 0x00, 0x01, 0x06, (byte) 0x99, (byte) 0xE1, 0x00, 0x45, (byte) 0x99}); | ||
|
||
// when | ||
SensorDataCyclingCadenceAndDistanceSpeed sensor = BluetoothConnectionManagerCyclingDistanceSpeed.parseCyclingCrankAndWheel("address", "sensorName", characteristic); | ||
|
||
// then | ||
assertEquals(200 + 16777216, sensor.getDistanceSpeed().getWheelRevolutionsCount()); | ||
assertEquals(225, sensor.getCadence().getCrankRevolutionsCount()); | ||
} | ||
|
||
} |
40 changes: 40 additions & 0 deletions
40
...est/java/de/dennisguse/opentracks/sensors/BluetoothConnectionManagerCyclingPowerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package de.dennisguse.opentracks.sensors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import android.bluetooth.BluetoothGattCharacteristic; | ||
|
||
import org.junit.Test; | ||
|
||
import de.dennisguse.opentracks.sensors.sensorData.SensorDataCyclingPower; | ||
|
||
public class BluetoothConnectionManagerCyclingPowerTest { | ||
|
||
@Test | ||
public void parseCyclingPower_power() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerCyclingPower.CYCLING_POWER.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0, 0, 40, 0}); | ||
|
||
// when | ||
SensorDataCyclingPower.Data powerCadence = BluetoothConnectionManagerCyclingPower.parseCyclingPower("", "", characteristic); | ||
|
||
// then | ||
assertEquals(40, powerCadence.power().getValue().getW(), 0.01); | ||
} | ||
|
||
@Test | ||
public void parseCyclingPower_power_with_cadence() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerCyclingPower.CYCLING_POWER.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x2C, 0x00, 0x00, 0x00, (byte) 0x9F, 0x00, 0x0C, 0x00, (byte) 0xE5, 0x42}); | ||
|
||
// when | ||
SensorDataCyclingPower.Data powerCadence = BluetoothConnectionManagerCyclingPower.parseCyclingPower("", "", characteristic); | ||
|
||
// then | ||
assertEquals(0, powerCadence.power().getValue().getW(), 0.01); | ||
|
||
assertEquals(12, powerCadence.cadence().getCrankRevolutionsCount()); | ||
assertEquals(17125, powerCadence.cadence().getCrankRevolutionsTime()); | ||
} | ||
|
||
} |
38 changes: 38 additions & 0 deletions
38
...idTest/java/de/dennisguse/opentracks/sensors/BluetoothConnectionManagerHeartRateTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package de.dennisguse.opentracks.sensors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import android.bluetooth.BluetoothGattCharacteristic; | ||
|
||
import org.junit.Test; | ||
|
||
import de.dennisguse.opentracks.data.models.HeartRate; | ||
|
||
public class BluetoothConnectionManagerHeartRateTest { | ||
|
||
@Test | ||
public void parseHeartRate_uint8() { | ||
// given | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerHeartRate.HEARTRATE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x02, 0x3C}); | ||
|
||
// when | ||
HeartRate heartRate = BluetoothConnectionManagerHeartRate.parseHeartRate(characteristic); | ||
|
||
// then | ||
assertEquals(HeartRate.of(60), heartRate); | ||
} | ||
|
||
@Test | ||
public void parseHeartRate_uint16() { | ||
// given | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionManagerHeartRate.HEARTRATE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{0x01, 0x01, 0x01}); | ||
|
||
// when | ||
HeartRate heartRate = BluetoothConnectionManagerHeartRate.parseHeartRate(characteristic); | ||
|
||
// then | ||
assertEquals(HeartRate.of(257), heartRate); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
.../java/de/dennisguse/opentracks/sensors/BluetoothConnectionRunningSpeedAndCadenceTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package de.dennisguse.opentracks.sensors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import android.bluetooth.BluetoothGattCharacteristic; | ||
|
||
import org.junit.Test; | ||
|
||
import de.dennisguse.opentracks.data.models.Cadence; | ||
import de.dennisguse.opentracks.data.models.Distance; | ||
import de.dennisguse.opentracks.data.models.Speed; | ||
import de.dennisguse.opentracks.sensors.sensorData.SensorDataRunning; | ||
|
||
public class BluetoothConnectionRunningSpeedAndCadenceTest { | ||
|
||
@Test | ||
public void parseRunningSpeedAndCadence_with_distance() { | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothConnectionRunningSpeedAndCadence.RUNNING_SPEED_CADENCE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{2, 0, 5, 80, (byte) 0xFF, (byte) 0xFF, 0, 1}); | ||
|
||
// when | ||
SensorDataRunning sensor = BluetoothConnectionRunningSpeedAndCadence.parseRunningSpeedAndCadence("address", "sensorName", characteristic); | ||
|
||
// then | ||
assertEquals(Speed.of(5), sensor.getSpeed()); | ||
assertEquals(Cadence.of(80), sensor.getCadence()); | ||
assertEquals(Distance.of(6553.5 + 1677721.6), sensor.getTotalDistance()); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...oidTest/java/de/dennisguse/opentracks/sensors/BluetoothHandlerBarometricPressureTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package de.dennisguse.opentracks.sensors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import android.bluetooth.BluetoothGattCharacteristic; | ||
|
||
import org.junit.Test; | ||
|
||
import de.dennisguse.opentracks.data.models.AtmosphericPressure; | ||
|
||
public class BluetoothHandlerBarometricPressureTest { | ||
|
||
@Test | ||
public void parseEnvironmentalSensing_Pa() { | ||
// given | ||
BluetoothGattCharacteristic characteristic = new BluetoothGattCharacteristic(BluetoothHandlerBarometricPressure.BAROMETRIC_PRESSURE.serviceUUID(), 0, 0); | ||
characteristic.setValue(new byte[]{(byte) 0xB2, (byte) 0x48, (byte) 0x0F, (byte) 0x00}); | ||
|
||
// when | ||
AtmosphericPressure pressure = BluetoothHandlerBarometricPressure.parseEnvironmentalSensing(characteristic); | ||
|
||
// then | ||
assertEquals(AtmosphericPressure.ofPA(100165), pressure); | ||
} | ||
} |
139 changes: 0 additions & 139 deletions
139
src/androidTest/java/de/dennisguse/opentracks/sensors/BluetoothUtilsTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.