blob: 6f267396e603afbcc9dbe8805a434fc00ea086b8 [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.xtext.builder.participant.tests;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.knowhowlab.osgi.testing.assertions.OSGiAssert.setDefaultBundleContext;
import static org.knowhowlab.osgi.testing.utils.ServiceUtils.getService;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.knowhowlab.osgi.testing.utils.BundleUtils;
import org.eclipse.osbp.ecview.core.common.model.core.YView;
import org.eclipse.osbp.ecview.xtext.builder.participant.IECViewAddonsMetadataService;
import org.eclipse.osbp.xtext.builder.metadata.services.IMetadataBuilderService;
import org.osgi.framework.BundleException;
public class UiModelBuilderParticipantTests {
private static final String VIEWSET_FQN = "myViewSet";
private static final int TIME_15000 = 15000;
private static final int TIME_1000 = 1000;
@Before
public void setup() throws BundleException {
setDefaultBundleContext(Activator.context);
BundleUtils.startBundleAsync(Activator.context,
"org.eclipse.osbp.ecview.xtext.builder.participant");
BundleUtils.startBundleAsync(Activator.context,
"org.eclipse.osbp.xtext.builder.metadata.services");
IMetadataBuilderService service = getService(Activator.context,
IMetadataBuilderService.class, TIME_15000);
assertNotNull(service);
}
@Test
public void testAccessEntity() throws Exception {
IECViewAddonsMetadataService service = getService(Activator.context,
IECViewAddonsMetadataService.class, TIME_1000);
assertNotNull(service);
YView view = service.getViewMetadata("org.my.test.haha");
assertNotNull(view);
List<String> names = service.getIDEViewNames("org.my.test", true);
assertTrue(names.contains("org.my.test.haha"));
assertTrue(names.contains("org.my.test.child.huhu"));
}
}