Search in sources :

Example 6 with EGVRecord

use of com.nightscout.core.dexcom.records.EGVRecord in project android-uploader by nightscout.

the class EgvRecordTest method shouldNotParseLargeEgvRecord.

@Test(expected = InvalidRecordLengthException.class)
public void shouldNotParseLargeEgvRecord() throws Exception {
    byte[] record = new byte[] { (byte) 0xC4, (byte) 0x88, (byte) 0x1A, (byte) 0x0B, (byte) 0x61, (byte) 0x34, (byte) 0x1A, (byte) 0x0B, (byte) 0x05, (byte) 0x00, (byte) 0x58, (byte) 0x3E, (byte) 0x00, (byte) 0x00 };
    EGVRecord egvRecord = new EGVRecord(record);
}
Also used : EGVRecord(com.nightscout.core.dexcom.records.EGVRecord) Test(org.junit.Test)

Example 7 with EGVRecord

use of com.nightscout.core.dexcom.records.EGVRecord in project android-uploader by nightscout.

the class EgvRecordTest method shouldNotParseSmallEgvRecord.

@Test(expected = InvalidRecordLengthException.class)
public void shouldNotParseSmallEgvRecord() throws Exception {
    byte[] record = new byte[] { (byte) 0xC4, (byte) 0x88, (byte) 0x1A, (byte) 0x0B, (byte) 0x61, (byte) 0x34, (byte) 0x1A, (byte) 0x0B, (byte) 0x05, (byte) 0x00, (byte) 0x58 };
    EGVRecord egvRecord = new EGVRecord(record);
}
Also used : EGVRecord(com.nightscout.core.dexcom.records.EGVRecord) Test(org.junit.Test)

Example 8 with EGVRecord

use of com.nightscout.core.dexcom.records.EGVRecord in project android-uploader by nightscout.

the class EgvRecordTest method shouldConvertToJsonString.

@Test
public void shouldConvertToJsonString() throws Exception {
    byte[] record = new byte[] { (byte) 0xC4, (byte) 0x88, (byte) 0x1A, (byte) 0x0B, (byte) 0x61, (byte) 0x34, (byte) 0x1A, (byte) 0x0B, (byte) 0x05, (byte) 0x00, (byte) 0x58, (byte) 0x3E };
    JSONObject obj = new JSONObject();
    obj.put("sgv", 5);
    obj.put("date", Utils.receiverTimeToDate(186266721));
    EGVRecord egvRecord = new EGVRecord(record);
    assertThat(egvRecord.toJSON().toString(), is(obj.toString()));
}
Also used : JSONObject(org.json.JSONObject) EGVRecord(com.nightscout.core.dexcom.records.EGVRecord) Test(org.junit.Test)

Example 9 with EGVRecord

use of com.nightscout.core.dexcom.records.EGVRecord in project android-uploader by nightscout.

the class MockFactory method mockEGVPage.

