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 .
20 import java
.util
.ArrayList
;
22 import share
.DescEntry
;
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
34 * gets the state for a SuperEntry according to its subentries
37 public void summarizeUp(DescEntry entry
)
39 if ((entry
.State
!= null) && !entry
.State
.equals("UNKNOWN"))
43 int count
= entry
.SubEntryCount
;
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";
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)
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";
78 failures
.get(j
) + " - " + states
.get(j
) + "\r\n";
81 entry
.hasErrorMsg
= true;
82 entry
.ErrorMsg
= errMsg
;
85 else if (entry
.EntryType
.equals("component") && knownIssues
> 0)
87 entry
.State
= "PASSED(with known issues).OK";
91 entry
.State
= "PASSED.OK";
95 public static void summarizeDown(DescEntry entry
, String state
)
97 if ((entry
.State
== null) || entry
.State
.equals("UNKNOWN"))
101 for (int i
= 0; i
< entry
.SubEntryCount
; i
++)
103 summarizeDown(entry
.SubEntries
[i
], entry
.State
);