+
+
+
+
+
diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/test/java/org/alfresco/transformer/AIOControllerTest.java b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/test/java/org/alfresco/transformer/AIOControllerTest.java
new file mode 100644
index 00000000..bdba93ac
--- /dev/null
+++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/test/java/org/alfresco/transformer/AIOControllerTest.java
@@ -0,0 +1,67 @@
+/*
+ * #%L
+ * Alfresco Transform Core
+ * %%
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+package org.alfresco.transformer;
+
+
+import java.io.IOException;
+
+import org.alfresco.transform.client.model.TransformRequest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@WebMvcTest(AIOController.class)
+public class AIOControllerTest //extends AbstractTransformerControllerTest
+{
+
+ //@Override
+ protected void mockTransformCommand(String sourceExtension, String targetExtension, String sourceMimetype,
+ boolean readTargetFileBytes) throws IOException {
+ // TODO Auto-generated method stub
+
+ }
+
+ //@Override
+ protected AbstractTransformerController getController() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ //@Override
+ protected void updateTransformRequestWithSpecificOptions(TransformRequest transformRequest) {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Test
+ public void emptyTest()
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile b/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile
index 961f546d..734d0169 100644
--- a/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile
+++ b/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile
@@ -9,7 +9,7 @@ ENV JAVA_OPTS=""
ARG GROUPNAME=Alfresco
ARG GROUPID=1000
ARG MISCUSERNAME=transform-misc
-ARG USERID=33004
+ARG USERID=33006
COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin
diff --git a/pom.xml b/pom.xml
index 1e125721..13c6d0de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,6 +43,7 @@
alfresco-transform-misc/alfresco-transform-miscalfresco-transform-misc/alfresco-transform-misc-bootalfresco-transform-core-aio/alfresco-transform-core-aio
+ alfresco-transform-core-aio/alfresco-transform-core-aio-boot