bump product version to 4.1.6.2
[LibreOffice.git] / qadevOOo / runner / stats / Summarizer.java
blobb63c5c255eb1f3e42e0805c878256d1af83f6036
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 .
18 package stats;
20 import java.util.ArrayList;
22 import share.DescEntry;
24 /**
26 * this class summs up the results of the subentries of a given DescEntry<br>
27 * and fills the subentries in cases of SKIPPED states
29 public class Summarizer
32 /**
34 * gets the state for a SuperEntry according to its subentries
35 * @param entry
37 public void summarizeUp(DescEntry entry)
39 if ((entry.State != null) && !entry.State.equals("UNKNOWN"))
41 return;
43 int count = entry.SubEntryCount;
44 int knownIssues = 0;
45 ArrayList<String> failures = new ArrayList<String>();
46 ArrayList<String> states = new ArrayList<String>();
47 for (int i = 0; i < count; i++)
49 if (entry.SubEntries[i].State == null)
51 entry.SubEntries[i].State = "PASSED.FAILED";
53 if (entry.SubEntries[i].State.equals("known issue"))
55 entry.SubEntries[i].State = "PASSED.OK";
56 knownIssues++;
58 if (!entry.SubEntries[i].State.endsWith("OK"))
60 String sFailure = "[" + entry.SubEntries[i].longName + "]" + " is testcode: [" + entry.SubEntries[i].entryName + "]";
61 failures.add(sFailure);
62 states.add(entry.SubEntries[i].State);
65 if (failures.size() > 0)
67 String errMsg = "";
68 String state = "PASSED.FAILED";
69 for (int j = 0; j < failures.size(); j++)
71 if (states.get(j).equals("not part of the job"))
73 state = "PASSED(some interfaces/services not tested).OK";
75 else
77 errMsg +=
78 failures.get(j) + " - " + states.get(j) + "\r\n";
81 entry.hasErrorMsg = true;
82 entry.ErrorMsg = errMsg;
83 entry.State = state;
85 else if (entry.EntryType.equals("component") && knownIssues > 0)
87 entry.State = "PASSED(with known issues).OK";
89 else
91 entry.State = "PASSED.OK";
95 public static void summarizeDown(DescEntry entry, String state)
97 if ((entry.State == null) || entry.State.equals("UNKNOWN"))
99 entry.State = state;
101 for (int i = 0; i < entry.SubEntryCount; i++)
103 summarizeDown(entry.SubEntries[i], entry.State);