blob: 0e16c590589ea4d7de8e272ab7fd3118feca6f48 [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.freetextindexer.entities;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.eclipse.mdm.api.base.model.Quantity;
import org.eclipse.mdm.api.base.model.TestStep;
import org.eclipse.mdm.api.base.query.DataAccessException;
import org.eclipse.mdm.api.dflt.EntityManager;
import org.junit.Ignore;
import org.junit.Test;
public class MDMEntityResponseTest {
@Ignore
@Test
public void notContextDescribale_noContext() {
Quantity q = mock(Quantity.class);
EntityManager manager = mock(EntityManager.class);
MDMEntityResponse response = MDMEntityResponse.build(Quantity.class, q, manager);
assertTrue(response.data.attributes.isEmpty());
}
@Ignore
@Test
public void buildFails_nullIsReturned() throws DataAccessException {
TestStep ts = mock(TestStep.class);
EntityManager manager = mock(EntityManager.class);
when(manager.loadContexts(eq(ts), any())).thenThrow(new DataAccessException("test"));
assertNull(MDMEntityResponse.build(TestStep.class, ts, manager));
}
}