Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../img/srcFileCovDistChart0.png 49% of files have more coverage
22   114   11   2
0   62   0.5   11
11     1  
1    
 
  Page       Line # 47 22 0% 11 33 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.core.web;
17   
18    import static org.junit.Assert.assertNotNull;
19   
20    import java.io.IOException;
21    import java.net.MalformedURLException;
22    import java.net.URL;
23   
24    import org.junit.Test;
25   
26    import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
27    import com.gargoylesoftware.htmlunit.WebClient;
28    import com.gargoylesoftware.htmlunit.html.HtmlForm;
29    import com.gargoylesoftware.htmlunit.html.HtmlInput;
30    import com.gargoylesoftware.htmlunit.html.HtmlPage;
31    import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
32    import com.gargoylesoftware.htmlunit.html.HtmlTextInput;
33   
34    /*NOTES TO SELF
35    * !moved htmlunit dependency from test pom to web pom
36    *
37    * 1.try to update tomcat-maven-plugin with "http://jira.codehaus.org/browse/MTOMCAT-20"
38    * - because forking seems to not be working (tests don't run when page deployed)
39    *
40    * 1a. get source file, patch specific java file, and ...
41    *
42    * 2.only login page is deployed in this version, actual page does not compile
43    * - because of forking?
44    * -something else?
45    */
46   
 
47    public class Page {
48   
49    private WebClient webClient = new WebClient();
50    private HtmlPage page;
51   
 
52  0 toggle public Page(){
53    }
54   
 
55  0 toggle public Page(String url) throws FailingHttpStatusCodeException, MalformedURLException, IOException{
56  0 page = webClient.getPage(url);
57  0 webClient.waitForBackgroundJavaScript(10000);
58    }
59   
 
60  0 toggle public Page(URL url) throws FailingHttpStatusCodeException, IOException{
61  0 page = webClient.getPage(url);
62  0 webClient.waitForBackgroundJavaScript(10000);
63    }
64   
 
65  0 toggle public void setPage(String url) throws FailingHttpStatusCodeException, MalformedURLException, IOException{
66  0 page = webClient.getPage(url);
67  0 webClient.waitForBackgroundJavaScript(10000);
68    }
69   
 
70  0 toggle public void setPage(URL url) throws FailingHttpStatusCodeException, IOException{
71  0 page = webClient.getPage(url);
72  0 webClient.waitForBackgroundJavaScript(10000);
73    }
74   
 
75  0 toggle public HtmlPage getPage(){
76  0 return page;
77    }
78   
 
79  0 toggle public void setWebClient(WebClient webClient){
80  0 this.webClient = webClient;
81    }
82   
 
83  0 toggle public WebClient getWebClient(){
84  0 return webClient;
85    }
86   
 
87  0 toggle public HtmlPage logIn(String user, String password) throws IOException{
88  0 HtmlForm form = page.getElementByName("f");
89  0 HtmlTextInput userInput = form.getInputByName("j_username");
90  0 HtmlPasswordInput passwordInput = form.getInputByName("j_password");
91  0 HtmlInput submit = form.getInputByName("submit");
92   
93  0 userInput.setValueAttribute(user);
94  0 passwordInput.setValueAttribute(password);
95   
96  0 page = submit.click();
97   
98  0 webClient.waitForBackgroundJavaScript(10000);
99   
100  0 return page;
101    }
102   
103    //use to automatically log in for now
 
104  0 toggle public HtmlPage bypass() throws IOException{
105  0 return this.logIn("a", "a");
106    }
107   
 
108  0 toggle @Test
109    public void defaultTest(){
110  0 assertNotNull(this.webClient);
111    }
112   
113    }
114