blob: 26653cce4a13cc093a0b3a5b352d9d782a8babef [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.vab.protocol.basyx;
import static org.junit.Assert.assertFalse;
import java.util.Set;
import org.eclipse.basyx.testsuite.regression.vab.modelprovider.SimpleVABElement;
import org.eclipse.basyx.testsuite.regression.vab.modelprovider.TestProvider;
import org.eclipse.basyx.vab.manager.VABConnectionManager;
import org.eclipse.basyx.vab.modelprovider.map.VABMapProvider;
import org.eclipse.basyx.vab.protocol.basyx.connector.BaSyxConnector;
import org.eclipse.basyx.vab.protocol.basyx.connector.BaSyxConnectorProvider;
import org.eclipse.basyx.vab.protocol.basyx.server.VABBaSyxTCPInterface;
import org.junit.Rule;
import org.junit.Test;
/**
* Test VAB using the BaSyx protocol. This is an integration test
*
* @author schnicke, pschorn
*
*/
public class TestVABBaSyxTCP extends TestProvider {
protected VABConnectionManager connManager = new VABConnectionManager(new TestsuiteDirectory_BaSyxNative(),
new BaSyxConnectorProvider());
@Rule
public VABTCPServerResource res = new VABTCPServerResource(new VABMapProvider(new SimpleVABElement()));
@Override
protected VABConnectionManager getConnectionManager() {
return connManager;
}
/**
* Tests if a call to {@link BaSyxConnector#closeConnection} of the
* BaSyxConnector also terminates the thread on the server side
*
* @throws InterruptedException
*/
@Test
public void testSuccessfulShutdown() throws InterruptedException {
BaSyxConnector connector = new BaSyxConnector("localhost", 6998);
connector.getModelPropertyValue("integer");
// Wait until thread is closed on server
Thread.sleep(100);
// Ensure that thread is closed
Set<Thread> threads = Thread.getAllStackTraces().keySet();
assertFalse(threads.stream().anyMatch(t -> t.getName().contains(VABBaSyxTCPInterface.class.getName())));
}
}