bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / runner / stats / Summarizer.java
blobdfd9a4f0b2aca7b080bcc8d13a964473a7af20a9
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
36 public void summarizeUp(DescEntry entry)
38 if ((entry.State != null) && !entry.State.equals("UNKNOWN"))
40 return;
42 int count = entry.SubEntryCount;
43 int knownIssues = 0;
44 ArrayList<String> failures = new ArrayList<String>();
45 ArrayList<String> states = new ArrayList<String>();
46 for (int i = 0; i < count; i++)
48 if (entry.SubEntries[i].State == null)
50 entry.SubEntries[i].State = "PASSED.FAILED";
52 if (entry.SubEntries[i].State.equals("known issue"))
54 entry.SubEntries[i].State = "PASSED.OK";
55 knownIssues++;
57 if (!entry.SubEntries[i].State.endsWith("OK"))
59 String sFailure = "[" + entry.SubEntries[i].longName + "]" + " is testcode: [" + entry.SubEntries[i].entryName + "]";
60 failures.add(sFailure);
61 states.add(entry.SubEntries[i].State);
64 if (failures.size() > 0)
66 String errMsg = "";
67 String state = "PASSED.FAILED";
68 for (int j = 0; j < failures.size(); j++)
70 if (states.get(j).equals("not part of the job"))
72 state = "PASSED(some interfaces/services not tested).OK";
74 else
76 errMsg +=
77 failures.get(j) + " - " + states.get(j) + "\r\n";
80 entry.hasErrorMsg = true;
81 entry.ErrorMsg = errMsg;
82 entry.State = state;
84 else if (entry.EntryType.equals("component") && knownIssues > 0)
86 entry.State = "PASSED(with known issues).OK";
88 else
90 entry.State = "PASSED.OK";
94 public static void summarizeDown(DescEntry entry, String state)
96 if ((entry.State == null) || entry.State.equals("UNKNOWN"))
98 entry.State = state;
100 for (int i = 0; i < entry.SubEntryCount; i++)
102 summarizeDown(entry.SubEntries[i], entry.State);