public static List<EGVRecord> mockEGVPage() throws ParseException {
    DateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.ENGLISH);
    format.setTimeZone(TimeZone.getDefault());
    List<EGVRecord> record = new ArrayList<>();
    record.add(new EGVRecord(108, TrendArrow.DOWN_45, 186923993, 186945595, G4Noise.CLEAN));
    record.add(new EGVRecord(115, TrendArrow.FLAT, 186924293, 186945895, G4Noise.CLEAN));
    record.add(new EGVRecord(137, TrendArrow.UP_45, 186924893, 186946495, G4Noise.CLEAN));
    record.add(new EGVRecord(147, TrendArrow.UP_45, 186925193, 186946795, G4Noise.CLEAN));
    record.add(new EGVRecord(245, TrendArrow.NOT_COMPUTABLE, 186941692, 186963294, G4Noise.CLEAN));
    record.add(new EGVRecord(247, TrendArrow.NOT_COMPUTABLE, 186941992, 186963595, G4Noise.CLEAN));
    record.add(new EGVRecord(244, TrendArrow.NOT_COMPUTABLE, 186942292, 186963894, G4Noise.CLEAN));
    record.add(new EGVRecord(243, TrendArrow.NOT_COMPUTABLE, 186942592, 186964194, G4Noise.CLEAN));
    record.add(new EGVRecord(240, TrendArrow.FLAT, 186942892, 186964494, G4Noise.CLEAN));
    record.add(new EGVRecord(229, TrendArrow.DOWN_45, 186943192, 186964794, G4Noise.CLEAN));
    record.add(new EGVRecord(213, TrendArrow.SINGLE_DOWN, 186943492, 186965094, G4Noise.CLEAN));
    record.add(new EGVRecord(202, TrendArrow.SINGLE_DOWN, 186943792, 186965394, G4Noise.CLEAN));
    record.add(new EGVRecord(206, TrendArrow.DOWN_45, 186944092, 186965694, G4Noise.CLEAN));
    record.add(new EGVRecord(207, TrendArrow.FLAT, 186944392, 186965994, G4Noise.CLEAN));
    record.add(new EGVRecord(205, TrendArrow.FLAT, 186944692, 186966294, G4Noise.CLEAN));
    record.add(new EGVRecord(208, TrendArrow.FLAT, 186944992, 186966594, G4Noise.CLEAN));
    record.add(new EGVRecord(212, TrendArrow.FLAT, 186945292, 186966894, G4Noise.CLEAN));
    record.add(new EGVRecord(216, TrendArrow.FLAT, 186945592, 186967194, G4Noise.CLEAN));
    record.add(new EGVRecord(219, TrendArrow.FLAT, 186945892, 186967494, G4Noise.CLEAN));
    record.add(new EGVRecord(222, TrendArrow.FLAT, 186946192, 186967794, G4Noise.CLEAN));
    record.add(new EGVRecord(225, TrendArrow.FLAT, 186946492, 186968094, G4Noise.CLEAN));
    record.add(new EGVRecord(225, TrendArrow.FLAT, 186946792, 186968394, G4Noise.CLEAN));
    record.add(new EGVRecord(224, TrendArrow.FLAT, 186947092, 186968694, G4Noise.CLEAN));
    record.add(new EGVRecord(239, TrendArrow.FLAT, 186947692, 186969294, G4Noise.CLEAN));
    record.add(new EGVRecord(249, TrendArrow.UP_45, 186947992, 186969594, G4Noise.CLEAN));
    record.add(new EGVRecord(255, TrendArrow.UP_45, 186948292, 186969894, G4Noise.CLEAN));
    record.add(new EGVRecord(272, TrendArrow.UP_45, 186948892, 186970494, G4Noise.CLEAN));
    record.add(new EGVRecord(283, TrendArrow.SINGLE_UP, 186949192, 186970794, G4Noise.CLEAN));
    record.add(new EGVRecord(284, TrendArrow.UP_45, 186949492, 186971094, G4Noise.CLEAN));
    record.add(new EGVRecord(272, TrendArrow.FLAT, 186949792, 186971394, G4Noise.CLEAN));
    record.add(new EGVRecord(278, TrendArrow.FLAT, 186950091, 186971694, G4Noise.LIGHT));
    record.add(new EGVRecord(262, TrendArrow.FLAT, 186950391, 186971994, G4Noise.LIGHT));
    record.add(new EGVRecord(234, TrendArrow.DOUBLE_DOWN, 186950691, 186972294, G4Noise.LIGHT));
    record.add(new EGVRecord(155, TrendArrow.DOUBLE_DOWN, 186950992, 186972594, G4Noise.CLEAN));
    record.add(new EGVRecord(135, TrendArrow.DOUBLE_DOWN, 186951291, 186972894, G4Noise.CLEAN));
    record.add(new EGVRecord(122, TrendArrow.DOUBLE_DOWN, 186951591, 186973194, G4Noise.CLEAN));
    record.add(new EGVRecord(118, TrendArrow.DOUBLE_DOWN, 186951893, 186973495, G4Noise.CLEAN));
    record.add(new EGVRecord(121, TrendArrow.DOWN_45, 186952192, 186973794, G4Noise.CLEAN));
    record.add(new EGVRecord(127, TrendArrow.FLAT, 186952492, 186974094, G4Noise.CLEAN));
    record.add(new EGVRecord(137, TrendArrow.UP_45, 186952792, 186974394, G4Noise.CLEAN));
    record.add(new EGVRecord(157, TrendArrow.UP_45, 186953692, 186975294, G4Noise.CLEAN));
    record.add(new EGVRecord(158, TrendArrow.UP_45, 186953992, 186975594, G4Noise.CLEAN));
    record.add(new EGVRecord(164, TrendArrow.UP_45, 186954292, 186975895, G4Noise.CLEAN));
    record.add(new EGVRecord(164, TrendArrow.FLAT, 186954591, 186976194, G4Noise.CLEAN));
    record.add(new EGVRecord(166, TrendArrow.FLAT, 186954891, 186976494, G4Noise.CLEAN));
    record.add(new EGVRecord(174, TrendArrow.FLAT, 186955191, 186976794, G4Noise.CLEAN));
    record.add(new EGVRecord(167, TrendArrow.FLAT, 186955491, 186977094, G4Noise.CLEAN));
    record.add(new EGVRecord(170, TrendArrow.FLAT, 186955791, 186977394, G4Noise.CLEAN));
    record.add(new EGVRecord(169, TrendArrow.FLAT, 186956091, 186977694, G4Noise.CLEAN));
    record.add(new EGVRecord(168, TrendArrow.FLAT, 186956391, 186977994, G4Noise.CLEAN));
    record.add(new EGVRecord(166, TrendArrow.FLAT, 186956691, 186978294, G4Noise.CLEAN));
    record.add(new EGVRecord(166, TrendArrow.FLAT, 186956991, 186978594, G4Noise.CLEAN));
    record.add(new EGVRecord(161, TrendArrow.FLAT, 186957291, 186978894, G4Noise.CLEAN));
    record.add(new EGVRecord(171, TrendArrow.FLAT, 186957591, 186979194, G4Noise.CLEAN));
    record.add(new EGVRecord(166, TrendArrow.FLAT, 186957891, 186979494, G4Noise.CLEAN));
    record.add(new EGVRecord(173, TrendArrow.FLAT, 186958191, 186979794, G4Noise.CLEAN));
    record.add(new EGVRecord(178, TrendArrow.FLAT, 186958491, 186980094, G4Noise.CLEAN));
    record.add(new EGVRecord(181, TrendArrow.FLAT, 186959092, 186980695, G4Noise.CLEAN));
    record.add(new EGVRecord(181, TrendArrow.FLAT, 186959092, 186980695, G4Noise.CLEAN));
    record.add(new EGVRecord(186, TrendArrow.FLAT, 186959393, 186980995, G4Noise.CLEAN));
    record.add(new EGVRecord(186, TrendArrow.FLAT, 186959393, 186980995, G4Noise.CLEAN));
    return record;
}
Also used : SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) ArrayList(java.util.ArrayList) SimpleDateFormat(java.text.SimpleDateFormat) EGVRecord(com.nightscout.core.dexcom.records.EGVRecord)

