]> source.dussan.org Git - archiva.git/blob
b967a70fcc829dd5ebf0451c9e9b1c9cc56de00d
[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.testng.annotations.AfterTest;
24 import org.testng.annotations.BeforeTest;
25 import org.testng.annotations.Test;
26
27 /*
28  * Bug in TestNG. TESTNG-285: @Test(sequential=true) works incorrectly for classes with inheritance
29  * http://code.google.com/p/testng/source/browse/trunk/CHANGES.txt
30  * Waiting 5.9 release. It's comming soon.
31  */
32
33 /**
34  * Based on LoginTest of Emmanuel Venisse test.
35  *
36  * @author José Morales Martínez
37  * @version $Id$
38  */
39
40 @Test( groups = { "login" }, dependsOnGroups = { "about" } )
41 public class LoginTest
42     extends AbstractArchivaTest
43 {
44     @Test( alwaysRun = true )
45     public void testWithBadUsername()
46     {
47         goToLoginPage();
48         setFieldValue( "user-login-form-username", "badUsername" );
49         clickLinkWithLocator( "modal-login-ok", true );
50         assertTextPresent( "This field is required." );
51
52     }
53
54     @Test( dependsOnMethods = { "testWithBadUsername" }, alwaysRun = true )
55     public void testWithBadPassword()
56     {
57         goToLoginPage();
58         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
59         setFieldValue( "user-login-form-password", "badPassword" );
60         clickLinkWithLocator( "modal-login-ok", true );
61         assertTextPresent( "You have entered an incorrect username and/or password" );
62     }
63
64     @Test( dependsOnMethods = { "testWithBadPassword" }, alwaysRun = true )
65     public void testWithEmptyUsername()
66     {
67         goToLoginPage();
68         setFieldValue( "user-login-form-password", "password" );
69         clickLinkWithLocator( "modal-login-ok", true );
70         //assertTextPresent( "User Name is required" );
71         assertTextPresent( "This field is required." );
72     }
73
74     @Test( dependsOnMethods = { "testWithEmptyUsername" }, alwaysRun = true )
75     public void testWithEmptyPassword()
76     {
77         goToLoginPage();
78         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
79         clickLinkWithLocator( "modal-login-ok", true );
80         //assertTextPresent( "You have entered an incorrect username and/or password" );
81         assertTextPresent( "This field is required." );
82     }
83
84     @Test( groups = { "loginSuccess" }, dependsOnMethods = { "testWithEmptyPassword" }, alwaysRun = true )
85     public void testWithCorrectUsernamePassword()
86     {
87         goToLoginPage();
88         setFieldValue( "user-login-form-username", getProperty( "ADMIN_USERNAME" ) );
89         setFieldValue( "user-login-form-password", getProperty( "ADMIN_PASSWORD" ) );
90         clickLinkWithLocator( "modal-login-ok", true );
91
92         assertUserLoggedIn( getProperty( "ADMIN_USERNAME" ) );
93     }
94
95     @BeforeTest
96     public void open()
97         throws Exception
98     {
99         super.open();
100     }
101
102     @Override
103     @AfterTest
104     public void close()
105         throws Exception
106     {
107         super.close();
108     }
109 }