blob: 73e8dacca53e42bdc6b8a8e559f474cc8d320e0b [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.PhysicalDimension;
import org.eclipse.mdm.api.base.model.Unit;
import org.eclipse.mdm.businessobjects.utils.ServiceUtils;
import org.junit.AfterClass;
import org.junit.BeforeClass;
/**
* Test class for UnitResource.
*
* @author Alexander Nehmer, science+computing AG Tuebingen (Atos SE)
* @see EntityResourceIntegrationTest
*
*/
public class UnitResourceIntegrationTest extends EntityResourceIntegrationTest {
@BeforeClass
public static void prepareTestData() {
getLogger().debug("Preparing UnitResourceIntegrationTest");
// prepare test data for creating the PhysicalDimension
PhysicalDimensionResourceIntegrationTest.prepareTestData();
PhysicalDimensionResourceIntegrationTest.createEntity();
// set up test data
setContextClass(UnitResourceIntegrationTest.class);
putTestDataValue(TESTDATA_RESOURCE_URI, "/units");
putTestDataValue(TESTDATA_ENTITY_NAME, "testUnit");
putTestDataValue(TESTDATA_ENTITY_TYPE, "Unit");
PhysicalDimension physDim = ENTITY_FACTORY.createPhysicalDimension(getTestDataValue(TESTDATA_ENTITY_NAME));
ServiceUtils.getCore(physDim)
.setID(getTestDataValue(PhysicalDimensionResourceIntegrationTest.class, TESTDATA_ENTITY_ID));
Unit unit = ENTITY_FACTORY.createUnit(getTestDataValue(TESTDATA_ENTITY_NAME), physDim);
putTestDataValue(TESTDATA_CREATE_JSON_BODY, toJson(unit));
}
@AfterClass
public static void tearDownAfterClass() {
setContextClass(PhysicalDimensionResourceIntegrationTest.class);
PhysicalDimensionResourceIntegrationTest.deleteEntity();
}
}