blob: 0fb1ba50d6c83ea9cb30067f6e8b9cc334e9c313 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.testsuite.regression.aas.registration.restapi;
import org.eclipse.basyx.aas.registration.api.IAASRegistryService;
import org.eclipse.basyx.aas.registration.proxy.AASRegistryProxy;
import org.eclipse.basyx.testsuite.regression.aas.registration.TestRegistryProviderSuite;
import org.eclipse.basyx.testsuite.regression.vab.protocol.http.AASHTTPServerResource;
import org.eclipse.basyx.vab.protocol.http.server.BaSyxContext;
import org.junit.Rule;
/**
* Test
*
* @author espen
*
*/
public class TestDirectoryModelProviderServlet extends TestRegistryProviderSuite {
/**
* Makes sure Tomcat Server is started after before each test case
* Initializes a new directory provider servlet
*/
@Rule
public AASHTTPServerResource res = new AASHTTPServerResource(
new BaSyxContext("/basys.sdk", System.getProperty("java.io.tmpdir"))
.addServletMapping("/Testsuite/directory/*", new DirectoryProviderServlet()));
@Override
protected IAASRegistryService getRegistryService() {
return new AASRegistryProxy("http://localhost:8080/basys.sdk/Testsuite/directory");
}
}