mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 21:20:45 +00:00
Rename 'run' to 'runOnePage'
This commit is contained in:
@ -2258,7 +2258,7 @@ public class QInstanceValidatorTest extends BaseTest
|
||||
///////////////////////////////////////////////
|
||||
public abstract class TestAbstractClass extends AbstractTransformStep implements BackendStep
|
||||
{
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -2270,7 +2270,7 @@ public class QInstanceValidatorTest extends BaseTest
|
||||
///////////////////////////////////////////////
|
||||
private class TestPrivateClass extends AbstractTransformStep implements BackendStep
|
||||
{
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
}
|
||||
|
||||
@ -2297,7 +2297,7 @@ public class QInstanceValidatorTest extends BaseTest
|
||||
|
||||
|
||||
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -111,7 +111,7 @@ class BulkInsertTransformStepTest extends BaseTest
|
||||
newQRecord("uuid-D", "SKU-2", 1) // violate sku/storeId UK from pre-existing records
|
||||
));
|
||||
bulkInsertTransformStep.preRun(input, output);
|
||||
bulkInsertTransformStep.run(input, output);
|
||||
bulkInsertTransformStep.runOnePage(input, output);
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// assert about the records that passed successfully //
|
||||
@ -193,7 +193,7 @@ class BulkInsertTransformStepTest extends BaseTest
|
||||
newQRecord("uuid-D", "SKU-2", 1) // violate sku/storeId UK from pre-existing records
|
||||
));
|
||||
bulkInsertTransformStep.preRun(input, output);
|
||||
bulkInsertTransformStep.run(input, output);
|
||||
bulkInsertTransformStep.runOnePage(input, output);
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// assert that all records pass.
|
||||
|
@ -76,7 +76,7 @@ class LoadViaInsertOrUpdateStepTest extends BaseTest
|
||||
input.setRecords(inputRecordList);
|
||||
input.addValue(LoadViaInsertOrUpdateStep.FIELD_DESTINATION_TABLE, TestUtils.TABLE_NAME_PERSON_MEMORY);
|
||||
RunBackendStepOutput output = new RunBackendStepOutput();
|
||||
new LoadViaInsertOrUpdateStep().run(input, output);
|
||||
new LoadViaInsertOrUpdateStep().runOnePage(input, output);
|
||||
|
||||
List<QRecord> qRecords = TestUtils.queryTable(qInstance, TestUtils.TABLE_NAME_PERSON_MEMORY);
|
||||
assertEquals(2, qRecords.size());
|
||||
|
@ -56,7 +56,7 @@ class NoopTransformStepTest extends BaseTest
|
||||
RunBackendStepOutput output = new RunBackendStepOutput();
|
||||
|
||||
NoopTransformStep noopTransformStep = new NoopTransformStep();
|
||||
noopTransformStep.run(input, output);
|
||||
noopTransformStep.runOnePage(input, output);
|
||||
|
||||
assertEquals(1, output.getRecords().size());
|
||||
assertEquals(47, output.getRecords().get(0).getValueInteger("id"));
|
||||
|
@ -419,7 +419,7 @@ public class StreamedETLWithFrontendProcessTest extends BaseTest
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
for(QRecord qRecord : runBackendStepInput.getRecords())
|
||||
{
|
||||
@ -452,7 +452,7 @@ public class StreamedETLWithFrontendProcessTest extends BaseTest
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
for(QRecord qRecord : runBackendStepInput.getRecords())
|
||||
{
|
||||
@ -518,7 +518,7 @@ public class StreamedETLWithFrontendProcessTest extends BaseTest
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
for(QRecord qRecord : runBackendStepInput.getRecords())
|
||||
{
|
||||
@ -552,7 +552,7 @@ public class StreamedETLWithFrontendProcessTest extends BaseTest
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
for(QRecord qRecord : runBackendStepInput.getRecords())
|
||||
{
|
||||
@ -584,7 +584,7 @@ public class StreamedETLWithFrontendProcessTest extends BaseTest
|
||||
**
|
||||
*******************************************************************************/
|
||||
@Override
|
||||
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
public void runOnePage(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException
|
||||
{
|
||||
///////////////////////////////////
|
||||
// just pass the records through //
|
||||
|
Reference in New Issue
Block a user