re base code
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / utilities / AdditionalConditions.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.utilities;
22
23 import com.paulhammant.ngwebdriver.NgWebDriver;
24 import org.openqa.selenium.JavascriptExecutor;
25 import org.openqa.selenium.WebDriver;
26 import org.openqa.selenium.support.ui.ExpectedCondition;
27
28 public class AdditionalConditions {
29                 
30         public static ExpectedCondition<Boolean> jQueryAJAXCallsHaveCompleted() {
31             return new ExpectedCondition<Boolean>() {
32                 @Override
33                         public Boolean apply(WebDriver driver) {
34                         return (Boolean) ((JavascriptExecutor)driver).
35                                         executeScript("return (window.jQuery!= null) && (jQuery.active === 0);");
36                         }
37                 };
38         }
39         
40         public static ExpectedCondition <Boolean> angularHasFinishedProcessing() {
41            return new ExpectedCondition<Boolean>() {
42                         @Override
43                         public Boolean apply(WebDriver driver) {
44 //                              String scriptJS = "return (window.angular !==undefined) &&"
45 //                                              + " (angular.element(document).injector() !==undefined) &&"
46 //                                              + " (angular.element(document).injector().get('$http').pendingRequests.length === 0)";
47 //                              return Boolean.valueOf(( (JavascriptExecutor) driver).executeScript(scriptJS).toString());
48                                 new NgWebDriver((JavascriptExecutor) driver).waitForAngularRequestsToFinish();
49                                 return true;
50                         }
51            };
52         }
53         
54     public static ExpectedCondition <Boolean> pageLoadWait() {
55         return new ExpectedCondition<Boolean>() {
56                    @Override
57                    public Boolean apply(WebDriver driver) {
58                           String scriptJS = 
59                                        "try {\r\n" + 
60                                        "  if (document.readyState !== 'complete') {\r\n" + 
61                                        "    return false; // Page not loaded yet\r\n" + 
62                                        "  }\r\n" + 
63                                        "  if (window.jQuery) {\r\n" + 
64                                        "    if (window.jQuery.active) {\r\n" + 
65                                        "      return false;\r\n" + 
66                                        "    } else if (window.jQuery.ajax && window.jQuery.ajax.active) {\r\n" + 
67                                        "      return false;\r\n" + 
68                                        "    }\r\n" + 
69                                        "  }\r\n" + 
70                                        "  if (window.angular) {\r\n" + 
71                                        "    if (!window.qa) {\r\n" + 
72                                        "      // Used to track the render cycle finish after loading is complete\r\n" + 
73                                        "      window.qa = {\r\n" + 
74                                        "        doneRendering: false\r\n" + 
75                                        "      };\r\n" + 
76                                        "    }\r\n" + 
77                                        "    // Get the angular injector for this app (change element if necessary)\r\n" + 
78                                        "    var injector = window.angular.element('body').injector();\r\n" + 
79                                        "    // Store providers to use for these checks\r\n" + 
80                                        "    var $rootScope = injector.get('$rootScope');\r\n" + 
81                                        "    var $http = injector.get('$http');\r\n" + 
82                                        "    var $timeout = injector.get('$timeout');\r\n" + 
83                                        "    // Check if digest\r\n" + 
84                                        "    if ($rootScope.$$phase === '$apply' || $rootScope.$$phase === '$digest' || $http.pendingRequests.length !== 0) {\r\n" + 
85                                        "      window.qa.doneRendering = false;\r\n" + 
86                                        "      return false; // Angular digesting or loading data\r\n" + 
87                                        "    }\r\n" + 
88                                        "    if (!window.qa.doneRendering) {\r\n" + 
89                                        "      // Set timeout to mark angular rendering as finished\r\n" + 
90                                        "      $timeout(function() {\r\n" + 
91                                        "        window.qa.doneRendering = true;\r\n" + 
92                                        "      }, 0);\r\n" + 
93                                        "      return false;\r\n" + 
94                                        "    }\r\n" + 
95                                        "  }\r\n" + 
96                                        "  return true;\r\n" + 
97                                        "} catch (ex) {\r\n" + 
98                                        "  return false;\r\n" + 
99                                        "}";
100                           return Boolean.valueOf(( (JavascriptExecutor) driver).executeScript(scriptJS).toString());
101                    }
102         };
103      }
104
105         
106         
107 }