Example 10 with EGVRecord

use of com.nightscout.core.dexcom.records.EGVRecord in project android-uploader by nightscout.

the class ReadDataTest method testGetRecentEgvPages.

@Test
public void testGetRecentEgvPages() throws IOException, ParseException {
    ReadData readData = new ReadData(usbDevice);
    byte[] response = new byte[] { 0x01, 0x0e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, (byte) 0xb7, 0x00, 0x00, 0x00, (byte) 0xd0, 0x1b };
    byte[] page1Response = new byte[] { (byte) 0x01, (byte) 0x16, (byte) 0x02, (byte) 0x01, (byte) 0x04, (byte) 0x1b, (byte) 0x00, (byte) 0x00, (byte) 0x26, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x04, (byte) 0x02, (byte) 0xb6, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0xd7, (byte) 0x23, (byte) 0x3b, (byte) 0x90, (byte) 0x24, (byte) 0x0b, (byte) 0xd9, (byte) 0x3b, (byte) 0x24, (byte) 0x0b, (byte) 0x6c, (byte) 0x00, (byte) 0x15, (byte) 0x92, (byte) 0x0d, (byte) 0x67, (byte) 0x91, (byte) 0x24, (byte) 0x0b, (byte) 0x05, (byte) 0x3d, (byte) 0x24, (byte) 0x0b, (byte) 0x73, (byte) 0x00, (byte) 0x14, (byte) 0x61, (byte) 0x61, (byte) 0xbf, (byte) 0x93, (byte) 0x24, (byte) 0x0b, (byte) 0x5d, (byte) 0x3f, (byte) 0x24, (byte) 0x0b, (byte) 0x89, (byte) 0x00, (byte) 0x13, (byte) 0x29, (byte) 0x23, (byte) 0xeb, (byte) 0x94, (byte) 0x24, (byte) 0x0b, (byte) 0x89, (byte) 0x40, (byte) 0x24, (byte) 0x0b, (byte) 0x93, (byte) 0x00, (byte) 0x13, (byte) 0xe9, (byte) 0xfb, (byte) 0x5e, (byte) 0xd5, (byte) 0x24, (byte) 0x0b, (byte) 0xfc, (byte) 0x80, (byte) 0x24, (byte) 0x0b, (byte) 0xf5, (byte) 0x00, (byte) 0x18, (byte) 0x03, (byte) 0xc2, (byte) 0x8b, (byte) 0xd6, (byte) 0x24, (byte) 0x0b, (byte) 0x28, (byte) 0x82, (byte) 0x24, (byte) 0x0b, (byte) 0xf7, (byte) 0x00, (byte) 0x18, (byte) 0x08, (byte) 0x07, (byte) 0xb6, (byte) 0xd7, (byte) 0x24, (byte) 0x0b, (byte) 0x54, (byte) 0x83, (byte) 0x24, (byte) 0x0b, (byte) 0xf4, (byte) 0x00, (byte) 0x18, (byte) 0x70, (byte) 0x76, (byte) 0xe2, (byte) 0xd8, (byte) 0x24, (byte) 0x0b, (byte) 0x80, (byte) 0x84, (byte) 0x24, (byte) 0x0b, (byte) 0xf3, (byte) 0x00, (byte) 0x18, (byte) 0x17, (byte) 0xad, (byte) 0x0e, (byte) 0xda, (byte) 0x24, (byte) 0x0b, (byte) 0xac, (byte) 0x85, (byte) 0x24, (byte) 0x0b, (byte) 0xf0, (byte) 0x00, (byte) 0x14, (byte) 0xb0, (byte) 0x06, (byte) 0x3a, (byte) 0xdb, (byte) 0x24, (byte) 0x0b, (byte) 0xd8, (byte) 0x86, (byte) 0x24, (byte) 0x0b, (byte) 0xe5, (byte) 0x00, (byte) 0x15, (byte) 0x00, (byte) 0xf4, (byte) 0x66, (byte) 0xdc, (byte) 0x24, (byte) 0x0b, (byte) 0x04, (byte) 0x88, (byte) 0x24, (byte) 0x0b, (byte) 0xd5, (byte) 0x00, (byte) 0x16, (byte) 0xbb, (byte) 0x6c, (byte) 0x92, (byte) 0xdd, (byte) 0x24, (byte) 0x0b, (byte) 0x30, (byte) 0x89, (byte) 0x24, (byte) 0x0b, (byte) 0xca, (byte) 0x00, (byte) 0x16, (byte) 0x38, (byte) 0xd2, (byte) 0xbe, (byte) 0xde, (byte) 0x24, (byte) 0x0b, (byte) 0x5c, (byte) 0x8a, (byte) 0x24, (byte) 0x0b, (byte) 0xce, (byte) 0x00, (byte) 0x15, (byte) 0x76, (byte) 0xf9, (byte) 0xea, (byte) 0xdf, (byte) 0x24, (byte) 0x0b, (byte) 0x88, (byte) 0x8b, (byte) 0x24, (byte) 0x0b, (byte) 0xcf, (byte) 0x00, (byte) 0x14, (byte) 0x85, (byte) 0x34, (byte) 0x16, (byte) 0xe1, (byte) 0x24, (byte) 0x0b, (byte) 0xb4, (byte) 0x8c, (byte) 0x24, (byte) 0x0b, (byte) 0xcd, (byte) 0x00, (byte) 0x14, (byte) 0xdc, (byte) 0xcc, (byte) 0x42, (byte) 0xe2, (byte) 0x24, (byte) 0x0b, (byte) 0xe0, (byte) 0x8d, (byte) 0x24, (byte) 0x0b, (byte) 0xd0, (byte) 0x00, (byte) 0x14, (byte) 0x7f, (byte) 0x52, (byte) 0x6e, (byte) 0xe3, (byte) 0x24, (byte) 0x0b, (byte) 0x0c, (byte) 0x8f, (byte) 0x24, (byte) 0x0b, (byte) 0xd4, (byte) 0x00, (byte) 0x14, (byte) 0x81, (byte) 0x79, (byte) 0x9a, (byte) 0xe4, (byte) 0x24, (byte) 0x0b, (byte) 0x38, (byte) 0x90, (byte) 0x24, (byte) 0x0b, (byte) 0xd8, (byte) 0x00, (byte) 0x14, (byte) 0xa9, (byte) 0x34, (byte) 0xc6, (byte) 0xe5, (byte) 0x24, (byte) 0x0b, (byte) 0x64, (byte) 0x91, (byte) 0x24, (byte) 0x0b, (byte) 0xdb, (byte) 0x00, (byte) 0x14, (byte) 0xc1, (byte) 0x1d, (byte) 0xf2, (byte) 0xe6, (byte) 0x24, (byte) 0x0b, (byte) 0x90, (byte) 0x92, (byte) 0x24, (byte) 0x0b, (byte) 0xde, (byte) 0x00, (byte) 0x14, (byte) 0x40, (byte) 0xc9, (byte) 0x1e, (byte) 0xe8, (byte) 0x24, (byte) 0x0b, (byte) 0xbc, (byte) 0x93, (byte) 0x24, (byte) 0x0b, (byte) 0xe1, (byte) 0x00, (byte) 0x14, (byte) 0xd1, (byte) 0xf4, (byte) 0x4a, (byte) 0xe9, (byte) 0x24, (byte) 0x0b, (byte) 0xe8, (byte) 0x94, (byte) 0x24, (byte) 0x0b, (byte) 0xe1, (byte) 0x00, (byte) 0x14, (byte) 0x2b, (byte) 0x38, (byte) 0x76, (byte) 0xea, (byte) 0x24, (byte) 0x0b, (byte) 0x14, (byte) 0x96, (byte) 0x24, (byte) 0x0b, (byte) 0xe0, (byte) 0x00, (byte) 0x14, (byte) 0xe9, (byte) 0x44, (byte) 0xce, (byte) 0xec, (byte) 0x24, (byte) 0x0b, (byte) 0x6c, (byte) 0x98, (byte) 0x24, (byte) 0x0b, (byte) 0xef, (byte) 0x00, (byte) 0x14, (byte) 0x6b, (byte) 0x58, (byte) 0xfa, (byte) 0xed, (byte) 0x24, (byte) 0x0b, (byte) 0x98, (byte) 0x99, (byte) 0x24, (byte) 0x0b, (byte) 0xf9, (byte) 0x00, (byte) 0x13, (byte) 0xf4, (byte) 0xb3, (byte) 0x26, (byte) 0xef, (byte) 0x24, (byte) 0x0b, (byte) 0xc4, (byte) 0x9a, (byte) 0x24, (byte) 0x0b, (byte) 0xff, (byte) 0x00, (byte) 0x13, (byte) 0x49, (byte) 0xc2, (byte) 0x7e, (byte) 0xf1, (byte) 0x24, (byte) 0x0b, (byte) 0x1c, (byte) 0x9d, (byte) 0x24, (byte) 0x0b, (byte) 0x10, (byte) 0x01, (byte) 0x13, (byte) 0xfe, (byte) 0x79, (byte) 0xaa, (byte) 0xf2, (byte) 0x24, (byte) 0x0b, (byte) 0x48, (byte) 0x9e, (byte) 0x24, (byte) 0x0b, (byte) 0x1b, (byte) 0x01, (byte) 0x12, (byte) 0x55, (byte) 0x04, (byte) 0xd6, (byte) 0xf3, (byte) 0x24, (byte) 0x0b, (byte) 0x74, (byte) 0x9f, (byte) 0x24, (byte) 0x0b, (byte) 0x1c, (byte) 0x01, (byte) 0x13, (byte) 0xbc, (byte) 0xf8, (byte) 0x02, (byte) 0xf5, (byte) 0x24, (byte) 0x0b, (byte) 0xa0, (byte) 0xa0, (byte) 0x24, (byte) 0x0b, (byte) 0x10, (byte) 0x01, (byte) 0x14, (byte) 0xa7, (byte) 0x2d, (byte) 0x2e, (byte) 0xf6, (byte) 0x24, (byte) 0x0b, (byte) 0xcb, (byte) 0xa1, (byte) 0x24, (byte) 0x0b, (byte) 0x16, (byte) 0x01, (byte) 0x24, (byte) 0xbd, (byte) 0xfc, (byte) 0x5a, (byte) 0xf7, (byte) 0x24, (byte) 0x0b, (byte) 0xf7, (byte) 0xa2, (byte) 0x24, (byte) 0x0b, (byte) 0x06, (byte) 0x01, (byte) 0x24, (byte) 0x48, (byte) 0xff, (byte) 0x86, (byte) 0xf8, (byte) 0x24, (byte) 0x0b, (byte) 0x23, (byte) 0xa4, (byte) 0x24, (byte) 0x0b, (byte) 0xea, (byte) 0x00, (byte) 0x27, (byte) 0x39, (byte) 0x19, (byte) 0xb2, (byte) 0xf9, (byte) 0x24, (byte) 0x0b, (byte) 0x50, (byte) 0xa5, (byte) 0x24, (byte) 0x0b, (byte) 0x9b, (byte) 0x00, (byte) 0x17, (byte) 0x54, (byte) 0x18, (byte) 0xde, (byte) 0xfa, (byte) 0x24, (byte) 0x0b, (byte) 0x7b, (byte) 0xa6, (byte) 0x24, (byte) 0x0b, (byte) 0x87, (byte) 0x00, (byte) 0x17, (byte) 0xc6, (byte) 0x69, (byte) 0x0a, (byte) 0xfc, (byte) 0x24, (byte) 0x0b, (byte) 0xa7, (byte) 0xa7, (byte) 0x24, (byte) 0x0b, (byte) 0x7a, (byte) 0x00, (byte) 0x17, (byte) 0xda, (byte) 0x24, (byte) 0x37, (byte) 0xfd, (byte) 0x24, (byte) 0x0b, (byte) 0xd5, (byte) 0xa8, (byte) 0x24, (byte) 0x0b, (byte) 0x76, (byte) 0x00, (byte) 0x17, (byte) 0xb8, (byte) 0xcb, (byte) 0x62, (byte) 0xfe, (byte) 0x24, (byte) 0x0b, (byte) 0x00, (byte) 0xaa, (byte) 0x24, (byte) 0x0b, (byte) 0x79, (byte) 0x00, (byte) 0x15, (byte) 0x6b, (byte) 0x5d, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xcc, (byte) 0x72 };
    byte[] page2Response = new byte[] { (byte) 0x01, (byte) 0x16, (byte) 0x02, (byte) 0x01, (byte) 0x2a, (byte) 0x1b, (byte) 0x00, (byte) 0x00, (byte) 0x17, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x04, (byte) 0x02, (byte) 0xb7, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0xfc, (byte) 0x15, (byte) 0x8e, (byte) 0xff, (byte) 0x24, (byte) 0x0b, (byte) 0x2c, (byte) 0xab, (byte) 0x24, (byte) 0x0b, (byte) 0x7f, (byte) 0x00, (byte) 0x14, (byte) 0x5e, (byte) 0x7d, (byte) 0xba, (byte) 0x00, (byte) 0x25, (byte) 0x0b, (byte) 0x58, (byte) 0xac, (byte) 0x24, (byte) 0x0b, (byte) 0x89, (byte) 0x00, (byte) 0x13, (byte) 0x8a, (byte) 0xf9, (byte) 0x3e, (byte) 0x04, (byte) 0x25, (byte) 0x0b, (byte) 0xdc, (byte) 0xaf, (byte) 0x24, (byte) 0x0b, (byte) 0x9d, (byte) 0x00, (byte) 0x13, (byte) 0x2e, (byte) 0xb7, (byte) 0x6a, (byte) 0x05, (byte) 0x25, (byte) 0x0b, (byte) 0x08, (byte) 0xb1, (byte) 0x24, (byte) 0x0b, (byte) 0x9e, (byte) 0x00, (byte) 0x13, (byte) 0x1b, (byte) 0xdb, (byte) 0x97, (byte) 0x06, (byte) 0x25, (byte) 0x0b, (byte) 0x34, (byte) 0xb2, (byte) 0x24, (byte) 0x0b, (byte) 0xa4, (byte) 0x00, (byte) 0x13, (byte) 0x0e, (byte) 0xb4, (byte) 0xc2, (byte) 0x07, (byte) 0x25, (byte) 0x0b, (byte) 0x5f, (byte) 0xb3, (byte) 0x24, (byte) 0x0b, (byte) 0xa4, (byte) 0x00, (byte) 0x14, (byte) 0xdf, (byte) 0x8e, (byte) 0xee, (byte) 0x08, (byte) 0x25, (byte) 0x0b, (byte) 0x8b, (byte) 0xb4, (byte) 0x24, (byte) 0x0b, (byte) 0xa6, (byte) 0x00, (byte) 0x14, (byte) 0x54, (byte) 0xa7, (byte) 0x1a, (byte) 0x0a, (byte) 0x25, (byte) 0x0b, (byte) 0xb7, (byte) 0xb5, (byte) 0x24, (byte) 0x0b, (byte) 0xae, (byte) 0x00, (byte) 0x14, (byte) 0x46, (byte) 0xfd, (byte) 0x46, (byte) 0x0b, (byte) 0x25, (byte) 0x0b, (byte) 0xe3, (byte) 0xb6, (byte) 0x24, (byte) 0x0b, (byte) 0xa7, (byte) 0x00, (byte) 0x14, (byte) 0x02, (byte) 0x0b, (byte) 0x72, (byte) 0x0c, (byte) 0x25, (byte) 0x0b, (byte) 0x0f, (byte) 0xb8, (byte) 0x24, (byte) 0x0b, (byte) 0xaa, (byte) 0x00, (byte) 0x14, (byte) 0x82, (byte) 0x31, (byte) 0x9e, (byte) 0x0d, (byte) 0x25, (byte) 0x0b, (byte) 0x3b, (byte) 0xb9, (byte) 0x24, (byte) 0x0b, (byte) 0xa9, (byte) 0x00, (byte) 0x14, (byte) 0xb0, (byte) 0x4e, (byte) 0xca, (byte) 0x0e, (byte) 0x25, (byte) 0x0b, (byte) 0x67, (byte) 0xba, (byte) 0x24, (byte) 0x0b, (byte) 0xa8, (byte) 0x00, (byte) 0x14, (byte) 0xfc, (byte) 0xfe, (byte) 0xf6, (byte) 0x0f, (byte) 0x25, (byte) 0x0b, (byte) 0x93, (byte) 0xbb, (byte) 0x24, (byte) 0x0b, (byte) 0xa6, (byte) 0x00, (byte) 0x14, (byte) 0xc8, (byte) 0x2d, (byte) 0x22, (byte) 0x11, (byte) 0x25, (byte) 0x0b, (byte) 0xbf, (byte) 0xbc, (byte) 0x24, (byte) 0x0b, (byte) 0xa6, (byte) 0x00, (byte) 0x14, (byte) 0x73, (byte) 0xbd, (byte) 0x4e, (byte) 0x12, (byte) 0x25, (byte) 0x0b, (byte) 0xeb, (byte) 0xbd, (byte) 0x24, (byte) 0x0b, (byte) 0xa1, (byte) 0x00, (byte) 0x14, (byte) 0xbb, (byte) 0xfa, (byte) 0x7a, (byte) 0x13, (byte) 0x25, (byte) 0x0b, (byte) 0x17, (byte) 0xbf, (byte) 0x24, (byte) 0x0b, (byte) 0xab, (byte) 0x00, (byte) 0x14, (byte) 0x8c, (byte) 0x0a, (byte) 0xa6, (byte) 0x14, (byte) 0x25, (byte) 0x0b, (byte) 0x43, (byte) 0xc0, (byte) 0x24, (byte) 0x0b, (byte) 0xa6, (byte) 0x00, (byte) 0x14, (byte) 0x62, (byte) 0x94, (byte) 0xd2, (byte) 0x15, (byte) 0x25, (byte) 0x0b, (byte) 0x6f, (byte) 0xc1, (byte) 0x24, (byte) 0x0b, (byte) 0xad, (byte) 0x00, (byte) 0x14, (byte) 0x3e, (byte) 0x98, (byte) 0xfe, (byte) 0x16, (byte) 0x25, (byte) 0x0b, (byte) 0x9b, (byte) 0xc2, (byte) 0x24, (byte) 0x0b, (byte) 0xb2, (byte) 0x00, (byte) 0x14, (byte) 0xae, (byte) 0x3f, (byte) 0x57, (byte) 0x19, (byte) 0x25, (byte) 0x0b, (byte) 0xf4, (byte) 0xc4, (byte) 0x24, (byte) 0x0b, (byte) 0xb5, (byte) 0x00, (byte) 0x14, (byte) 0x8a, (byte) 0x01, (byte) 0x57, (byte) 0x19, (byte) 0x25, (byte) 0x0b, (byte) 0xf4, (byte) 0xc4, (byte) 0x24, (byte) 0x0b, (byte) 0xb5, (byte) 0x80, (byte) 0x14, (byte) 0x12, (byte) 0x1a, (byte) 0x83, (byte) 0x1a, (byte) 0x25, (byte) 0x0b, (byte) 0x21, (byte) 0xc6, (byte) 0x24, (byte) 0x0b, (byte) 0xba, (byte) 0x00, (byte) 0x14, (byte) 0xf8, (byte) 0xe6, (byte) 0x83, (byte) 0x1a, (byte) 0x25, (byte) 0x0b, (byte) 0x21, (byte) 0xc6, (byte) 0x24, (byte) 0x0b, (byte) 0xba, (byte) 0x80, (byte) 0x14, (byte) 0x60, (byte) 0xfd, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0x12, (byte) 0x14 };
    when(usbDevice.write((byte[]) anyObject(), anyInt())).thenReturn(7).thenReturn(12).thenReturn(12);
    when(usbDevice.read(anyInt(), anyInt())).thenReturn(response).thenReturn(page1Response).thenReturn(page2Response);
    List<EGVRecord> records = readData.getRecentEGVsPages(2);
    assertThat(records, is(MockFactory.mockEGVPage()));
}
Also used : ReadData(com.nightscout.core.drivers.ReadData) EGVRecord(com.nightscout.core.dexcom.records.EGVRecord) Test(org.junit.Test)

