/*******************************************************************************
* Copyright (c) 2006-2013 The RCP Company and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* The RCP Company - initial API and implementation
*******************************************************************************/
package com.rcpcompany.uibindings.extests.valueBindings;
import static com.rcpcompany.test.utils.BaseTestUtils.*;
import static com.rcpcompany.test.utils.ui.UITestUtils.*;
import static org.junit.Assert.*;
import java.util.Arrays;
import java.util.Collection;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Text;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import com.rcpcompany.uibinding.tests.model.TestModelFactory;
import com.rcpcompany.uibinding.tests.model.TestModelPackage;
import com.rcpcompany.uibinding.tests.model.TestObject;
import com.rcpcompany.uibindings.IBindingContext;
import com.rcpcompany.uibindings.IValueBinding;
import com.rcpcompany.uibindings.tests.utils.BaseUIBTestUtils;
import com.rcpcompany.uibindings.tests.utils.views.UIBTestView;
import com.rcpcompany.utils.basic.ClassUtils;
/**
* Tests that when the model is changed, then the widget is changed as well.
*
* @author Tonny Madsen, The RCP Company
*/
@RunWith(Parameterized.class)
public class ValueBindingPreferredControlTest {
private final EStructuralFeature myFeature;
private final int myStyles;
private final Class<? extends Control> myControlClass;
private final String what;
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{ TestModelPackage.Literals.TEST_OBJECT__NUMBER, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__B, Button.class, SWT.CHECK },
{ TestModelPackage.Literals.TEST_OBJECT__TIME_UNIT, CCombo.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__BIG_DECIMAL, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__BIG_INTEGER, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__BYTE, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__F, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__D, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__DATE, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__LONG, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__PARENT, Text.class, SWT.NONE },
{ TestModelPackage.Literals.TEST_OBJECT__TEXT, Text.class, SWT.NONE },
});
}
public ValueBindingPreferredControlTest(EStructuralFeature feature, Class<? extends Control> controlClass,
int styles) {
myFeature = feature;
myControlClass = controlClass;
myStyles = styles;
what = "Feature " + feature.getName();
}
private UIBTestView myView;
private TestObject myObject;
private IValueBinding myBinding;
@Before
public void setup() {
BaseUIBTestUtils.resetAll();
createModel();
createView();
}
private void createModel() {
myObject = TestModelFactory.eINSTANCE.createTestObject();
}
private void createView() {
myView = BaseUIBTestUtils.createUIBTestView(this);
}
@After
public void disposeView() {
if (myView != null) {
myView.getSite().getPage().hideView(myView);
}
}
@Test
public void testValue() {
assertNoLog(new Runnable() {
@Override
public void run() {
final IBindingContext context = IBindingContext.Factory.createContext(myView.getScrolledForm());
myBinding = context.addBinding().model(myObject, myFeature);
final Control control = myBinding.createPreferredControl(myView.getBody(), SWT.NONE, false);
assertNotNull(what, control);
assertTrue(
what + ": expected " + ClassUtils.getLastClassName(myControlClass) + " got "
+ ClassUtils.getLastClassName(control), myControlClass.isInstance(control));
final int style = control.getStyle();
assertTrue(what, (style & myStyles) == myStyles);
myBinding.ui(control);
context.finish();
yield();
}
}, new String[] { ".*Binding cannot be changed.*" });
}
}