[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / config / InvokedMethodListener.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.config;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.testng.IInvokedMethod;
27 import org.testng.IInvokedMethodListener;
28 import org.testng.ITestResult;
29 import org.testng.SkipException;
30 import org.testng.internal.TestResult;
31
32 public class InvokedMethodListener implements IInvokedMethodListener {
33
34         static Map<String, Integer> methodFailCount = new HashMap<String, Integer>();
35
36         @Override
37
38         public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
39
40                 if (methodFailCount.get(method.getTestMethod().getMethodName()) != null
41                                 && methodFailCount.get(method.getTestMethod().getMethodName()) > 1)
42                         throw new SkipException("Skipped due to failure count > 1");
43                 ;
44
45         }
46
47         @Override
48
49         public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
50
51                 if (testResult.getStatus() == TestResult.FAILURE) {
52                         if (methodFailCount.get(method.getTestMethod().getMethodName()) == null)
53                                 methodFailCount.put(method.getTestMethod().getMethodName(), 1);
54                         else {
55                                 methodFailCount.put(method.getTestMethod().getMethodName(),
56                                                 methodFailCount.get(method.getTestMethod().getMethodName()) + 1);
57                         }
58
59                 }
60
61         }
62
63 }