]> source.dussan.org Git - archiva.git/blob
c781bee6b5827b8251e02205a0acd7b729b2cc96
[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         clickLinkWithText( "Delete Artifact" );
65         assertDeleteArtifactPage();
66     }
67
68     public void deleteArtifact( String groupId, String artifactId, String version, String repositoryId )
69     {
70         goToDeleteArtifactPage();
71         setFieldValue( "groupId", groupId );
72         setFieldValue( "artifactId", artifactId );
73         setFieldValue( "version", version );
74         selectValue( "repositoryId", repositoryId );
75         clickButtonWithValue( "Submit" );
76     }
77
78     public void assertDeleteArtifactPage()
79     {
80         assertPage( "Apache Archiva \\ Delete Artifact" );
81         assertTextPresent( "Delete Artifact" );
82         assertTextPresent( "Group Id*:" );
83         assertTextPresent( "Artifact Id*:" );
84         assertTextPresent( "Version*:" );
85         assertTextPresent( "Repository Id:" );
86         assertElementPresent( "groupId" );
87         assertElementPresent( "artifactId" );
88         assertElementPresent( "version" );
89         assertElementPresent( "repositoryId" );
90         assertButtonWithValuePresent( "Submit" );
91     }
92
93     // Legacy Support
94     public void goToLegacySupportPage()
95     {
96         clickLinkWithText( "Legacy Support" );
97         assertLegacySupportPage();
98     }
99
100     public void assertLegacySupportPage()
101     {
102         assertPage( "Apache Archiva \\ Administration - Legacy Support" );
103         assertTextPresent( "Administration - Legacy Artifact Path Resolution" );
104         assertTextPresent( "Path Mappings" );
105         assertLinkPresent( "Add" );
106     }
107
108     public void addLegacyArtifactPath( String path, String groupId, String artifactId, String version,
109                                        String classifier, String type )
110     {
111         assertAddLegacyArtifactPathPage();
112         setFieldValue( "legacyArtifactPath.path", path );
113         setFieldValue( "groupId", groupId );
114         setFieldValue( "artifactId", artifactId );
115         setFieldValue( "version", version );
116         setFieldValue( "classifier", classifier );
117         setFieldValue( "type", type );
118         clickButtonWithValue( "Add Legacy Artifact Path" );
119     }
120
121     public void assertAddLegacyArtifactPathPage()
122     {
123         assertPage( "Apache Archiva \\ Admin: Add Legacy Artifact Path" );
124         assertTextPresent( "Admin: Add Legacy Artifact Path" );
125         assertTextPresent( "Enter the legacy path to map to a particular artifact reference, then adjust the fields as necessary." );
126         String element =
127             "addLegacyArtifactPath_legacyArtifactPath_path,addLegacyArtifactPath_groupId,addLegacyArtifactPath_artifactId,addLegacyArtifactPath_version,addLegacyArtifactPath_classifier,addLegacyArtifactPath_type";
128         String[] arrayElement = element.split( "," );
129         for ( String arrayelement : arrayElement )
130             assertElementPresent( arrayelement );
131         assertButtonWithValuePresent( "Add Legacy Artifact Path" );
132     }
133 }