]> source.dussan.org Git - archiva.git/blob
718418b00cfff1eb657babbc5b165797b191a751
[archiva.git] /
1 package org.apache.archiva.web.test;
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 import java.io.File;
23
24 import org.apache.archiva.web.test.parent.AbstractSearchTest;
25 import org.testng.annotations.Test;
26
27 @Test( groups = { "search" }, dependsOnMethods = { "testWithCorrectUsernamePassword" } )
28 public class SearchTest
29     extends AbstractSearchTest
30 {
31
32     public void testSearchNonExistingArtifact()
33         throws Exception
34     {
35         searchForArtifact( getProperty( "SEARCH_BAD_ARTIFACT" ) );
36         assertTextPresent( "No results found" );
37     }
38
39     // TODO: make search tests more robust especially when comparing/asserting number of hits
40     public void testSearchExistingArtifact()
41     {
42         searchForArtifact( getProperty( "ARTIFACT_ARTIFACTID" ) );
43         assertTextPresent( "Results" );
44         assertTextPresent( "Hits: 1 to 1 of 1" );
45         assertLinkPresent( "test" );
46     }
47
48     public void testViewSearchedArtifact()
49     {
50         searchForArtifact( getProperty( "ARTIFACT_ARTIFACTID" ) );
51         clickLinkWithText( getProperty( "ARTIFACT_ARTIFACTID" ) );
52         assertPage( "Apache Archiva \\ Browse Repository" );
53         assertTextPresent( getProperty( "ARTIFACT_ARTIFACTID" ) );
54         clickLinkWithText( getProperty( "ARTIFACT_VERSION" ) + "/" );
55         assertPage( "Apache Archiva \\ Browse Repository" );
56     }
57
58     public void testSearchNonExistingArtifactInAdvancedSearch()
59     {
60         searchForArtifactAdvancedSearch( null, getProperty( "SEARCH_BAD_ARTIFACT" ), null, null, null, null );
61         assertTextPresent( "No results found" );
62     }
63
64     public void testSearchNoSearchCriteriaSpecifiedInAdvancedSearch()
65     {
66         searchForArtifactAdvancedSearch( null, null, null, null, null, null );
67         assertTextPresent( "Advanced Search - At least one search criteria must be provided." );
68     }
69
70     public void testSearchExistingArtifactUsingAdvancedSearchArtifactId()
71     {
72         searchForArtifactAdvancedSearch( null, getProperty( "ARTIFACT_ARTIFACTID" ), null,
73                                          getProperty( "REPOSITORYID" ), null, null );
74         assertTextPresent( "Results" );
75         assertTextPresent( "Hits: 1 to 1 of 1" );
76         assertLinkPresent( "test" );
77     }
78
79     public void testSearchExistingArtifactUsingAdvancedSearchGroupId()
80     {
81         searchForArtifactAdvancedSearch( getProperty( "GROUPID" ), null, null, getProperty( "REPOSITORYID" ), null,
82                                          null );
83         assertTextPresent( "Results" );
84         assertTextPresent( "Hits: 1 to 1 of 1" );
85         assertLinkPresent( "test" );
86     }
87
88     public void testSearchExistingArtifactUsingAdvancedSearchNotInRepository()
89     {
90         searchForArtifactAdvancedSearch( null, getProperty( "ARTIFACT_ARTIFACTID" ), null, "snapshots", null, null );
91         assertTextPresent( "No results found" );
92         assertTextNotPresent( "Results" );
93         assertTextNotPresent( "Hits: 1 to 1 of 1" );
94         assertLinkNotPresent( "test" );
95     }
96 }