<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="form" uri="http://www.springframework.org/tags" %> <% TestJob job=(TestJob)request.getAttribute("job"); %> <%if(job.getStatus()==TestJob.JobStatus.WAITING){ %> <%} else if(job.getStatus()==TestJob.JobStatus.RUNNING){ %> <%} %> <%@include file="css.jsp" %> Test job details <%@include file="header.jsp" %>

Test job details

<%if(job.getError()!=null){ %> <%} %>
Job id:<%=job.getId() %>
Title:
Status:<%=job.getStatus() %>
Failed count:"><%=job.getFailedCount() %>
Error:<%=StringUtil.html(job.getError()) %>
Properties:
"/> "/> "/>      ">CSV

detailed results:

<% TestCaseResults currentResults=job.currentResults; if(currentResults!=null){ TestResult current=job.currentResults.getCurrent(); if(current!=null){%> <% } for(TestResult result:currentResults.getResults()){%> <%if(result.getEndTime()>0){ %> <%} else { %> <%} %> <%if(result.isSuccess()){ %><%} else { %> <%} %> <% } } %> <% if(job.getResults()!=null){ for( String test: job.getResults().keySet()){ TestCaseResults results=job.getResults().get(test); %> "> "> <% List resultList=results.getResults(); for(int i=resultList.size()-1;i>=0;i--){ TestResult result=resultList.get(i); %> <%if(result.isSuccess()){ %><%} else { %> <%} %> <% } } } %>
id plan id name description status duration failure result description result value
Currently runnning:<%=current.getName() %>
<%=result.getName() %> <%=result.getDetails()!=null?result.getDetails().planId:"" %> <%=StringUtil.html(result.getDetails()!=null?result.getDetails().name:"" )%> <%=StringUtil.html(result.getDetails()!=null?result.getDetails().description:"") %>"><%=result.isSuccess()?"success":"failure" %>running<%=StringUtil.formatTime((result.getEndTime()>0?result.getEndTime():System.currentTimeMillis())-result.getStartTime())%> <%=StringUtil.firstLine(result.getFailure().getTrace(),100) %>...<%=StringUtil.html(result.getResultDescription()) %> <%=StringUtil.html(result.getResultValue()) %>
<%=test%>
<%=StringUtil.html(results.getDetails().name )%> <%=StringUtil.html(results.getDetails().description) %> <%=results.getFailedCount()==0?"success":"failure: "+results.getFailedCount() %> <%=StringUtil.formatTime(results.getEndTime()-results.getStartTime()) %>      
<%=result.getName() %> <%=result.getDetails().planId %> <%=StringUtil.html(result.getDetails()!=null?result.getDetails().name:"" )%> <%=StringUtil.html(result.getDetails()!=null?result.getDetails().description:"") %> "> <%=result.isSuccess()?"success":"failure" %> <%=StringUtil.formatTime(result.getEndTime()-result.getStartTime()) %> <%=StringUtil.firstLine(result.getFailure().getTrace(),100) %>...<%=StringUtil.html(result.getResultDescription()) %> <%=StringUtil.html(result.getResultValue()) %>
<%@include file="footer.jsp" %>