]> source.dussan.org Git - archiva.git/blob
1f60076bc913fbe7de55257ba9d522fdbaebe340
[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 org.apache.archiva.web.test.parent.AbstractArtifactManagementTest;
23 import org.testng.annotations.Test;
24
25 @Test( groups = { "artifactmanagement" }, dependsOnMethods = { "testWithCorrectUsernamePassword" } )
26 public class ArtifactManagementTest
27         extends AbstractArtifactManagementTest
28 {
29
30         
31         public void testAddArtifactNullValues()
32         {
33                 goToAddArtifactPage();
34                 clickButtonWithValue( "Submit" );
35                 assertTextPresent( "Please add a file to upload." );
36                 assertTextPresent( "Invalid version." );
37                 assertTextPresent( "You must enter a groupId." );
38                 assertTextPresent( "You must enter an artifactId." );
39                 assertTextPresent( "You must enter a version" );
40                 assertTextPresent( "You must enter a packaging" );
41         }
42         
43         @Test(dependsOnMethods = { "testAddArtifactNullValues" } )
44         public void testAddArtifactNoGroupId()
45         {
46                 addArtifact( " " , getArtifactId(), getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() );
47                 assertTextPresent( "You must enter a groupId." );
48         }
49         
50         @Test(dependsOnMethods = { "testAddArtifactNoGroupId" } )
51         public void testAddArtifactNoArtifactId()
52         {
53                 
54                 addArtifact( getGroupId() , " ", getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() );
55                 assertTextPresent( "You must enter an artifactId." );
56         }
57         
58         @Test(dependsOnMethods = { "testAddArtifactNoGroupId" } )
59         public void testAddArtifactNoVersion()
60         {
61                 addArtifact( getGroupId() , getArtifactId(), " ", getPackaging() , getArtifactFilePath(), getRepositoryId() );
62                 assertTextPresent( "You must enter a version." );
63         }
64         
65         @Test(dependsOnMethods = { "testAddArtifactNoGroupId" } )
66         public void testAddArtifactInvalidVersion()
67         {
68                 addArtifact( getGroupId() , getArtifactId(), "asdf", getPackaging() , getArtifactFilePath(), getRepositoryId() );
69                 assertTextPresent( "Invalid version." );
70         }
71         
72         @Test(dependsOnMethods = { "testAddArtifactNoGroupId" } )
73         public void testAddArtifactNoPackaging()
74         {
75                 addArtifact( getGroupId() , getArtifactId(), getVersion(), " " , getArtifactFilePath(), getRepositoryId() );
76                 assertTextPresent( "You must enter a packaging." );
77         }
78         
79         @Test(dependsOnMethods = { "testAddArtifactNoGroupId" } )
80         public void testAddArtifactNoFilePath()
81         {
82                 addArtifact( getGroupId() , getArtifactId(), getVersion(), getPackaging() , " ", getRepositoryId() );
83                 assertTextPresent( "Please add a file to upload." );
84         }
85         
86     @Test( enabled = false )
87         public void testAddArtifactValidValues()
88         {
89                 // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63)
90                 addArtifact( getGroupId() , "testAddArtifactValidValues", getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() );
91                 assertTextPresent( "Artifact 'test:test:1.0' was successfully deployed to repository 'internal'" );
92         }
93                 
94         //MRM-747
95     @Test( enabled = false )
96         public void testAddArtifactBlockRedeployments()
97         {
98             // TODO: disable test on non *chrome browsers, there is no way to do file uploads (SEL-63)
99             addArtifact( getGroupId() , getArtifactId(), getVersion(), getPackaging() , getArtifactFilePath(), getRepositoryId() );
100             assertTextPresent( "Overwriting released artifacts in repository '" + getRepositoryId() + "' is not allowed." );
101         }
102         
103     @Test( enabled = false )
104         public void testDeleteArtifact()
105         {
106                 //prep
107                 String groupId = getProperty( "GROUPID1" );
108                 String artifactId = getProperty( "ARTIFACTID1" );
109                 String version = getProperty( "VERSION1" );
110                 String packaging = getProperty( "PACKAGING1" );
111                 String repositoryId = getProperty( "REPOSITORYID1" );
112                 // TODO: do this differently as it only works in Firefox's chrome mode
113                 addArtifact( groupId , artifactId, version, packaging , getArtifactFilePath(), repositoryId );
114                 assertTextPresent( "Artifact 'delete:delete:1.0' was successfully deployed to repository 'internal'" );
115
116                 deleteArtifact( "delete", "delete", "1.0", "internal");
117                 assertTextPresent( "Artifact 'delete:delete:1.0' was successfully deleted from repository 'internal'" );
118         }
119         
120         public void testDeleteArtifactNoGroupId()
121         {
122                 deleteArtifact( " ", "delete", "1.0", "internal");
123                 assertTextPresent( "You must enter a groupId." );
124         }
125         
126         public void testDeleteArtifactNoArtifactId()
127         {
128                 deleteArtifact( "delete", " ", "1.0", "internal");
129                 assertTextPresent( "You must enter an artifactId." );
130         }
131         
132         public void testDeleteArtifactNoVersion()
133         {
134                 deleteArtifact( "delete", "delete", " ", "internal");
135                 assertTextPresent( "Invalid version." );
136                 assertTextPresent( "You must enter a version." );
137         }
138         
139         public void testDeleteArtifactInvalidVersion()
140         {
141                 deleteArtifact( "delete", "delete", "asdf", "internal");
142                 assertTextPresent( "Invalid version." );
143         }
144 }