blob: 01724ea0ea70380d07af1731acf13c04ff2b53fa [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2018 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.api.base.model.ValueType;
import org.eclipse.mdm.api.dflt.model.CatalogAttribute;
import org.eclipse.mdm.api.dflt.model.CatalogComponent;
import org.eclipse.mdm.businessobjects.utils.ServiceUtils;
import org.junit.AfterClass;
import org.junit.BeforeClass;
/**
* Test class for CatalogAttributeResource for UnitUnderTest
* {@link ContextType}.
*
* @author Alexander Nehmer, science+computing AG Tuebingen (Atos SE)
* @see EntityResourceIntegrationTest
*
*/
public class CatalogAttributeUUTResourceIntegrationTest extends EntityResourceIntegrationTest {
@BeforeClass
public static void prepareTestData() {
getLogger().debug("Preparing CatalogAttributeUUTResourceIntegrationTest");
// prepare test data for creating the CatalogComponent
CatalogComponentUUTResourceIntegrationTest.prepareTestData();
CatalogComponentUUTResourceIntegrationTest.createEntity();
// prepare test data for creating the ValueList to reference
ValueListResourceIntegrationTest.prepareTestData();
ValueListResourceIntegrationTest.createEntity();
// set up test data
setContextClass(CatalogAttributeUUTResourceIntegrationTest.class);
putTestDataValue(TESTDATA_RESOURCE_URI, "/catcomps/unitundertest/"
+ getTestDataValue(CatalogComponentUUTResourceIntegrationTest.class, TESTDATA_ENTITY_ID) + "/catattrs");
putTestDataValue(TESTDATA_ENTITY_NAME, "testCatAttrUUT");
putTestDataValue(TESTDATA_ENTITY_TYPE, "CatalogAttribute");
CatalogComponent catComp = ENTITY_FACTORY.createCatalogComponent(ContextType.UNITUNDERTEST,
getTestDataValue(CatalogComponentUUTResourceIntegrationTest.class, TESTDATA_ENTITY_NAME));
ServiceUtils.getCore(catComp)
.setID(getTestDataValue(CatalogComponentUUTResourceIntegrationTest.class, TESTDATA_ENTITY_ID));
CatalogAttribute catAttr = ENTITY_FACTORY.createCatalogAttribute(getTestDataValue(TESTDATA_ENTITY_NAME),
ValueType.STRING, catComp);
putTestDataValue(TESTDATA_CREATE_JSON_BODY, toJson(catAttr));
}
@AfterClass
public static void tearDownAfterClass() {
setContextClass(CatalogComponentUUTResourceIntegrationTest.class);
CatalogComponentUUTResourceIntegrationTest.deleteEntity();
setContextClass(ValueListResourceIntegrationTest.class);
ValueListResourceIntegrationTest.deleteEntity();
}
}