trigger and VSS hw integrated testing #1668

clean-up
This commit is contained in:
rusefi 2020-08-08 11:04:26 -04:00
parent b1f8c200ba
commit 1d5b4cf187
4 changed files with 56 additions and 63 deletions

View File

@ -35,20 +35,17 @@ public class AutoTest {
private static String criticalError;
private final LinkManager linkManager;
private CommandQueue commandQueue;
private final CommandQueue commandQueue;
public AutoTest(LinkManager linkManager, CommandQueue commandQueue) {
this.linkManager = linkManager;
this.commandQueue = commandQueue;
}
void mainTestBody() throws Exception {
MessagesCentral.getInstance().addListener(new MessagesCentral.MessageListener() {
@Override
public void onMessage(Class clazz, String message) {
if (message.startsWith(Fields.CRITICAL_PREFIX))
criticalError = message;
}
void mainTestBody() {
MessagesCentral.getInstance().addListener((clazz, message) -> {
if (message.startsWith(Fields.CRITICAL_PREFIX))
criticalError = message;
});
@ -79,13 +76,10 @@ public class AutoTest {
testFordFiesta();
}
private static Function<String, Object> FAIL = new Function<String, Object>() {
@Override
public Object apply(String errorCode) {
if (errorCode != null)
throw new IllegalStateException("Failed " + errorCode);
return null;
}
private static final Function<String, Object> FAIL = errorCode -> {
if (errorCode != null)
throw new IllegalStateException("Failed " + errorCode);
return null;
};
private void testVW_60_2() {
@ -106,13 +100,10 @@ public class AutoTest {
IoUtil.changeRpm(commandQueue, rpm);
sleepSeconds(settleTime);
AtomicReference<String> result = new AtomicReference<>();
SensorCentral.SensorListener listener = new SensorCentral.SensorListener() {
@Override
public void onSensorUpdate(double value) {
double actualRpm = SensorCentral.getInstance().getValue(Sensor.RPM);
if (!isCloseEnough(rpm, actualRpm))
result.set("Got " + actualRpm + " while trying to stay at " + rpm);
}
SensorCentral.SensorListener listener = value -> {
double actualRpm = SensorCentral.getInstance().getValue(Sensor.RPM);
if (!isCloseEnough(rpm, actualRpm))
result.set("Got " + actualRpm + " while trying to stay at " + rpm);
};
SensorCentral.getInstance().addListener(Sensor.RPM, listener);
sleepSeconds(testDuration);
@ -143,7 +134,7 @@ public class AutoTest {
private void testSachs() {
setEngineType(29);
String msg = "BMW";
// String msg = "BMW";
changeRpm(1200);
// todo: add more content
}
@ -178,7 +169,7 @@ public class AutoTest {
private void testMitsu() {
setEngineType(16);
sendCommand("disable cylinder_cleanup");
String msg = "Mitsubishi";
// String msg = "Mitsubishi";
changeRpm(200);
changeRpm(1200);
@ -187,7 +178,7 @@ public class AutoTest {
private void testCitroenBerlingo() {
setEngineType(ET_CITROEN_TU3JP);
String msg = "Citroen";
// String msg = "Citroen";
changeRpm(1200);
// todo: add more content
}
@ -537,39 +528,4 @@ public class AutoTest {
private static void assertWaveNull(String msg, EngineChart chart, String key) {
assertNull(msg + "chart for " + key, chart.get(key));
}
public static void main(String[] args) throws InterruptedException {
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@Override
public void uncaughtException(Thread t, Throwable e) {
e.printStackTrace();
System.exit(-1);
}
});
boolean startSimulator = args.length == 1 && args[0].equalsIgnoreCase("start");
long start = System.currentTimeMillis();
FileLog.SIMULATOR_CONSOLE.start();
FileLog.MAIN.start();
boolean failed = false;
try {
LinkManager linkManager = new LinkManager();
IoUtil.connectToSimulator(linkManager, startSimulator);
new AutoTest(linkManager, linkManager.getCommandQueue()).mainTestBody();
} catch (Throwable e) {
e.printStackTrace();
failed = true;
} finally {
SimulatorExecHelper.destroy();
}
if (failed)
System.exit(-1);
FileLog.MAIN.logLine("*******************************************************************************");
FileLog.MAIN.logLine("************************************ Looks good! *****************************");
FileLog.MAIN.logLine("*******************************************************************************");
long time = (System.currentTimeMillis() - start) / 1000;
FileLog.MAIN.logLine("Done in " + time + "secs");
System.exit(0); // this is a safer method eliminating the issue of non-daemon threads
}
}

View File

@ -0,0 +1,37 @@
package com.rusefi;
import com.rusefi.io.LinkManager;
public class SimulatorFunctionalTest {
public static void main(String[] args) {
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
e.printStackTrace();
System.exit(-1);
});
boolean startSimulator = args.length == 1 && args[0].equalsIgnoreCase("start");
long start = System.currentTimeMillis();
FileLog.SIMULATOR_CONSOLE.start();
FileLog.MAIN.start();
boolean failed = false;
try {
LinkManager linkManager = new LinkManager();
IoUtil.connectToSimulator(linkManager, startSimulator);
new AutoTest(linkManager, linkManager.getCommandQueue()).mainTestBody();
} catch (Throwable e) {
e.printStackTrace();
failed = true;
} finally {
SimulatorExecHelper.destroy();
}
if (failed)
System.exit(-1);
FileLog.MAIN.logLine("*******************************************************************************");
FileLog.MAIN.logLine("************************************ Looks good! *****************************");
FileLog.MAIN.logLine("*******************************************************************************");
long time = (System.currentTimeMillis() - start) / 1000;
FileLog.MAIN.logLine("Done in " + time + "secs");
System.exit(0); // this is a safer method eliminating the issue of non-daemon threads
}
}

View File

@ -174,8 +174,8 @@
<java jar="${jar_file}" fork="true"/>
</target>
<target name="simlator_test" depends="jar">
<java classpath="${jar_file}" classname="com.rusefi.AutoTest" failonerror="true" args="start">
<target name="simulator_test" depends="jar">
<java classpath="${jar_file}" classname="com.rusefi.SimulatorFunctionalTest" failonerror="true" args="start">
</java>
</target>

View File

@ -8,7 +8,7 @@ cd java_console
echo "Running simulator functional test"
which java
which javac
ant simlator_test
ant simulator_test
[ $? -eq 0 ] || { echo "ERROR DETECTED"; exit 1; }
echo "TIMESTAMP $(date "+%a %D %T.%2S")"