|
1 | 1 | package info.unterrainer.commons.httpserver;
|
2 | 2 |
|
| 3 | +import java.util.concurrent.LinkedBlockingQueue; |
| 4 | +import java.util.concurrent.ThreadPoolExecutor; |
| 5 | +import java.util.concurrent.TimeUnit; |
| 6 | + |
3 | 7 | import org.junit.jupiter.api.Test;
|
4 | 8 |
|
| 9 | +import info.unterrainer.commons.httpserver.accessmanager.RoleBuilder; |
| 10 | +import info.unterrainer.commons.httpserver.daos.JpqlDao; |
| 11 | +import info.unterrainer.commons.httpserver.enums.Endpoint; |
| 12 | +import info.unterrainer.commons.httpserver.scripts.LocalTestServer; |
| 13 | +import info.unterrainer.commons.httpserver.scripts.jpas.TestJpa; |
| 14 | +import info.unterrainer.commons.httpserver.scripts.jsons.TestJson; |
| 15 | +import info.unterrainer.commons.rdbutils.RdbUtils; |
| 16 | +import info.unterrainer.commons.rdbutils.exceptions.RdbUtilException; |
| 17 | +import info.unterrainer.commons.serialization.jsonmapper.JsonMapper; |
| 18 | +import info.unterrainer.commons.serialization.objectmapper.ObjectMapper; |
| 19 | +import jakarta.persistence.EntityManagerFactory; |
| 20 | + |
5 | 21 | public class HttpServerTests {
|
6 | 22 |
|
7 | 23 | @Test
|
8 |
| - public void test() { |
| 24 | + public void test() throws RdbUtilException { |
| 25 | + EntityManagerFactory emf; |
| 26 | + emf = RdbUtils.createAutoclosingEntityManagerFactory(LocalTestServer.class, "test"); |
| 27 | + JsonMapper jsonMapper = JsonMapper.create(); |
| 28 | + ObjectMapper objectMapper = new ObjectMapper(); |
| 29 | + ThreadPoolExecutor executorService = new ThreadPoolExecutor(20, 20, 60L, TimeUnit.SECONDS, |
| 30 | + new LinkedBlockingQueue<Runnable>()); |
| 31 | + executorService.allowCoreThreadTimeOut(true); |
| 32 | + HttpServer server = HttpServer.builder() |
| 33 | + .applicationName("elite-server") |
| 34 | + .jsonMapper(jsonMapper) |
| 35 | + .objectMapper(objectMapper) |
| 36 | + .executorService(executorService) |
| 37 | + .appVersionFqns(new String[] { "at.elitezettl.server.eliteserver.Information", |
| 38 | + "info.unterrainer.commons.httpserver.Information", |
| 39 | + "at.elitezettl.commons.opcuabrowser.Information", |
| 40 | + "info.unterrainer.commons.crontabscheduler.Information", |
| 41 | + "info.unterrainer.commons.jreutils.Information", |
| 42 | + "info.unterrainer.commons.rdbutils.Information", |
| 43 | + "info.unterrainer.commons.serialization.Information" }) |
| 44 | + .build(); |
| 45 | + JpqlDao<TestJpa> basicDao = new JpqlDao<>(emf, TestJpa.class); |
| 46 | + server.handlerGroupFor(TestJpa.class, TestJson.class, basicDao) |
| 47 | + .path("tests") |
| 48 | + .endpoints(Endpoint.ALL) |
| 49 | + .addRoleFor(Endpoint.ALL, RoleBuilder.open()) |
| 50 | + .add(); |
9 | 51 | }
|
10 | 52 | }
|
0 commit comments