2015-01-21 21:58:35 +01:00
|
|
|
/*******************************************************************************
|
2021-01-09 20:10:58 +01:00
|
|
|
* Copyright (c) 2015-2021 MINRES Technologies GmbH and others.
|
2015-01-21 21:58:35 +01:00
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* MINRES Technologies GmbH - initial API and implementation
|
|
|
|
*******************************************************************************/
|
2015-01-06 17:14:16 +01:00
|
|
|
package com.minres.scviewer.database.test;
|
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import static org.junit.Assert.assertNotNull;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
|
|
|
|
import java.io.File;
|
2018-11-03 17:49:40 +01:00
|
|
|
import java.util.List;
|
2015-01-06 17:14:16 +01:00
|
|
|
|
|
|
|
import org.junit.After;
|
|
|
|
import org.junit.Before;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
2021-02-27 13:26:07 +01:00
|
|
|
import com.minres.scviewer.database.EventEntry;
|
2018-11-03 17:49:40 +01:00
|
|
|
import com.minres.scviewer.database.IWaveform;
|
2015-01-06 17:14:16 +01:00
|
|
|
import com.minres.scviewer.database.IWaveformDb;
|
|
|
|
|
|
|
|
public class DatabaseServicesTest {
|
|
|
|
|
2015-10-24 23:15:07 +02:00
|
|
|
|
|
|
|
private IWaveformDb waveformDb;
|
2021-01-14 23:14:05 +01:00
|
|
|
|
2015-01-06 17:14:16 +01:00
|
|
|
@Before
|
|
|
|
public void setUp() throws Exception {
|
2021-01-14 23:14:05 +01:00
|
|
|
waveformDb=TestWaveformDbFactory.getDatabase();
|
2015-10-24 23:15:07 +02:00
|
|
|
}
|
2015-01-06 17:14:16 +01:00
|
|
|
|
|
|
|
@After
|
|
|
|
public void tearDown() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2015-01-10 00:23:46 +01:00
|
|
|
public void testVCD() throws Exception {
|
2015-01-06 17:14:16 +01:00
|
|
|
File f = new File("inputs/my_db.vcd").getAbsoluteFile();
|
|
|
|
assertTrue(f.exists());
|
2015-10-24 23:15:07 +02:00
|
|
|
waveformDb.load(f);
|
|
|
|
assertNotNull(waveformDb);
|
2018-11-05 18:21:54 +01:00
|
|
|
List<IWaveform> waves= waveformDb.getAllWaves();
|
|
|
|
assertEquals(14, waves.size());
|
2015-10-24 23:15:07 +02:00
|
|
|
assertEquals(2, waveformDb.getChildNodes().size());
|
2018-11-05 18:21:54 +01:00
|
|
|
IWaveform bus_data_wave = waves.get(0);
|
2021-02-27 13:26:07 +01:00
|
|
|
EventEntry bus_data_entry = bus_data_wave.getEvents().floorEntry(1400000000L);
|
|
|
|
assertEquals("01111000", bus_data_entry.events[0].toString());
|
2018-11-05 18:21:54 +01:00
|
|
|
IWaveform rw_wave = waves.get(2);
|
2021-02-27 13:26:07 +01:00
|
|
|
EventEntry rw_entry = rw_wave.getEvents().floorEntry(2360000000L);
|
|
|
|
assertEquals("1", rw_entry.events[0].toString());
|
2015-01-06 17:14:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2015-01-10 00:23:46 +01:00
|
|
|
public void testTxSQLite() throws Exception {
|
2018-11-03 17:49:40 +01:00
|
|
|
File f = new File("inputs/my_sqldb.txdb").getAbsoluteFile();
|
2015-01-06 17:14:16 +01:00
|
|
|
assertTrue(f.exists());
|
2015-10-24 23:15:07 +02:00
|
|
|
waveformDb.load(f);
|
|
|
|
assertNotNull(waveformDb);
|
|
|
|
assertEquals(3, waveformDb.getAllWaves().size());
|
|
|
|
assertEquals(1, waveformDb.getChildNodes().size());
|
2015-01-06 17:14:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2015-01-10 00:23:46 +01:00
|
|
|
public void testTxText() throws Exception {
|
2015-01-06 17:14:16 +01:00
|
|
|
File f = new File("inputs/my_db.txlog").getAbsoluteFile();
|
|
|
|
assertTrue(f.exists());
|
2015-10-24 23:15:07 +02:00
|
|
|
waveformDb.load(f);
|
|
|
|
assertNotNull(waveformDb);
|
2021-01-03 14:16:56 +01:00
|
|
|
List<IWaveform> waveforms = waveformDb.getAllWaves();
|
|
|
|
assertEquals(3, waveforms.size());
|
2015-10-24 23:15:07 +02:00
|
|
|
assertEquals(1, waveformDb.getChildNodes().size());
|
2021-01-03 14:16:56 +01:00
|
|
|
for(IWaveform w:waveforms) {
|
|
|
|
if(w.getId().equals(1l)) {
|
2021-01-14 23:14:05 +01:00
|
|
|
assertEquals(2, w.getRowCount());
|
2021-01-03 14:16:56 +01:00
|
|
|
} else if(w.getId().equals(2l)) {
|
2021-01-14 23:14:05 +01:00
|
|
|
assertEquals(1, w.getRowCount());
|
2021-01-03 14:16:56 +01:00
|
|
|
} else if(w.getId().equals(3l)) {
|
2021-01-14 23:14:05 +01:00
|
|
|
assertEquals(1, w.getRowCount());
|
2021-01-03 14:16:56 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-06 17:14:16 +01:00
|
|
|
}
|
|
|
|
|
2020-03-11 07:37:14 +01:00
|
|
|
@Test
|
|
|
|
public void testTxTextTruncated() throws Exception {
|
|
|
|
File f = new File("inputs/my_db_truncated.txlog").getAbsoluteFile();
|
|
|
|
assertTrue(f.exists());
|
|
|
|
waveformDb.load(f);
|
|
|
|
assertNotNull(waveformDb);
|
|
|
|
assertEquals(3, waveformDb.getAllWaves().size());
|
|
|
|
assertEquals(1, waveformDb.getChildNodes().size());
|
|
|
|
}
|
|
|
|
|
2018-07-14 11:42:55 +02:00
|
|
|
@Test
|
|
|
|
public void testHierarchicalVCD() throws Exception {
|
|
|
|
File f = new File("inputs/simple_system.vcd").getAbsoluteFile();
|
|
|
|
assertTrue(f.exists());
|
|
|
|
waveformDb.load(f);
|
|
|
|
assertNotNull(waveformDb);
|
2018-10-11 11:20:36 +02:00
|
|
|
assertEquals(779, waveformDb.getAllWaves().size());
|
2018-07-16 13:17:58 +02:00
|
|
|
assertEquals(1, waveformDb.getChildNodes().size());
|
2018-07-14 11:42:55 +02:00
|
|
|
}
|
|
|
|
|
2015-01-06 17:14:16 +01:00
|
|
|
}
|