Merge branch '97-fix-sensor' into 'dev'
fix Closes #97 See merge request sa4-2020/the-sanmarinoes/backend!206
This commit is contained in:
commit
8f3df8e96f
4 changed files with 4 additions and 19 deletions
|
@ -64,8 +64,8 @@ public class SensorController {
|
|||
@PutMapping("/{id}/simulation")
|
||||
public Sensor updateSimulation(
|
||||
@PathVariable("id") Long sensorId,
|
||||
@RequestParam("error") BigDecimal error,
|
||||
@RequestParam("typical") BigDecimal typical,
|
||||
@RequestBody BigDecimal error,
|
||||
@RequestBody BigDecimal typical,
|
||||
final Principal principal)
|
||||
throws NotFoundException {
|
||||
return sensorService.updateSimulationFromSensor(
|
||||
|
|
|
@ -20,10 +20,6 @@ public class SensorSaveRequest {
|
|||
|
||||
@NotNull private BigDecimal value;
|
||||
|
||||
private BigDecimal error;
|
||||
|
||||
private BigDecimal typical;
|
||||
|
||||
/**
|
||||
* The room this device belongs in, as a foreign key id. To use when updating and inserting from
|
||||
* a REST call.
|
||||
|
|
|
@ -69,12 +69,7 @@ public class SensorControllerTests {
|
|||
|
||||
final SensorSaveRequest toSend =
|
||||
new SensorSaveRequest(
|
||||
Sensor.SensorType.TEMPERATURE,
|
||||
BigDecimal.ZERO,
|
||||
BigDecimal.ZERO,
|
||||
BigDecimal.ZERO,
|
||||
42L,
|
||||
"Test sensor");
|
||||
Sensor.SensorType.TEMPERATURE, BigDecimal.ZERO, 42L, "Test sensor");
|
||||
final Sensor created = sensorController.create(toSend, mockPrincipal);
|
||||
|
||||
checkSensorAgainstRequest(created, toSend);
|
||||
|
|
|
@ -30,13 +30,7 @@ public class SensorSaveRequestTests {
|
|||
@DisplayName("test constructor")
|
||||
public void testConstructorNotEmpty() {
|
||||
SensorSaveRequest newSaveRequest =
|
||||
new SensorSaveRequest(
|
||||
Sensor.SensorType.HUMIDITY,
|
||||
new BigDecimal(12),
|
||||
BigDecimal.ZERO,
|
||||
BigDecimal.ZERO,
|
||||
12L,
|
||||
"name");
|
||||
new SensorSaveRequest(Sensor.SensorType.HUMIDITY, new BigDecimal(12), 12L, "name");
|
||||
assertNotNull(newSaveRequest.getSensor());
|
||||
assertNotNull(newSaveRequest.getName());
|
||||
assertNotNull(newSaveRequest.getRoomId());
|
||||
|
|
Loading…
Reference in a new issue