fix: inverse comparator in dash history DAO for allSince & add AAPSLoggerTest

This commit is contained in:
Sam Spycher 2021-10-18 01:15:14 +02:00
parent dc0e519822
commit 85f0ff4f67
2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import androidx.room.Room
import androidx.test.core.app.ApplicationProvider
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.github.guepardoapps.kulid.ULID
import info.nightscout.androidaps.logging.AAPSLoggerTest
import info.nightscout.androidaps.plugins.pump.omnipod.common.definition.OmnipodCommandType
import info.nightscout.androidaps.plugins.pump.omnipod.dash.history.database.DashHistoryDatabase
import info.nightscout.androidaps.plugins.pump.omnipod.dash.history.database.HistoryRecordDao
@ -34,7 +35,7 @@ class DashHistoryTest {
DashHistoryDatabase::class.java
).build()
dao = database.historyRecordDao()
dashHistory = DashHistory(dao, HistoryMapper())
dashHistory = DashHistory(dao, HistoryMapper(), AAPSLoggerTest())
}
@Test

View file

@ -19,7 +19,7 @@ abstract class HistoryRecordDao {
@Query("SELECT * from historyrecords")
abstract fun allBlocking(): List<HistoryRecordEntity>
@Query("SELECT * from historyrecords WHERE createdAt <= :since")
@Query("SELECT * from historyrecords WHERE createdAt >= :since")
abstract fun allSince(since: Long): Single<List<HistoryRecordEntity>>
@Query("SELECT * FROM historyrecords WHERE id = :id LIMIT 1")