/**
* ***************************************************************************
* Copyright (c) 2010 Qcadoo Limited
* Project: Qcadoo MES
* Version: 1.4
*
* This file is part of Qcadoo.
*
* Qcadoo is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation; either version 3 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* ***************************************************************************
*/
package com.qcadoo.mes.assignmentToShift.hooks;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.test.util.ReflectionTestUtils;
import com.qcadoo.mes.assignmentToShift.constants.AssignmentToShiftConstants;
import com.qcadoo.mes.assignmentToShift.constants.AssignmentToShiftReportFields;
import com.qcadoo.model.api.DataDefinition;
import com.qcadoo.model.api.DataDefinitionService;
import com.qcadoo.model.api.Entity;
import com.qcadoo.view.api.ViewDefinitionState;
import com.qcadoo.view.api.components.FieldComponent;
import com.qcadoo.view.api.components.FormComponent;
import com.qcadoo.view.api.utils.NumberGeneratorService;
public class AssignmentToShiftReportDetailsHooksTest {
private static final String L_FORM = "form";
private AssignmentToShiftReportDetailsHooks hooks;
@Mock
private NumberGeneratorService numberGeneratorService;
@Mock
private DataDefinitionService dataDefinitionService;
@Mock
private ViewDefinitionState view;
@Mock
private FormComponent assignmentToShiftReportForm;
@Mock
private FieldComponent fieldComponent;
@Mock
private DataDefinition assignmentToShiftReportDD;
@Mock
private Entity assignmentToShiftReport;
@Before
public void init() {
hooks = new AssignmentToShiftReportDetailsHooks();
MockitoAnnotations.initMocks(this);
ReflectionTestUtils.setField(hooks, "numberGeneratorService", numberGeneratorService);
ReflectionTestUtils.setField(hooks, "dataDefinitionService", dataDefinitionService);
}
@Test
public void shouldGenerateAssignmentToShiftReportNumber() {
// given
// when
hooks.generateAssignmentToShiftReportNumber(view);
// then
verify(numberGeneratorService).generateAndInsertNumber(view, AssignmentToShiftConstants.PLUGIN_IDENTIFIER,
AssignmentToShiftConstants.MODEL_ASSIGNMENT_TO_SHIFT_REPORT, L_FORM, AssignmentToShiftReportFields.NUMBER);
}
@Test
public void shouldntDisableFieldsWhenEntityIsntSaved() {
// given
given(view.getComponentByReference(L_FORM)).willReturn(assignmentToShiftReportForm);
given(view.getComponentByReference(AssignmentToShiftReportFields.NUMBER)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.NAME)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.SHIFT)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.FACTORY)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_FROM)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_TO)).willReturn(fieldComponent);
given(assignmentToShiftReportForm.getEntityId()).willReturn(null);
// when
hooks.disableFields(view);
// then
verify(fieldComponent, times(6)).setEnabled(true);
}
@Test
public void shouldntDisableFieldsWhenEntityIsSavedAndReportIsntGenerated() {
// given
given(view.getComponentByReference(L_FORM)).willReturn(assignmentToShiftReportForm);
given(view.getComponentByReference(AssignmentToShiftReportFields.NUMBER)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.NAME)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.SHIFT)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.FACTORY)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_FROM)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_TO)).willReturn(fieldComponent);
given(assignmentToShiftReportForm.getEntityId()).willReturn(1L);
given(
dataDefinitionService.get(AssignmentToShiftConstants.PLUGIN_IDENTIFIER,
AssignmentToShiftConstants.MODEL_ASSIGNMENT_TO_SHIFT_REPORT)).willReturn(assignmentToShiftReportDD);
given(assignmentToShiftReportDD.get(1L)).willReturn(assignmentToShiftReport);
given(assignmentToShiftReport.getBooleanField(AssignmentToShiftReportFields.GENERATED)).willReturn(false);
// when
hooks.disableFields(view);
// then
verify(fieldComponent, times(6)).setEnabled(true);
}
@Test
public void shouldDisableFieldsWhenEntityIsSavedAndReportIsGenerated() {
// given
given(view.getComponentByReference(L_FORM)).willReturn(assignmentToShiftReportForm);
given(view.getComponentByReference(AssignmentToShiftReportFields.NUMBER)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.NAME)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.SHIFT)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.FACTORY)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_FROM)).willReturn(fieldComponent);
given(view.getComponentByReference(AssignmentToShiftReportFields.DATE_TO)).willReturn(fieldComponent);
given(assignmentToShiftReportForm.getEntityId()).willReturn(1L);
given(
dataDefinitionService.get(AssignmentToShiftConstants.PLUGIN_IDENTIFIER,
AssignmentToShiftConstants.MODEL_ASSIGNMENT_TO_SHIFT_REPORT)).willReturn(assignmentToShiftReportDD);
given(assignmentToShiftReportDD.get(1L)).willReturn(assignmentToShiftReport);
given(assignmentToShiftReport.getBooleanField(AssignmentToShiftReportFields.GENERATED)).willReturn(true);
// when
hooks.disableFields(view);
// then
verify(fieldComponent, times(6)).setEnabled(false);
}
}