mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Merge pull request #21 from Kingsrook/feature/sprint-7-integration
Feature/sprint 7 integration
This commit is contained in:
@ -24,6 +24,8 @@ commands:
|
|||||||
name: Run Maven
|
name: Run Maven
|
||||||
command: |
|
command: |
|
||||||
mvn -s .circleci/mvn-settings.xml << parameters.maven_subcommand >>
|
mvn -s .circleci/mvn-settings.xml << parameters.maven_subcommand >>
|
||||||
|
- store_artifacts:
|
||||||
|
path: target/site/jacoco
|
||||||
- run:
|
- run:
|
||||||
name: Save test results
|
name: Save test results
|
||||||
command: |
|
command: |
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
target/
|
target/
|
||||||
*.iml
|
*.iml
|
||||||
|
.env
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
@ -28,3 +29,4 @@ target/
|
|||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
|
.DS_Store
|
||||||
|
12
pom.xml
12
pom.xml
@ -53,12 +53,12 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.kingsrook.qqq</groupId>
|
<groupId>com.kingsrook.qqq</groupId>
|
||||||
<artifactId>qqq-backend-core</artifactId>
|
<artifactId>qqq-backend-core</artifactId>
|
||||||
<version>0.2.0-SNAPSHOT</version>
|
<version>0.2.0-20220726.214150-15</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.kingsrook.qqq</groupId>
|
<groupId>com.kingsrook.qqq</groupId>
|
||||||
<artifactId>qqq-backend-module-rdbms</artifactId>
|
<artifactId>qqq-backend-module-rdbms</artifactId>
|
||||||
<version>0.2.0-SNAPSHOT</version>
|
<version>0.2.0-20220726.214633-12</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -66,7 +66,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.javalin</groupId>
|
<groupId>io.javalin</groupId>
|
||||||
<artifactId>javalin</artifactId>
|
<artifactId>javalin</artifactId>
|
||||||
<version>3.13.13</version>
|
<version>4.6.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.konghq</groupId>
|
<groupId>com.konghq</groupId>
|
||||||
@ -85,6 +85,12 @@
|
|||||||
<artifactId>slf4j-simple</artifactId>
|
<artifactId>slf4j-simple</artifactId>
|
||||||
<version>1.7.36</version>
|
<version>1.7.36</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.assertj</groupId>
|
||||||
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>3.23.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Common deps for all qqq modules -->
|
<!-- Common deps for all qqq modules -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -24,20 +24,28 @@ package com.kingsrook.qqq.backend.javalin;
|
|||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.PipedInputStream;
|
||||||
|
import java.io.PipedOutputStream;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.Optional;
|
||||||
|
import com.kingsrook.qqq.backend.core.actions.async.AsyncJobManager;
|
||||||
import com.kingsrook.qqq.backend.core.actions.metadata.MetaDataAction;
|
import com.kingsrook.qqq.backend.core.actions.metadata.MetaDataAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.metadata.ProcessMetaDataAction;
|
import com.kingsrook.qqq.backend.core.actions.metadata.ProcessMetaDataAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.metadata.TableMetaDataAction;
|
import com.kingsrook.qqq.backend.core.actions.metadata.TableMetaDataAction;
|
||||||
|
import com.kingsrook.qqq.backend.core.actions.reporting.ReportAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.tables.CountAction;
|
import com.kingsrook.qqq.backend.core.actions.tables.CountAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.tables.DeleteAction;
|
import com.kingsrook.qqq.backend.core.actions.tables.DeleteAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.tables.InsertAction;
|
import com.kingsrook.qqq.backend.core.actions.tables.InsertAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.tables.QueryAction;
|
import com.kingsrook.qqq.backend.core.actions.tables.QueryAction;
|
||||||
import com.kingsrook.qqq.backend.core.actions.tables.UpdateAction;
|
import com.kingsrook.qqq.backend.core.actions.tables.UpdateAction;
|
||||||
import com.kingsrook.qqq.backend.core.adapters.QInstanceAdapter;
|
import com.kingsrook.qqq.backend.core.adapters.QInstanceAdapter;
|
||||||
|
import com.kingsrook.qqq.backend.core.exceptions.QAuthenticationException;
|
||||||
import com.kingsrook.qqq.backend.core.exceptions.QModuleDispatchException;
|
import com.kingsrook.qqq.backend.core.exceptions.QModuleDispatchException;
|
||||||
import com.kingsrook.qqq.backend.core.exceptions.QNotFoundException;
|
import com.kingsrook.qqq.backend.core.exceptions.QNotFoundException;
|
||||||
import com.kingsrook.qqq.backend.core.exceptions.QUserFacingException;
|
import com.kingsrook.qqq.backend.core.exceptions.QUserFacingException;
|
||||||
@ -49,6 +57,8 @@ import com.kingsrook.qqq.backend.core.model.actions.metadata.ProcessMetaDataInpu
|
|||||||
import com.kingsrook.qqq.backend.core.model.actions.metadata.ProcessMetaDataOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.metadata.ProcessMetaDataOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.metadata.TableMetaDataInput;
|
import com.kingsrook.qqq.backend.core.model.actions.metadata.TableMetaDataInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.metadata.TableMetaDataOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.metadata.TableMetaDataOutput;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.reporting.ReportFormat;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.reporting.ReportInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountInput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.delete.DeleteInput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.delete.DeleteInput;
|
||||||
@ -66,6 +76,7 @@ import com.kingsrook.qqq.backend.core.model.data.QRecord;
|
|||||||
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
||||||
import com.kingsrook.qqq.backend.core.model.session.QSession;
|
import com.kingsrook.qqq.backend.core.model.session.QSession;
|
||||||
|
import com.kingsrook.qqq.backend.core.modules.authentication.Auth0AuthenticationModule;
|
||||||
import com.kingsrook.qqq.backend.core.modules.authentication.QAuthenticationModuleDispatcher;
|
import com.kingsrook.qqq.backend.core.modules.authentication.QAuthenticationModuleDispatcher;
|
||||||
import com.kingsrook.qqq.backend.core.modules.authentication.QAuthenticationModuleInterface;
|
import com.kingsrook.qqq.backend.core.modules.authentication.QAuthenticationModuleInterface;
|
||||||
import com.kingsrook.qqq.backend.core.utils.ExceptionUtils;
|
import com.kingsrook.qqq.backend.core.utils.ExceptionUtils;
|
||||||
@ -97,6 +108,7 @@ public class QJavalinImplementation
|
|||||||
private static final Logger LOG = LogManager.getLogger(QJavalinImplementation.class);
|
private static final Logger LOG = LogManager.getLogger(QJavalinImplementation.class);
|
||||||
|
|
||||||
private static final int SESSION_COOKIE_AGE = 60 * 60 * 24;
|
private static final int SESSION_COOKIE_AGE = 60 * 60 * 24;
|
||||||
|
private static final String SESSION_ID_COOKIE_NAME = "sessionId";
|
||||||
|
|
||||||
static QInstance qInstance;
|
static QInstance qInstance;
|
||||||
|
|
||||||
@ -182,36 +194,46 @@ public class QJavalinImplementation
|
|||||||
{
|
{
|
||||||
return (() ->
|
return (() ->
|
||||||
{
|
{
|
||||||
|
/////////////////////
|
||||||
|
// metadata routes //
|
||||||
|
/////////////////////
|
||||||
path("/metaData", () ->
|
path("/metaData", () ->
|
||||||
{
|
{
|
||||||
get("/", QJavalinImplementation::metaData);
|
get("/", QJavalinImplementation::metaData);
|
||||||
path("/table/:table", () ->
|
path("/table/{table}", () ->
|
||||||
{
|
{
|
||||||
get("", QJavalinImplementation::tableMetaData);
|
get("", QJavalinImplementation::tableMetaData);
|
||||||
});
|
});
|
||||||
path("/process/:processName", () ->
|
path("/process/{processName}", () ->
|
||||||
{
|
{
|
||||||
get("", QJavalinImplementation::processMetaData);
|
get("", QJavalinImplementation::processMetaData);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
path("/data", () ->
|
|
||||||
{
|
|
||||||
path("/:table", () ->
|
|
||||||
{
|
|
||||||
get("/", QJavalinImplementation::dataQuery);
|
|
||||||
post("/", QJavalinImplementation::dataInsert); // todo - internal to that method, if input is a list, do a bulk - else, single.
|
|
||||||
get("/count", QJavalinImplementation::dataCount);
|
|
||||||
|
|
||||||
// todo - add put and/or patch at this level (without a primaryKey) to do a bulk update based on primaryKeys in the records.
|
/////////////////////////
|
||||||
path("/:primaryKey", () ->
|
// table (data) routes //
|
||||||
{
|
/////////////////////////
|
||||||
get("", QJavalinImplementation::dataGet);
|
path("/data/{table}", () ->
|
||||||
patch("", QJavalinImplementation::dataUpdate);
|
{
|
||||||
put("", QJavalinImplementation::dataUpdate); // todo - want different semantics??
|
get("/", QJavalinImplementation::dataQuery);
|
||||||
delete("", QJavalinImplementation::dataDelete);
|
post("/", QJavalinImplementation::dataInsert); // todo - internal to that method, if input is a list, do a bulk - else, single.
|
||||||
});
|
get("/count", QJavalinImplementation::dataCount);
|
||||||
|
get("/export", QJavalinImplementation::dataExportWithoutFilename);
|
||||||
|
get("/export/{filename}", QJavalinImplementation::dataExportWithFilename);
|
||||||
|
|
||||||
|
// todo - add put and/or patch at this level (without a primaryKey) to do a bulk update based on primaryKeys in the records.
|
||||||
|
path("/{primaryKey}", () ->
|
||||||
|
{
|
||||||
|
get("", QJavalinImplementation::dataGet);
|
||||||
|
patch("", QJavalinImplementation::dataUpdate);
|
||||||
|
put("", QJavalinImplementation::dataUpdate); // todo - want different semantics??
|
||||||
|
delete("", QJavalinImplementation::dataDelete);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
////////////////////
|
||||||
|
// process routes //
|
||||||
|
////////////////////
|
||||||
path("", QJavalinProcessHandler.getRoutes());
|
path("", QJavalinProcessHandler.getRoutes());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -221,18 +243,30 @@ public class QJavalinImplementation
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
static void setupSession(Context context, AbstractActionInput request) throws QModuleDispatchException
|
static void setupSession(Context context, AbstractActionInput input) throws QModuleDispatchException
|
||||||
{
|
{
|
||||||
QAuthenticationModuleDispatcher qAuthenticationModuleDispatcher = new QAuthenticationModuleDispatcher();
|
QAuthenticationModuleDispatcher qAuthenticationModuleDispatcher = new QAuthenticationModuleDispatcher();
|
||||||
QAuthenticationModuleInterface authenticationModule = qAuthenticationModuleDispatcher.getQModule(request.getAuthenticationMetaData());
|
QAuthenticationModuleInterface authenticationModule = qAuthenticationModuleDispatcher.getQModule(input.getAuthenticationMetaData());
|
||||||
|
|
||||||
// todo - does this need some per-provider logic actually? mmm...
|
try
|
||||||
Map<String, String> authenticationContext = new HashMap<>();
|
{
|
||||||
authenticationContext.put("sessionId", context.cookie("sessionId"));
|
Map<String, String> authenticationContext = new HashMap<>();
|
||||||
QSession session = authenticationModule.createSession(authenticationContext);
|
authenticationContext.put(SESSION_ID_COOKIE_NAME, context.cookie(SESSION_ID_COOKIE_NAME));
|
||||||
request.setSession(session);
|
QSession session = authenticationModule.createSession(qInstance, authenticationContext);
|
||||||
|
input.setSession(session);
|
||||||
|
|
||||||
context.cookie("sessionId", session.getIdReference(), SESSION_COOKIE_AGE);
|
context.cookie(SESSION_ID_COOKIE_NAME, session.getIdReference(), SESSION_COOKIE_AGE);
|
||||||
|
}
|
||||||
|
catch(QAuthenticationException qae)
|
||||||
|
{
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// if exception caught, clear out the cookie so the frontend will reauthorize //
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
if(authenticationModule instanceof Auth0AuthenticationModule)
|
||||||
|
{
|
||||||
|
context.removeCookie(SESSION_ID_COOKIE_NAME);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -244,7 +278,7 @@ public class QJavalinImplementation
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
String table = context.pathParam("table");
|
String table = context.pathParam("table");
|
||||||
List<Serializable> primaryKeys = new ArrayList<>();
|
List<Serializable> primaryKeys = new ArrayList<>();
|
||||||
primaryKeys.add(context.pathParam("primaryKey"));
|
primaryKeys.add(context.pathParam("primaryKey"));
|
||||||
|
|
||||||
@ -273,9 +307,9 @@ public class QJavalinImplementation
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
String table = context.pathParam("table");
|
String table = context.pathParam("table");
|
||||||
List<QRecord> recordList = new ArrayList<>();
|
List<QRecord> recordList = new ArrayList<>();
|
||||||
QRecord record = new QRecord();
|
QRecord record = new QRecord();
|
||||||
record.setTableName(table);
|
record.setTableName(table);
|
||||||
recordList.add(record);
|
recordList.add(record);
|
||||||
|
|
||||||
@ -317,9 +351,9 @@ public class QJavalinImplementation
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
String table = context.pathParam("table");
|
String table = context.pathParam("table");
|
||||||
List<QRecord> recordList = new ArrayList<>();
|
List<QRecord> recordList = new ArrayList<>();
|
||||||
QRecord record = new QRecord();
|
QRecord record = new QRecord();
|
||||||
record.setTableName(table);
|
record.setTableName(table);
|
||||||
recordList.add(record);
|
recordList.add(record);
|
||||||
|
|
||||||
@ -357,10 +391,10 @@ public class QJavalinImplementation
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
String tableName = context.pathParam("table");
|
String tableName = context.pathParam("table");
|
||||||
QTableMetaData table = qInstance.getTable(tableName);
|
QTableMetaData table = qInstance.getTable(tableName);
|
||||||
String primaryKey = context.pathParam("primaryKey");
|
String primaryKey = context.pathParam("primaryKey");
|
||||||
QueryInput queryInput = new QueryInput(qInstance);
|
QueryInput queryInput = new QueryInput(qInstance);
|
||||||
|
|
||||||
setupSession(context, queryInput);
|
setupSession(context, queryInput);
|
||||||
queryInput.setTableName(tableName);
|
queryInput.setTableName(tableName);
|
||||||
@ -549,31 +583,190 @@ public class QJavalinImplementation
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
private static void dataExportWithFilename(Context context)
|
||||||
|
{
|
||||||
|
String filename = context.pathParam("filename");
|
||||||
|
dataExport(context, Optional.of(filename));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
private static void dataExportWithoutFilename(Context context)
|
||||||
|
{
|
||||||
|
dataExport(context, Optional.empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
private static void dataExport(Context context, Optional<String> optionalFilename)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//////////////////////////////////////////
|
||||||
|
// read params from the request context //
|
||||||
|
//////////////////////////////////////////
|
||||||
|
String tableName = context.pathParam("table");
|
||||||
|
String format = context.queryParam("format");
|
||||||
|
String filter = context.queryParam("filter");
|
||||||
|
Integer limit = integerQueryParam(context, "limit");
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// if a format query param wasn't given, then try to get file extension from file name //
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
if(!StringUtils.hasContent(format) && optionalFilename.isPresent() && StringUtils.hasContent(optionalFilename.get()))
|
||||||
|
{
|
||||||
|
String filename = optionalFilename.get();
|
||||||
|
if(filename.contains("."))
|
||||||
|
{
|
||||||
|
format = filename.substring(filename.lastIndexOf(".") + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ReportFormat reportFormat;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
reportFormat = ReportFormat.fromString(format);
|
||||||
|
}
|
||||||
|
catch(QUserFacingException e)
|
||||||
|
{
|
||||||
|
handleException(HttpStatus.Code.BAD_REQUEST, context, e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String filename = optionalFilename.orElse(tableName + "." + reportFormat.toString().toLowerCase(Locale.ROOT));
|
||||||
|
|
||||||
|
/////////////////////////////////////////////
|
||||||
|
// set up the report action's input object //
|
||||||
|
/////////////////////////////////////////////
|
||||||
|
ReportInput reportInput = new ReportInput(qInstance);
|
||||||
|
setupSession(context, reportInput);
|
||||||
|
reportInput.setTableName(tableName);
|
||||||
|
reportInput.setReportFormat(reportFormat);
|
||||||
|
reportInput.setFilename(filename);
|
||||||
|
reportInput.setLimit(limit);
|
||||||
|
|
||||||
|
String fields = stringQueryParam(context, "fields");
|
||||||
|
if(StringUtils.hasContent(fields))
|
||||||
|
{
|
||||||
|
reportInput.setFieldNames(List.of(fields.split(",")));
|
||||||
|
}
|
||||||
|
|
||||||
|
if(filter != null)
|
||||||
|
{
|
||||||
|
reportInput.setQueryFilter(JsonUtils.toObject(filter, QQueryFilter.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// set up the I/O pipe streams. //
|
||||||
|
// Critically, we must NOT open the outputStream in a try-with-resources. The thread that writes to //
|
||||||
|
// the stream must close it when it's done writing. //
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
PipedOutputStream pipedOutputStream = new PipedOutputStream();
|
||||||
|
PipedInputStream pipedInputStream = new PipedInputStream();
|
||||||
|
pipedOutputStream.connect(pipedInputStream);
|
||||||
|
reportInput.setReportOutputStream(pipedOutputStream);
|
||||||
|
|
||||||
|
ReportAction reportAction = new ReportAction();
|
||||||
|
reportAction.preExecute(reportInput);
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// start the async job. //
|
||||||
|
// Critically, this must happen before the pipedInputStream is passed to the javalin result method //
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
new AsyncJobManager().startJob("Javalin>ReportAction", (o) ->
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
reportAction.execute(reportInput);
|
||||||
|
return (true);
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
pipedOutputStream.write(("Error generating report: " + e.getMessage()).getBytes());
|
||||||
|
pipedOutputStream.close();
|
||||||
|
return (false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
////////////////////////////////////////////
|
||||||
|
// set the response content type & stream //
|
||||||
|
////////////////////////////////////////////
|
||||||
|
context.contentType(reportFormat.getMimeType());
|
||||||
|
context.header("Content-Disposition", "filename=" + filename);
|
||||||
|
context.result(pipedInputStream);
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// we'd like to check to see if the job failed, and if so, to give the user an error... //
|
||||||
|
// but if we "block" here, then piped streams seem to never flush, so we deadlock things. //
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// AsyncJobStatus asyncJobStatus = asyncJobManager.waitForJob(jobUUID);
|
||||||
|
// if(asyncJobStatus.getState().equals(AsyncJobState.ERROR))
|
||||||
|
// {
|
||||||
|
// System.out.println("Well, here we are...");
|
||||||
|
// throw (new QUserFacingException("Error running report: " + asyncJobStatus.getCaughtException().getMessage()));
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
handleException(context, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public static void handleException(Context context, Exception e)
|
public static void handleException(Context context, Exception e)
|
||||||
|
{
|
||||||
|
handleException(null, context, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
public static void handleException(HttpStatus.Code statusCode, Context context, Exception e)
|
||||||
{
|
{
|
||||||
QUserFacingException userFacingException = ExceptionUtils.findClassInRootChain(e, QUserFacingException.class);
|
QUserFacingException userFacingException = ExceptionUtils.findClassInRootChain(e, QUserFacingException.class);
|
||||||
if(userFacingException != null)
|
if(userFacingException != null)
|
||||||
{
|
{
|
||||||
if(userFacingException instanceof QNotFoundException)
|
if(userFacingException instanceof QNotFoundException)
|
||||||
{
|
{
|
||||||
context.status(HttpStatus.NOT_FOUND_404)
|
int code = Objects.requireNonNullElse(statusCode, HttpStatus.Code.NOT_FOUND).getCode();
|
||||||
.result("{\"error\":\"" + userFacingException.getMessage() + "\"}");
|
context.status(code).result("{\"error\":\"" + userFacingException.getMessage() + "\"}");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
LOG.info("User-facing exception", e);
|
LOG.info("User-facing exception", e);
|
||||||
context.status(HttpStatus.INTERNAL_SERVER_ERROR_500)
|
int code = Objects.requireNonNullElse(statusCode, HttpStatus.Code.INTERNAL_SERVER_ERROR).getCode();
|
||||||
.result("{\"error\":\"" + userFacingException.getMessage() + "\"}");
|
context.status(code).result("{\"error\":\"" + userFacingException.getMessage() + "\"}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if(e instanceof QAuthenticationException)
|
||||||
|
{
|
||||||
|
context.status(HttpStatus.UNAUTHORIZED_401).result("{\"error\":\"" + e.getMessage() + "\"}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
// default exception handling //
|
||||||
|
////////////////////////////////
|
||||||
LOG.warn("Exception in javalin request", e);
|
LOG.warn("Exception in javalin request", e);
|
||||||
context.status(HttpStatus.INTERNAL_SERVER_ERROR_500)
|
int code = Objects.requireNonNullElse(statusCode, HttpStatus.Code.INTERNAL_SERVER_ERROR).getCode();
|
||||||
.result("{\"error\":\"" + e.getClass().getSimpleName() + " (" + e.getMessage() + ")\"}");
|
context.status(code).result("{\"error\":\"" + e.getClass().getSimpleName() + " (" + e.getMessage() + ")\"}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ import com.kingsrook.qqq.backend.core.exceptions.QException;
|
|||||||
import com.kingsrook.qqq.backend.core.exceptions.QModuleDispatchException;
|
import com.kingsrook.qqq.backend.core.exceptions.QModuleDispatchException;
|
||||||
import com.kingsrook.qqq.backend.core.exceptions.QUserFacingException;
|
import com.kingsrook.qqq.backend.core.exceptions.QUserFacingException;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.ProcessState;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.ProcessState;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.processes.QUploadedFile;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.RunProcessInput;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.RunProcessInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.RunProcessOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.RunProcessOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QCriteriaOperator;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QCriteriaOperator;
|
||||||
@ -53,12 +54,16 @@ import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
|
|||||||
import com.kingsrook.qqq.backend.core.model.metadata.fields.QFieldMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.fields.QFieldMetaData;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.processes.QProcessMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.processes.QProcessMetaData;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
||||||
|
import com.kingsrook.qqq.backend.core.state.StateType;
|
||||||
|
import com.kingsrook.qqq.backend.core.state.TempFileStateProvider;
|
||||||
|
import com.kingsrook.qqq.backend.core.state.UUIDAndTypeStateKey;
|
||||||
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
||||||
import com.kingsrook.qqq.backend.core.utils.ExceptionUtils;
|
import com.kingsrook.qqq.backend.core.utils.ExceptionUtils;
|
||||||
import com.kingsrook.qqq.backend.core.utils.JsonUtils;
|
import com.kingsrook.qqq.backend.core.utils.JsonUtils;
|
||||||
import com.kingsrook.qqq.backend.core.utils.StringUtils;
|
import com.kingsrook.qqq.backend.core.utils.StringUtils;
|
||||||
import io.javalin.apibuilder.EndpointGroup;
|
import io.javalin.apibuilder.EndpointGroup;
|
||||||
import io.javalin.http.Context;
|
import io.javalin.http.Context;
|
||||||
|
import io.javalin.http.UploadedFile;
|
||||||
import org.apache.commons.lang.NotImplementedException;
|
import org.apache.commons.lang.NotImplementedException;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
@ -87,15 +92,15 @@ public class QJavalinProcessHandler
|
|||||||
{
|
{
|
||||||
path("/processes", () ->
|
path("/processes", () ->
|
||||||
{
|
{
|
||||||
path("/:processName", () ->
|
path("/{processName}", () ->
|
||||||
{
|
{
|
||||||
get("/init", QJavalinProcessHandler::processInit);
|
get("/init", QJavalinProcessHandler::processInit);
|
||||||
post("/init", QJavalinProcessHandler::processInit);
|
post("/init", QJavalinProcessHandler::processInit);
|
||||||
|
|
||||||
path("/:processUUID", () ->
|
path("/{processUUID}", () ->
|
||||||
{
|
{
|
||||||
post("/step/:step", QJavalinProcessHandler::processStep);
|
post("/step/{step}", QJavalinProcessHandler::processStep);
|
||||||
get("/status/:jobUUID", QJavalinProcessHandler::processStatus);
|
get("/status/{jobUUID}", QJavalinProcessHandler::processStatus);
|
||||||
get("/records", QJavalinProcessHandler::processRecords);
|
get("/records", QJavalinProcessHandler::processRecords);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -216,7 +221,7 @@ public class QJavalinProcessHandler
|
|||||||
{
|
{
|
||||||
Throwable rootException = ExceptionUtils.getRootException(exception);
|
Throwable rootException = ExceptionUtils.getRootException(exception);
|
||||||
LOG.warn("Uncaught Exception in process", exception);
|
LOG.warn("Uncaught Exception in process", exception);
|
||||||
resultForCaller.put("error", "Original error message: " + rootException.getMessage());
|
resultForCaller.put("error", "Error message: " + rootException.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -224,11 +229,14 @@ public class QJavalinProcessHandler
|
|||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** take values from query-string params, and put them into the run process request
|
** take values from query-string params, and put them into the run process request
|
||||||
** todo - better from POST body, or with a "field-" type of prefix??
|
** todo - make query params have a "field-" type of prefix??
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
private static void populateRunProcessRequestWithValuesFromContext(Context context, RunProcessInput runProcessInput) throws IOException
|
private static void populateRunProcessRequestWithValuesFromContext(Context context, RunProcessInput runProcessInput) throws IOException
|
||||||
{
|
{
|
||||||
|
//////////////////////////
|
||||||
|
// process query string //
|
||||||
|
//////////////////////////
|
||||||
for(Map.Entry<String, List<String>> queryParam : context.queryParamMap().entrySet())
|
for(Map.Entry<String, List<String>> queryParam : context.queryParamMap().entrySet())
|
||||||
{
|
{
|
||||||
String fieldName = queryParam.getKey();
|
String fieldName = queryParam.getKey();
|
||||||
@ -239,6 +247,37 @@ public class QJavalinProcessHandler
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////
|
||||||
|
// process form/post body //
|
||||||
|
////////////////////////////
|
||||||
|
for(Map.Entry<String, List<String>> formParam : context.formParamMap().entrySet())
|
||||||
|
{
|
||||||
|
String fieldName = formParam.getKey();
|
||||||
|
List<String> values = formParam.getValue();
|
||||||
|
if(CollectionUtils.nullSafeHasContents(values))
|
||||||
|
{
|
||||||
|
runProcessInput.addValue(fieldName, values.get(0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////
|
||||||
|
// process uploaded files //
|
||||||
|
////////////////////////////
|
||||||
|
for(UploadedFile uploadedFile : context.uploadedFiles())
|
||||||
|
{
|
||||||
|
QUploadedFile qUploadedFile = new QUploadedFile();
|
||||||
|
qUploadedFile.setBytes(uploadedFile.getContent().readAllBytes());
|
||||||
|
qUploadedFile.setFilename(uploadedFile.getFilename());
|
||||||
|
|
||||||
|
UUIDAndTypeStateKey key = new UUIDAndTypeStateKey(StateType.UPLOADED_FILE);
|
||||||
|
TempFileStateProvider.getInstance().put(key, qUploadedFile);
|
||||||
|
LOG.info("Stored uploaded file in TempFileStateProvider under key: " + key);
|
||||||
|
runProcessInput.addValue(QUploadedFile.DEFAULT_UPLOADED_FILE_FIELD_NAME, key);
|
||||||
|
}
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////
|
||||||
|
// deal with params that specify an initial-records filter //
|
||||||
|
/////////////////////////////////////////////////////////////
|
||||||
QQueryFilter initialRecordsFilter = buildProcessInitRecordsFilter(context, runProcessInput);
|
QQueryFilter initialRecordsFilter = buildProcessInitRecordsFilter(context, runProcessInput);
|
||||||
if(initialRecordsFilter != null)
|
if(initialRecordsFilter != null)
|
||||||
{
|
{
|
||||||
@ -331,11 +370,12 @@ public class QJavalinProcessHandler
|
|||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public static void processStatus(Context context)
|
public static void processStatus(Context context)
|
||||||
{
|
{
|
||||||
Map<String, Object> resultForCaller = new HashMap<>();
|
|
||||||
|
|
||||||
String processUUID = context.pathParam("processUUID");
|
String processUUID = context.pathParam("processUUID");
|
||||||
String jobUUID = context.pathParam("jobUUID");
|
String jobUUID = context.pathParam("jobUUID");
|
||||||
|
|
||||||
|
Map<String, Object> resultForCaller = new HashMap<>();
|
||||||
|
resultForCaller.put("processUUID", processUUID);
|
||||||
|
|
||||||
LOG.info("Request for status of process " + processUUID + ", job " + jobUUID);
|
LOG.info("Request for status of process " + processUUID + ", job " + jobUUID);
|
||||||
Optional<AsyncJobStatus> optionalJobStatus = new AsyncJobManager().getJobStatus(jobUUID);
|
Optional<AsyncJobStatus> optionalJobStatus = new AsyncJobManager().getJobStatus(jobUUID);
|
||||||
if(optionalJobStatus.isEmpty())
|
if(optionalJobStatus.isEmpty())
|
||||||
@ -412,6 +452,7 @@ public class QJavalinProcessHandler
|
|||||||
Map<String, Object> resultForCaller = new HashMap<>();
|
Map<String, Object> resultForCaller = new HashMap<>();
|
||||||
List<QRecord> recordPage = CollectionUtils.safelyGetPage(records, skip, limit);
|
List<QRecord> recordPage = CollectionUtils.safelyGetPage(records, skip, limit);
|
||||||
resultForCaller.put("records", recordPage);
|
resultForCaller.put("records", recordPage);
|
||||||
|
resultForCaller.put("totalRecords", records.size());
|
||||||
context.result(JsonUtils.toJson(resultForCaller));
|
context.result(JsonUtils.toJson(resultForCaller));
|
||||||
}
|
}
|
||||||
catch(Exception e)
|
catch(Exception e)
|
||||||
|
@ -27,6 +27,7 @@ import java.net.URLEncoder;
|
|||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.actions.reporting.ReportFormat;
|
||||||
import com.kingsrook.qqq.backend.core.utils.JsonUtils;
|
import com.kingsrook.qqq.backend.core.utils.JsonUtils;
|
||||||
import kong.unirest.HttpResponse;
|
import kong.unirest.HttpResponse;
|
||||||
import kong.unirest.Unirest;
|
import kong.unirest.Unirest;
|
||||||
@ -34,6 +35,7 @@ import org.eclipse.jetty.http.HttpStatus;
|
|||||||
import org.json.JSONArray;
|
import org.json.JSONArray;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotEquals;
|
import static org.junit.jupiter.api.Assertions.assertNotEquals;
|
||||||
@ -52,8 +54,6 @@ class QJavalinImplementationTest extends QJavalinTestBase
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** test the top-level meta-data endpoint
|
** test the top-level meta-data endpoint
|
||||||
**
|
**
|
||||||
@ -269,7 +269,7 @@ class QJavalinImplementationTest extends QJavalinTestBase
|
|||||||
@Test
|
@Test
|
||||||
public void test_dataQueryWithFilter()
|
public void test_dataQueryWithFilter()
|
||||||
{
|
{
|
||||||
String filterJson = "{\"criteria\":[{\"fieldName\":\"firstName\",\"operator\":\"EQUALS\",\"values\":[\"Tim\"]}]}";
|
String filterJson = getFirstNameEqualsTimFilterJSON();
|
||||||
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person?filter=" + URLEncoder.encode(filterJson, StandardCharsets.UTF_8)).asString();
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person?filter=" + URLEncoder.encode(filterJson, StandardCharsets.UTF_8)).asString();
|
||||||
|
|
||||||
assertEquals(200, response.getStatus());
|
assertEquals(200, response.getStatus());
|
||||||
@ -284,6 +284,17 @@ class QJavalinImplementationTest extends QJavalinTestBase
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
private String getFirstNameEqualsTimFilterJSON()
|
||||||
|
{
|
||||||
|
return """
|
||||||
|
{"criteria":[{"fieldName":"firstName","operator":"EQUALS","values":["Tim"]}]}""";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** test an insert
|
** test an insert
|
||||||
**
|
**
|
||||||
@ -362,8 +373,7 @@ class QJavalinImplementationTest extends QJavalinTestBase
|
|||||||
|
|
||||||
JSONObject jsonObject = JsonUtils.toJSONObject(response.getBody());
|
JSONObject jsonObject = JsonUtils.toJSONObject(response.getBody());
|
||||||
assertNotNull(jsonObject);
|
assertNotNull(jsonObject);
|
||||||
assertEquals(1, jsonObject.getJSONArray("records").length());
|
assertEquals(1, jsonObject.getInt("deletedRecordCount"));
|
||||||
assertEquals(3, jsonObject.getJSONArray("records").getJSONObject(0).getJSONObject("values").getInt("id"));
|
|
||||||
TestUtils.runTestSql("SELECT id FROM person", (rs -> {
|
TestUtils.runTestSql("SELECT id FROM person", (rs -> {
|
||||||
int rowsFound = 0;
|
int rowsFound = 0;
|
||||||
while(rs.next())
|
while(rs.next())
|
||||||
@ -375,4 +385,89 @@ class QJavalinImplementationTest extends QJavalinTestBase
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportCsvPerFileName()
|
||||||
|
{
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/MyPersonExport.csv").asString();
|
||||||
|
assertEquals(200, response.getStatus());
|
||||||
|
assertEquals("text/csv", response.getHeaders().get("Content-Type").get(0));
|
||||||
|
assertEquals("filename=MyPersonExport.csv", response.getHeaders().get("Content-Disposition").get(0));
|
||||||
|
String[] csvLines = response.getBody().split("\n");
|
||||||
|
assertEquals(6, csvLines.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportNoFormat()
|
||||||
|
{
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/").asString();
|
||||||
|
assertEquals(HttpStatus.BAD_REQUEST_400, response.getStatus());
|
||||||
|
assertThat(response.getBody()).contains("Report format was not specified");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportExcelPerFormatQueryParam()
|
||||||
|
{
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/?format=xlsx").asString();
|
||||||
|
assertEquals(200, response.getStatus());
|
||||||
|
assertEquals(ReportFormat.XLSX.getMimeType(), response.getHeaders().get("Content-Type").get(0));
|
||||||
|
assertEquals("filename=person.xlsx", response.getHeaders().get("Content-Disposition").get(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportFilterQueryParam()
|
||||||
|
{
|
||||||
|
String filterJson = getFirstNameEqualsTimFilterJSON();
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/Favorite People.csv?filter=" + URLEncoder.encode(filterJson, StandardCharsets.UTF_8)).asString();
|
||||||
|
assertEquals("filename=Favorite People.csv", response.getHeaders().get("Content-Disposition").get(0));
|
||||||
|
String[] csvLines = response.getBody().split("\n");
|
||||||
|
assertEquals(2, csvLines.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportFieldsQueryParam()
|
||||||
|
{
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/People.csv?fields=id,birthDate").asString();
|
||||||
|
String[] csvLines = response.getBody().split("\n");
|
||||||
|
assertEquals("""
|
||||||
|
"Id","Birth Date\"""", csvLines[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testExportSupportedFormat()
|
||||||
|
{
|
||||||
|
HttpResponse<String> response = Unirest.get(BASE_URL + "/data/person/export/?format=docx").asString();
|
||||||
|
assertEquals(HttpStatus.BAD_REQUEST_400, response.getStatus());
|
||||||
|
assertThat(response.getBody()).contains("Unsupported report format");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -28,10 +28,11 @@ import java.util.List;
|
|||||||
import com.kingsrook.qqq.backend.core.exceptions.QException;
|
import com.kingsrook.qqq.backend.core.exceptions.QException;
|
||||||
import com.kingsrook.qqq.backend.core.exceptions.QValueException;
|
import com.kingsrook.qqq.backend.core.exceptions.QValueException;
|
||||||
import com.kingsrook.qqq.backend.core.actions.processes.BackendStep;
|
import com.kingsrook.qqq.backend.core.actions.processes.BackendStep;
|
||||||
|
import com.kingsrook.qqq.backend.core.model.metadata.QAuthenticationType;
|
||||||
import com.kingsrook.qqq.backend.core.processes.implementations.mock.MockBackendStep;
|
import com.kingsrook.qqq.backend.core.processes.implementations.mock.MockBackendStep;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.RunBackendStepInput;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.RunBackendStepInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.processes.RunBackendStepOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.processes.RunBackendStepOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.QAuthenticationMetaData;
|
import com.kingsrook.qqq.backend.core.modules.authentication.metadata.QAuthenticationMetaData;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeReference;
|
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeReference;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeType;
|
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeType;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeUsage;
|
import com.kingsrook.qqq.backend.core.model.metadata.code.QCodeUsage;
|
||||||
@ -134,7 +135,7 @@ public class TestUtils
|
|||||||
{
|
{
|
||||||
return new QAuthenticationMetaData()
|
return new QAuthenticationMetaData()
|
||||||
.withName("mock")
|
.withName("mock")
|
||||||
.withType("mock");
|
.withType(QAuthenticationType.MOCK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user