]> source.dussan.org Git - archiva.git/blob
d0f50fb1da9206f975fa4be54602d6b5170721e6
[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.AbstractArchivaTest;
23 import org.junit.Test;
24
25 /**
26  * Based on LoginTest of Emmanuel Venisse test.
27  *
28  * @author José Morales Martínez
29  *
30  */
31
32
33 public class LoginTest
34     extends AbstractArchivaTest
35 {
36
37     @Test
38     public void testWithBadUsername()
39     {
40         goToLoginPage();
41         setFieldValue( "user-login-form-username", "badUsername" );
42         clickLinkWithLocator( "modal-login-ok", true );
43         assertTextPresent( "This field is required." );
44
45     }
46
47     @Test
48     public void testWithBadPassword()
49     {
50         goToLoginPage();
51         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
52         setFieldValue( "user-login-form-password", "badPassword" );
53         clickLinkWithLocator( "modal-login-ok", true );
54         assertTextPresent( "You have entered an incorrect username and/or password" );
55     }
56
57     @Test
58     public void testWithEmptyUsername()
59     {
60         goToLoginPage();
61         setFieldValue( "user-login-form-password", "password" );
62         clickLinkWithLocator( "modal-login-ok", true );
63         assertTextPresent( "This field is required." );
64     }
65
66     @Test
67     public void testWithEmptyPassword()
68     {
69         goToLoginPage();
70         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
71         clickLinkWithLocator( "modal-login-ok", true );
72         assertTextPresent( "This field is required." );
73     }
74
75     @Test
76     public void testWithCorrectUsernamePassword()
77     {
78         goToLoginPage();
79         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
80         setFieldValue( "user-login-form-password", getProperty( "ADMIN_PASSWORD" ) );
81         clickLinkWithLocator( "modal-login-ok", true );
82
83         assertUserLoggedIn( getProperty( "ADMIN_USERNAME" ) );
84     }
85
86
87 }