]> source.dussan.org Git - archiva.git/blob
5b787b5025ea5618db345c6f91c5322ff7fa8653
[archiva.git] /
1 package org.apache.archiva.web.test.parent;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 public abstract class AbstractSearchTest 
23         extends AbstractArchivaTest
24 {       
25         //Search
26         public void goToSearchPage()
27         {
28         if ( !"Apache Archiva \\ Quick Search".equals( getTitle() ) )
29         {
30             clickLinkWithText( "Search" );
31             getSelenium().waitForPageToLoad( maxWaitTimeInMs );
32
33             assertPage( "Apache Archiva \\ Quick Search" );
34         }
35         }
36         
37         public void assertSearchPage()
38         {
39                 assertPage( "Apache Archiva \\ Quick Search" );
40                 assertTextPresent( "Search for" );
41                 assertElementPresent( "quickSearch_q" );
42                 assertButtonWithValuePresent( "Search" );
43                 //assertLinkPresent( "Advanced Search" );
44                 assertTextPresent( "Enter your search terms. A variety of data will be searched for your keywords." );
45                 //assertButtonWithDivIdPresent( "searchHint" );
46         }
47         
48         public void searchForArtifact( String artifactId )
49     {
50         goToSearchPage();
51
52         getSelenium().type( "dom=document.forms[1].elements[0]", artifactId );
53         clickButtonWithValue( "Search" );
54     }
55
56     public void searchForArtifactAdvancedSearch( String groupId, String artifactId, String version, String repositoryId,
57                                                  String className, String rowCount )
58     {
59         goToSearchPage();
60
61         clickLinkWithXPath( "//div[@id='contentArea']/div[1]/a[1]/strong", false );
62         assertElementPresent( "filteredSearch_searchField" );
63         assertElementPresent( "filteredSearch_repositoryId" );
64
65         if ( groupId != null )
66         {
67             selectValue( "filteredSearch_searchField", "Group ID" );
68             clickLinkWithLocator( "//a[@id='filteredSearch_']/img", false );
69
70             assertElementPresent( "groupId" );
71             setFieldValue( "groupId", groupId );
72         }
73
74         if ( artifactId != null )
75         {
76             selectValue( "filteredSearch_searchField", "Artifact ID" );
77             clickLinkWithLocator( "//a[@id='filteredSearch_']/img", false );
78
79             assertElementPresent( "artifactId" );
80             setFieldValue( "artifactId", artifactId );
81         }
82
83         if ( version != null )
84         {
85             selectValue( "filteredSearch_searchField", "Version" );
86             clickLinkWithLocator( "//a[@id='filteredSearch_']/img", false );
87
88             assertElementPresent( "version" );
89             setFieldValue( "version", version );
90         }
91
92         if ( className != null )
93         {
94             selectValue( "filteredSearch_searchField", "Class/Package Name" );
95             clickLinkWithLocator( "//a[@id='filteredSearch_']/img", false );
96
97             assertElementPresent( "className" );
98             setFieldValue( "className", className );
99         }
100
101         if ( rowCount != null )
102         {
103             selectValue( "filteredSearch_searchField", "Row Count" );
104             clickLinkWithLocator( "//a[@id='filteredSearch_']/img", false );
105
106             assertElementPresent( "rowCount" );
107             setFieldValue( "rowCount", rowCount );
108         }
109
110         if ( repositoryId != null )
111         {
112             selectValue( "filteredSearch_repositoryId", repositoryId );
113         }
114         clickSubmitWithLocator( "filteredSearch_0" );
115     }
116 }