blob: ea7c3bf8c3307705a5f707ce3114075117ff80d5 [file] [log] [blame]
package org.eclipse.basyx.examples.snippets.submodel;
import static org.junit.Assert.assertEquals;
import org.eclipse.basyx.aas.metamodel.map.AssetAdministrationShell;
import org.eclipse.basyx.aas.metamodel.map.descriptor.SubmodelDescriptor;
import org.eclipse.basyx.aas.registration.proxy.AASRegistryProxy;
import org.eclipse.basyx.examples.snippets.AbstractSnippetTest;
import org.eclipse.basyx.examples.snippets.aas.RegisterAAS;
import org.eclipse.basyx.examples.support.ExampleComponentBuilder;
import org.eclipse.basyx.submodel.metamodel.map.SubModel;
import org.junit.Test;
/**
* Test for the RegisterSubmodel snippet
*
* @author conradi
*
*/
public class TestRegisterSubmodel extends AbstractSnippetTest {
private static final String NEW_SM_ID_SHORT = "smIdShort_New";
private static final String NEW_SM_ID = "smId_New";
private static final String NEW_SM_ENDPOINT = "http://localhost:8080/aasComponent/" + NEW_SM_ID_SHORT + "/submodel";
@Test
public void testRegisterSubmodel() {
// Get the example AAS and Submodel
AssetAdministrationShell aas = ExampleComponentBuilder.buildExampleAAS(AAS_ID_SHORT, AAS_ID);
SubModel sm = ExampleComponentBuilder.buildExampleSubmodel(NEW_SM_ID_SHORT, NEW_SM_ID);
// Register this AAS
RegisterAAS.registerAAS(aas, AAS_ENDPOINT, registryComponent.getRegistryPath());
// Register this Submodel
RegisterSubmodel.registerSubmodel(sm, NEW_SM_ENDPOINT, aas.getIdentification(), registryComponent.getRegistryPath());
// Check if the Submodel was correctly registered
AASRegistryProxy registryProxy = new AASRegistryProxy(registryComponent.getRegistryPath());
SubmodelDescriptor descriptor = registryProxy.lookupSubmodel(aas.getIdentification(), sm.getIdentification());
assertEquals(NEW_SM_ENDPOINT, descriptor.getFirstEndpoint());
}
}