bump product version to 4.1.6.2
[LibreOffice.git] / qadevOOo / runner / graphical / JPEGEvaluator.java
blob5ee8db786b9ebb04713b05ac354963d63a2bd972
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package graphical;
21 public class JPEGEvaluator extends EnhancedComplexTestCase
23 public String[] getTestMethodNames()
25 return new String[]{"EvaluateResult"};
28 /**
29 * test function.
31 public void EvaluateResult()
33 GlobalLogWriter.set(log);
34 ParameterHelper aParam = new ParameterHelper(param);
36 // run through all documents found in Inputpath
37 foreachResultCreateHTML(aParam);
40 public void checkOneFile(String _sDocument, String _sResult, ParameterHelper _aParams) throws OfficeException
42 String sBasename = FileHelper.getBasename(_sDocument);
43 String sResultIniFile = _sDocument + ".ini";
45 HTMLResult aOutputter = new HTMLResult(_sResult, sBasename + ".html" );
46 aOutputter.header(_sResult);
47 aOutputter.indexSection(sBasename);
49 IniFile aResultIniFile = new IniFile(sResultIniFile);
50 String sStatusRunThrough = aResultIniFile.getValue("global", "state");
51 String sStatusMessage = aResultIniFile.getValue("global", "info");
53 String sHTMLFile = _aParams.getHTMLPrefix(); // "http://so-gfxcmp-lin/gfxcmp_ui/cw.php?inifile=";
54 sHTMLFile += _sDocument + ".ini";
55 aOutputter.indexLine(sHTMLFile, sBasename, sStatusRunThrough, sStatusMessage);
56 aOutputter.close();