Aggregations

EGVRecord (com.nightscout.core.dexcom.records.EGVRecord)11 Test (org.junit.Test)5 SensorRecord (com.nightscout.core.dexcom.records.SensorRecord)3 ArrayList (java.util.ArrayList)3 Date (java.util.Date)3 CalRecord (com.nightscout.core.dexcom.records.CalRecord)2 MeterRecord (com.nightscout.core.dexcom.records.MeterRecord)2 DownloadResults (com.nightscout.core.model.DownloadResults)2 G4Download (com.nightscout.core.model.G4Download)2 PowerManager (android.os.PowerManager)1 HitBuilders (com.google.android.gms.analytics.HitBuilders)1 Tracker (com.google.android.gms.analytics.Tracker)1 CdcAcmSerialDriver (com.nightscout.android.drivers.USB.CdcAcmSerialDriver)1 AndroidPreferences (com.nightscout.android.preferences.AndroidPreferences)1 Uploader (com.nightscout.android.upload.Uploader)1 CRCFailError (com.nightscout.core.dexcom.CRCFailError)1 InvalidRecordLengthException (com.nightscout.core.dexcom.InvalidRecordLengthException)1 GlucoseDataSet (com.nightscout.core.dexcom.records.GlucoseDataSet)1 PageHeader (com.nightscout.core.dexcom.records.PageHeader)1 AbstractDevice (com.nightscout.core.drivers.AbstractDevice)1