]> source.dussan.org Git - archiva.git/blob
5869a0627452ba14e63964631cadbde564419d09
[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 AbstractArtifactManagementTest
23     extends AbstractArchivaTest
24 {
25
26     public String getGroupId()
27     {
28         String groupId = getProperty( "GROUPID" );
29         return groupId;
30     }
31
32     public String getArtifactId()
33     {
34         String artifactId = getProperty( "ARTIFACTID" );
35         return artifactId;
36     }
37
38     public String getVersion()
39     {
40         String version = getProperty( "VERSION" );
41         return version;
42     }
43
44     public String getPackaging()
45     {
46         String packaging = getProperty( "PACKAGING" );
47         return packaging;
48     }
49
50     public String getArtifactFilePath()
51     {
52         return "src/test/resources/snapshots/org/apache/maven/archiva/web/test/foo-bar/1.0-SNAPSHOT/foo-bar-1.0-SNAPSHOT.jar";
53     }
54
55     public String getRepositoryId()
56     {
57         String repositoryId = getProperty( "REPOSITORYID" );
58         return repositoryId;
59     }
60
61     public void goToDeleteArtifactPage()
62     {
63         login( getProperty( "ADMIN_USERNAME" ), getProperty( "ADMIN_PASSWORD" ) );
64         getSelenium().open( "/archiva/deleteArtifact.action" );
65         assertDeleteArtifactPage();
66     }
67
68     public void deleteArtifact( String groupId, String artifactId, String version, String repositoryId )
69     {
70         deleteArtifact( groupId, artifactId, version, repositoryId, false );
71     }
72
73     public void deleteArtifact( String groupId, String artifactId, String version, String repositoryId, boolean wait )
74     {
75         goToDeleteArtifactPage();
76         setFieldValue( "groupId", groupId );
77         setFieldValue( "artifactId", artifactId );
78         setFieldValue( "version", version );
79         selectValue( "repositoryId", repositoryId );
80         clickButtonWithValue( "Submit", wait );
81     }
82 }