blob: 717f5334ee624d8ad28386c49d6cfb81ea708b33 [file] [log] [blame]
package org.eclipse.basyx.examples.snippets.aas;
import static org.junit.Assert.assertEquals;
import org.eclipse.basyx.aas.metamodel.map.AssetAdministrationShell;
import org.eclipse.basyx.aas.metamodel.map.descriptor.AASDescriptor;
import org.eclipse.basyx.aas.registration.proxy.AASRegistryProxy;
import org.eclipse.basyx.examples.snippets.AbstractSnippetTest;
import org.eclipse.basyx.examples.support.ExampleComponentBuilder;
import org.junit.Test;
/**
* Test for the RegisterAAS snippet
*
* @author conradi
*
*/
public class TestRegisterAAS extends AbstractSnippetTest {
protected static final String NEW_AAS_ID_SHORT = "aasIdShort_New";
protected static final String NEW_AAS_ID = "aasId_New";
protected static final String NEW_AAS_ENDPOINT = "http://localhost:8080/aasComponent/shells/" + NEW_AAS_ID + "/aas";
@Test
public void testRegisterAAS() {
// Get the example AAS
AssetAdministrationShell aas = ExampleComponentBuilder.buildExampleAAS(NEW_AAS_ID_SHORT, NEW_AAS_ID);
// Register this AAS
RegisterAAS.registerAAS(aas, NEW_AAS_ENDPOINT, registryComponent.getRegistryPath());
// Check if the AAS was correctly registered
AASRegistryProxy registryProxy = new AASRegistryProxy(registryComponent.getRegistryPath());
AASDescriptor descriptor = registryProxy.lookupAAS(aas.getIdentification());
assertEquals(NEW_AAS_ENDPOINT, descriptor.getFirstEndpoint());
}
}