/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.workbench.common.forms.dynamic.backend.server.context.generation.statik.impl; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.kie.workbench.common.forms.dynamic.test.model.Person; import org.kie.workbench.common.forms.dynamic.test.model.Title; import org.kie.workbench.common.forms.fields.shared.fieldTypes.basic.datePicker.definition.DatePickerFieldDefinition; import org.kie.workbench.common.forms.fields.shared.fieldTypes.basic.selectors.listBox.definition.EnumListBoxFieldDefinition; import org.kie.workbench.common.forms.fields.shared.fieldTypes.basic.textBox.definition.TextBoxFieldDefinition; import org.kie.workbench.common.forms.model.FieldDefinition; import org.kie.workbench.common.forms.model.FormDefinition; import org.mockito.runners.MockitoJUnitRunner; import static org.junit.Assert.*; @RunWith(MockitoJUnitRunner.class) public class BasicFormRenderingContextGeneratorTest extends AbstractFormRenderingContextGeneratorTest<Person> { @Before @Override public void init() { super.init(); } @Test public void testCreateContextForBasicModel() { initTest(new Person(), 4); FormDefinition form = context.getRootForm(); checkTitleField(form.getFieldById("title")); checkSurname(form.getFieldById("surname")); checkBirthday(form.getFieldById("birthday")); } protected void checkTitleField(FieldDefinition field) { assertNotNull(field); assertTrue(field instanceof EnumListBoxFieldDefinition); assertEquals(Title.class.getName(), field.getFieldTypeInfo().getType()); assertTrue(field.getFieldTypeInfo().isEnum()); } protected void checkSurname(FieldDefinition field) { assertNotNull(field); assertTrue(field instanceof TextBoxFieldDefinition); } protected void checkBirthday(FieldDefinition field) { assertNotNull(field); assertTrue(field instanceof DatePickerFieldDefinition); } }