blob: 862f7628efd85129f2df117bddc90ff3079063b6 [file] [log] [blame]
/**
* Copyright (c) 2012, 2015 - Lunifera GmbH (Austria), Loetz GmbH&Co.KG and others.
* 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 API and implementation
*/
package org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.tests.presentation;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import org.junit.Before;
import org.junit.Test;
import org.eclipse.osbp.ecview.core.common.context.ContextException;
import org.eclipse.osbp.ecview.core.common.context.IViewContext;
import org.eclipse.osbp.ecview.core.common.editpart.DelegatingEditPartManager;
import org.eclipse.osbp.ecview.core.common.editpart.IElementEditpart;
import org.eclipse.osbp.ecview.core.common.editpart.IEmbeddableEditpart;
import org.eclipse.osbp.ecview.core.common.editpart.IViewEditpart;
import org.eclipse.osbp.ecview.core.common.model.binding.YBeanValueBindingEndpoint;
import org.eclipse.osbp.ecview.core.common.model.binding.YBindingSet;
import org.eclipse.osbp.ecview.core.common.model.core.YElement;
import org.eclipse.osbp.ecview.core.common.model.core.YView;
import org.eclipse.osbp.ecview.core.common.presentation.IWidgetPresentation;
import org.eclipse.osbp.ecview.core.extension.model.extension.YGridLayout;
import org.eclipse.osbp.ecview.core.extension.model.extension.YLabel;
import org.eclipse.osbp.ecview.core.extension.model.extension.util.SimpleExtensionModelFactory;
import org.eclipse.osbp.ecview.core.ui.core.editparts.extension.ILabelEditpart;
import org.eclipse.osbp.runtime.common.i18n.II18nService;
import org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.VaadinRenderer;
import org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.common.AbstractVaadinWidgetPresenter;
import org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.internal.LabelPresentation;
import org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.tests.model.ValueBean;
import org.osgi.framework.BundleException;
import org.osgi.service.cm.ConfigurationException;
import com.vaadin.ui.Component;
import com.vaadin.ui.CssLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI;
/**
* Tests the {@link LabelPresentation}.
*/
@SuppressWarnings("restriction")
public class LabelPresentationTests {
private SimpleExtensionModelFactory factory = new SimpleExtensionModelFactory();
private CssLayout rootLayout = new CssLayout();
/**
* Setup tests.
*
* @throws ConfigurationException
* @throws BundleException
*/
@Before
public void setup() throws ConfigurationException, BundleException {
UI.setCurrent(new DefaultUI());
UI.getCurrent().setContent(rootLayout);
}
/**
* Tests rendering issues.
*
* @throws Exception
*/
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_isRendered_unrender_byModel() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
// ...> yView
// ......> yGridLayout
// .........> yLabel
YView yView = factory.createView();
YGridLayout yGridlayout = factory.createGridLayout();
yView.setContent(yGridlayout);
YLabel yLabel = factory.createLabel();
yGridlayout.getElements().add(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart textEditpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = textEditpart
.getPresentation();
assertTrue(presentation.isRendered());
assertFalse(presentation.isDisposed());
yGridlayout.getElements().remove(yLabel);
assertFalse(presentation.isRendered());
assertFalse(presentation.isDisposed());
}
/**
* Tests the internal structure.
*
* @throws Exception
*/
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_InternalStructure() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
// ...> yView
// ......> yLabel
YView yView = factory.createView();
YLabel yLabel = factory.createLabel();
yView.setContent(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart textEditpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = textEditpart
.getPresentation();
Label label = (Label) presentation.getWidget();
assertNotNull(label);
}
/**
* Test the internal structure based on CSS.
*
* @throws Exception
*/
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_InternalStructure__CSS() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
// ...> yView
// ......> yLabel
YView yView = factory.createView();
YGridLayout yLayout = factory.createGridLayout();
yView.setContent(yLayout);
YLabel yLabel1 = factory.createLabel();
yLabel1.setCssID("ID_0815");
yLabel1.setCssClass("anyOtherClass");
yLayout.getElements().add(yLabel1);
YLabel yLabel2 = factory.createLabel();
yLayout.getElements().add(yLabel2);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart text1Editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel1);
ILabelEditpart text2Editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel2);
IWidgetPresentation<Component> text1Presentation = text1Editpart
.getPresentation();
IWidgetPresentation<Component> text2Presentation = text2Editpart
.getPresentation();
Label label1 = (Label) text1Presentation.getWidget();
Label label2 = (Label) text2Presentation.getWidget();
// assert css class
assertTrue(label1.getStyleName().contains("anyOtherClass"));
assertTrue(label2.getStyleName().contains(
AbstractVaadinWidgetPresenter.CSS_CLASS_CONTROL));
// assert css id
assertEquals("ID_0815", label1.getId());
assertEquals(text2Editpart.getId(), label2.getId());
}
/**
* Test the internal structure based on CSS.
*
* @throws Exception
*/
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_Bindings() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
// ...> yView
// ......> yLabel
YView yView = factory.createView();
YGridLayout yLayout = factory.createGridLayout();
yView.setContent(yLayout);
YLabel yLabel1 = factory.createLabel();
yLayout.getElements().add(yLabel1);
YLabel yLabel2 = factory.createLabel();
yLayout.getElements().add(yLabel2);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart label1Editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel1);
ILabelEditpart label2Editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel2);
IWidgetPresentation<Component> text1Presentation = label1Editpart
.getPresentation();
IWidgetPresentation<Component> text2Presentation = label2Editpart
.getPresentation();
Label label1 = (Label) text1Presentation.getWidget();
Label label2 = (Label) text2Presentation.getWidget();
// start tests
//
assertTrue(label1.isVisible());
assertTrue(label1.isEnabled());
assertFalse(label1.isReadOnly());
assertTrue(label2.isVisible());
assertTrue(label2.isEnabled());
assertFalse(label2.isReadOnly());
yLabel1.setVisible(false);
assertFalse(label1.isVisible());
yLabel1.setEnabled(false);
assertFalse(label1.isEnabled());
}
/**
* Test the automatic disposal of bindings
*
* @throws ContextException
*/
@Test
public void testBindingIsDisposed() throws ContextException {
YView yView = factory.createView();
YGridLayout yGridlayout = factory.createGridLayout();
yView.setContent(yGridlayout);
YLabel yLabel = factory.createLabel();
yGridlayout.getElements().add(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart textEditpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = textEditpart
.getPresentation();
assertTrue(presentation.isRendered());
assertFalse(presentation.isDisposed());
assertEquals(4, presentation.getUIBindings().size());
presentation.dispose();
assertFalse(presentation.isRendered());
assertTrue(presentation.isDisposed());
assertEquals(0, presentation.getUIBindings().size());
}
@Test
public void test_i18n() throws ContextException {
// switch the global locale to german
Locale.setDefault(Locale.GERMAN);
YView yView = factory.createView();
YGridLayout yGridlayout = factory.createGridLayout();
yView.setContent(yGridlayout);
YLabel yLabel = factory.createLabel();
yGridlayout.getElements().add(yLabel);
// set the i18n key
yLabel.setLabelI18nKey(I18nServiceForTests.KEY__AGE);
// prepare the I18nService and pass it to the renderer
Map<String, Object> parameter = new HashMap<String, Object>();
Map<String, Object> services = new HashMap<String, Object>();
parameter.put(IViewContext.PARAM_SERVICES, services);
services.put(II18nService.ID, new I18nServiceForTests());
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, parameter);
ILabelEditpart editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
LabelPresentation presentation = editpart.getPresentation();
assertEquals("Alter", presentation.getWidget().getCaption());
viewContext.setLocale(Locale.ENGLISH);
assertEquals("Age", presentation.getWidget().getCaption());
}
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_Readonly_Binding() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
YView yView = factory.createView();
YGridLayout yLayout = factory.createGridLayout();
yView.setContent(yLayout);
YLabel yLabel = factory.createLabel();
yLayout.getElements().add(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = editpart
.getPresentation();
Label label = (Label) presentation.getWidget();
ValueBean bean = new ValueBean(false);
YBeanValueBindingEndpoint yBeanBinding = factory
.createBeanBindingEndpoint();
yBeanBinding.setBean(bean);
yBeanBinding.setPropertyPath("boolValue");
YBindingSet yBindingSet = yView.getOrCreateBindingSet();
yBindingSet.addBinding(yLabel.createEditableEndpoint(), yBeanBinding);
// test binding
assertFalse(yLabel.isEditable());
assertFalse(!label.isReadOnly());
assertFalse(bean.isBoolValue());
bean.setBoolValue(true);
assertTrue(yLabel.isEditable());
assertTrue(!label.isReadOnly());
assertTrue(bean.isBoolValue());
}
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_Visible_Binding() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
YView yView = factory.createView();
YGridLayout yLayout = factory.createGridLayout();
yView.setContent(yLayout);
YLabel yLabel = factory.createLabel();
yLayout.getElements().add(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = editpart
.getPresentation();
Label label = (Label) presentation.getWidget();
ValueBean bean = new ValueBean(false);
YBeanValueBindingEndpoint yBeanBinding = factory
.createBeanBindingEndpoint();
yBeanBinding.setBean(bean);
yBeanBinding.setPropertyPath("boolValue");
YBindingSet yBindingSet = yView.getOrCreateBindingSet();
yBindingSet.addBinding(yLabel.createVisibleEndpoint(), yBeanBinding);
// test binding
assertFalse(yLabel.isVisible());
assertFalse(label.isVisible());
assertFalse(bean.isBoolValue());
bean.setBoolValue(true);
assertTrue(yLabel.isVisible());
assertTrue(label.isVisible());
assertTrue(bean.isBoolValue());
}
@Test
// BEGIN SUPRESS CATCH EXCEPTION
public void test_Enabled_Binding() throws Exception {
// END SUPRESS CATCH EXCEPTION
// build the view model
YView yView = factory.createView();
YGridLayout yLayout = factory.createGridLayout();
yView.setContent(yLayout);
YLabel yLabel = factory.createLabel();
yLayout.getElements().add(yLabel);
VaadinRenderer renderer = new VaadinRenderer();
IViewContext viewContext = renderer.render(rootLayout, yView, null);
ILabelEditpart editpart = DelegatingEditPartManager.getInstance()
.getEditpart(viewContext, yLabel);
IWidgetPresentation<Component> presentation = editpart
.getPresentation();
Label label = (Label) presentation.getWidget();
ValueBean bean = new ValueBean(false);
YBeanValueBindingEndpoint yBeanBinding = factory
.createBeanBindingEndpoint();
yBeanBinding.setBean(bean);
yBeanBinding.setPropertyPath("boolValue");
YBindingSet yBindingSet = yView.getOrCreateBindingSet();
yBindingSet.addBinding(yLabel.createEnabledEndpoint(), yBeanBinding);
// test binding
assertFalse(yLabel.isEnabled());
assertFalse(label.isEnabled());
assertFalse(bean.isBoolValue());
bean.setBoolValue(true);
assertTrue(yLabel.isEnabled());
assertTrue(label.isEnabled());
assertTrue(bean.isBoolValue());
}
}