blob: 45535fda7294accaa7455156db551da3d02fa7ad [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.businessobjects.boundary.integrationtest;
import org.eclipse.mdm.api.base.model.ContextType;
import org.eclipse.mdm.businessobjects.boundary.ResourceConstants;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
/**
* Test class for NestedTemplateComponentResource for TestEquipment
* {@link ContextType}.
*
* @author Alexander Nehmer, science+computing AG Tuebingen (Atos SE)
* @see EntityResourceIntegrationTest
*
*/
public class NestedTemplateComponentTEQResourceIntegrationTest extends EntityResourceIntegrationTest {
@BeforeClass
public static void prepareTestData() {
getLogger().debug("Preparing NestedTemplateComponentTEQResourceIntegrationTest");
// prepare test data for creating the CatalogComponent
CatalogComponentTEQResourceIntegrationTest.prepareTestData();
CatalogComponentTEQResourceIntegrationTest.createEntity();
// prepare test data for creating the TemplateRoot
TemplateComponentTEQResourceIntegrationTest.prepareTestData();
TemplateComponentTEQResourceIntegrationTest.createEntity();
// set up test data
setContextClass(NestedTemplateComponentTEQResourceIntegrationTest.class);
putTestDataValue(TESTDATA_RESOURCE_URI, "/tplroots/testequipment/"
+ getTestDataValue(TemplateRootTEQResourceIntegrationTest.class, TESTDATA_ENTITY_ID) + "/tplcomps/"
+ getTestDataValue(TemplateComponentTEQResourceIntegrationTest.class, TESTDATA_ENTITY_ID)
+ "/tplcomps");
putTestDataValue(TESTDATA_ENTITY_NAME, "testNestedTplCompTEQ");
putTestDataValue(TESTDATA_ENTITY_TYPE, "TemplateComponent");
JsonObject json = new JsonObject();
json.add(ResourceConstants.ENTITYATTRIBUTE_NAME, new JsonPrimitive(getTestDataValue(TESTDATA_ENTITY_NAME)));
json.add(ResourceConstants.ENTITYATTRIBUTE_CATALOGCOMPONENT_ID, new JsonPrimitive(
getTestDataValue(CatalogComponentTEQResourceIntegrationTest.class, TESTDATA_ENTITY_ID)));
putTestDataValue(TESTDATA_CREATE_JSON_BODY, json.toString());
}
@AfterClass
public static void tearDownAfterClass() {
setContextClass(TemplateComponentTEQResourceIntegrationTest.class);
TemplateComponentTEQResourceIntegrationTest.deleteEntity();
setContextClass(TemplateRootTEQResourceIntegrationTest.class);
TemplateRootTEQResourceIntegrationTest.deleteEntity();
setContextClass(CatalogComponentTEQResourceIntegrationTest.class);
CatalogComponentTEQResourceIntegrationTest.deleteEntity();
}
}