mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Fix test test and propagate exceptions more
This commit is contained in:
@ -145,6 +145,7 @@ public class TestScriptProcessStep implements BackendStep
|
||||
if(testScriptOutput.getException() != null)
|
||||
{
|
||||
output.addValue("exception", testScriptOutput.getException());
|
||||
output.setException(testScriptOutput.getException());
|
||||
}
|
||||
}
|
||||
catch(Exception e)
|
||||
@ -153,6 +154,7 @@ public class TestScriptProcessStep implements BackendStep
|
||||
// is this the kind of exception meant here? or is it more for one thrown by the script execution? or are those the same?? //
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
output.addValue("exception", e);
|
||||
output.setException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -71,11 +71,14 @@ class TestScriptProcessStepTest extends BaseTest
|
||||
insertInput.setRecords(List.of(new Script()
|
||||
.withName("TestScript")
|
||||
.withScriptTypeId(insertOutput.getRecords().get(0).getValueInteger("id"))
|
||||
.withTableName(TestUtils.TABLE_NAME_SHAPE)
|
||||
.toQRecord()));
|
||||
insertOutput = new InsertAction().execute(insertInput);
|
||||
|
||||
RunBackendStepInput input = new RunBackendStepInput();
|
||||
input.addValue("scriptId", insertOutput.getRecords().get(0).getValueInteger("id"));
|
||||
TestUtils.insertDefaultShapes(qInstance);
|
||||
input.addValue("recordPrimaryKeyList", "1");
|
||||
input.addValue("fileNames", new ArrayList<>(List.of("script.js")));
|
||||
input.addValue("fileContents:script.js", "logger.log('oh my.')");
|
||||
|
||||
|
Reference in New Issue
Block a user