How to use returnMP4 method of org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionMedia class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionMedia.returnMP4

Source:ReadTestCaseExecutionMedia.java Github

copy

Full Screen

...191 break;192 case "PDF":193 returnPDF(request, response, tceFile, pathString);194 case "MP4":195 returnMP4(request, response, tceFile, pathString);196 default:197 returnNotSupported(request, response, tceFile, pathString);198 }199 }200 }201 private void returnImage(HttpServletRequest request, HttpServletResponse response, TestCaseExecutionFile tc, String filePath) throws IOException {202 int width = (!StringUtils.isEmpty(request.getParameter("w"))) ? Integer.valueOf(request.getParameter("w")) : 150;203 int height = (!StringUtils.isEmpty(request.getParameter("h"))) ? Integer.valueOf(request.getParameter("h")) : 100;204 Boolean real = request.getParameter("r") != null;205 BufferedImage image = null;206 BufferedImage b = null;207 filePath = StringUtil.addSuffixIfNotAlready(filePath, File.separator);208 File picture = new File(filePath + tc.getFileName());209 LOG.debug("Accessing File : " + picture.getAbsolutePath());210 try {211 if (real) {212 b = ImageIO.read(picture);213 ImageIO.write(b, "png", response.getOutputStream());214 } else {215 image = ImageIO.read(picture);216 // We test if file is too thin or too long. That prevent 500 error in case files are not compatible with resize. In that case, we crop the file.217 if ((image.getHeight() * width / image.getWidth() < 10) || (image.getWidth() * height / image.getHeight() < 15)) {218 LOG.debug("Image is too big of thin. Target Height : " + image.getHeight() * width / image.getWidth() + " Target Width : " + image.getWidth() * height / image.getHeight());219 b = ImageIO.read(picture);220 int minwidth = width;221 if (width > image.getWidth()) {222 minwidth = image.getWidth();223 }224 int minheight = height;225 if (height > image.getHeight()) {226 minheight = image.getHeight();227 }228 BufferedImage crop = ((BufferedImage) b).getSubimage(0, 0, minwidth, minheight);229 b = crop;230 response.setHeader("Format-Status", "ERROR");231 response.setHeader("Format-Status-Message", "Image Crop from : " + image.getWidth() + "X" + image.getHeight() + " to : " + minwidth + "X" + minheight);232 } else {233 ResampleOp rop = new ResampleOp(DimensionConstrain.createMaxDimension(width, height, true));234 rop.setNumberOfThreads(4);235 b = rop.filter(image, null);236 response.setHeader("Format-Status", "OK");237 }238 }239 } catch (IOException e) {240 }241 SimpleDateFormat sdf = new SimpleDateFormat();242 sdf.setTimeZone(new SimpleTimeZone(0, "GMT"));243 sdf.applyPattern("dd MMM yyyy HH:mm:ss z");244 response.setHeader("Last-Modified", sdf.format(DateUtils.addDays(Calendar.getInstance().getTime(), 2 * 360)));245 response.setHeader("Expires", sdf.format(DateUtils.addDays(Calendar.getInstance().getTime(), 2 * 360)));246 response.setHeader("Type", "PNG");247 response.setHeader("Description", tc.getFileDesc());248 ImageIO.write(b, "png", response.getOutputStream());249 }250 private void returnPDF(HttpServletRequest request, HttpServletResponse response, TestCaseExecutionFile tc, String filePath) {251 File pdfFile = null;252 filePath = StringUtil.addSuffixIfNotAlready(filePath, File.separator);253 pdfFile = new File(filePath + tc.getFileName());254 response.setContentType("application/pdf");255 response.setContentLength((int) pdfFile.length());256 try {257 Files.copy(pdfFile, response.getOutputStream());258 } catch (IOException e) {259 Log.warn(e);260 }261 }262 private void returnMP4(HttpServletRequest request, HttpServletResponse response, TestCaseExecutionFile tc, String filePath) {263 File mp4File = null;264 filePath = StringUtil.addSuffixIfNotAlready(filePath, File.separator);265 mp4File = new File(filePath + tc.getFileName());266 response.setContentType("video/mp4");267 response.setContentLength((int) mp4File.length());268 response.setHeader("Content-Range", "bytes start-end/length");269 try {270 Files.copy(mp4File, response.getOutputStream());271 } catch (IOException e) {272 Log.warn(e);273 }274 }275 private void returnFile(HttpServletRequest request, HttpServletResponse response, TestCaseExecutionFile tc, String filePath) {276 String everything = "";...

Full Screen

Full Screen

returnMP4

Using AI Code Generation

copy

Full Screen

1import java.io.*;2import java.sql.*;3import java.util.*;4import org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionMedia;5public class GetVideoFromDB {6 public static void main(String[] args) throws Exception {7 if (args.length != 3) {8 System.out.println("Usage: java -cp lib/*:. GetVideoFromDB <executionID> <test> <testcase>");9 System.exit(1);10 }11 int executionID = Integer.parseInt(args[0]);12 String test = args[1];13 String testcase = args[2];14 byte[] video = ReadTestCaseExecutionMedia.returnMP4(executionID, test, testcase);15 FileOutputStream fos = new FileOutputStream("video.mp4");16 fos.write(video);17 fos.close();18 }19}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful