use of org.mifos.dto.domain.OfficeDetailsDto in project head by mifos.
the class OfficeActionStrutsTest method testLoadLevel.
@Test
public void testLoadLevel() throws Exception {
setRequestPathInfo("/offAction.do");
addRequestParameter("method", Methods.load.toString());
addRequestParameter("officeLevel", "5");
addRequestParameter(Constants.CURRENTFLOWKEY, flowKey);
actionPerform();
verifyForward(ActionForwards.load_success.toString());
List<OfficeDetailsDto> parents = (List<OfficeDetailsDto>) SessionUtils.getAttribute(OfficeConstants.PARENTS, request);
Assert.assertEquals(2, parents.size());
List<OfficeDetailsDto> levels = (List<OfficeDetailsDto>) SessionUtils.getAttribute(OfficeConstants.OFFICELEVELLIST, request);
Assert.assertEquals(4, levels.size());
OffActionForm offActionForm = (OffActionForm) request.getSession().getAttribute("offActionForm");
Assert.assertNotNull(offActionForm);
Assert.assertEquals("5", offActionForm.getOfficeLevel());
}
use of org.mifos.dto.domain.OfficeDetailsDto in project head by mifos.
the class TableTagParserTest method testParser.
@Test
public void testParser() throws Exception {
Table table = TableTagParser.getInstance().parser("org/mifos/framework/util/resources/customTableTag/example.xml");
Assert.assertNotNull(table);
HeaderDetails details = table.getHeaderDetails();
Assert.assertEquals("drawtablerowbold", details.getHeaderStyle());
StringBuilder builder = new StringBuilder();
details.getHeaderInfo(builder);
assertContains("drawtablerowbold", builder.toString());
Row row = table.getRow();
Assert.assertEquals("true", row.getBottomLineRequired());
Assert.assertEquals("100", row.getTotWidth());
Column[] columns = row.getColumn();
for (int i = 0; i < columns.length; i++) {
if (i == 0) {
Assert.assertEquals("text", columns[i].getColumnType());
Assert.assertEquals("Name", columns[i].getLabel());
Assert.assertEquals("Name", columns[i].getValue());
Assert.assertEquals("method", columns[i].getValueType());
StringBuilder builder2 = new StringBuilder();
Locale locale = new Locale("en", "GB");
OfficeDetailsDto officeDetailsDto = new OfficeDetailsDto(Short.valueOf("1"), "abcd", Short.valueOf("1"), "branch", Integer.valueOf("1"));
ColumnDetails columnDetails = new ColumnDetails();
columnDetails.setRowStyle("drawtablerowbold");
columnDetails.setAlign("Down");
columns[i].setColumnDetials(columnDetails);
columns[i].generateTableColumn(builder2, officeDetailsDto, locale, locale, 0);
Assert.assertEquals("<td class=\"drawtablerowbold\" align=\"Down\" > </td>", builder2.toString());
}
}
}
Aggregations