/** * Copyright (c) 2008-2011 Sonatype, Inc. * All rights reserved. Includes the third-party code listed at http://www.sonatype.com/products/nexus/attributions. * * This program is free software: you can redistribute it and/or modify it only under the terms of the GNU Affero General * Public License Version 3 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License Version 3 * for more details. * * You should have received a copy of the GNU Affero General Public License Version 3 along with this program. If not, see * http://www.gnu.org/licenses. * * Sonatype Nexus (TM) Open Source Version is available from Sonatype, Inc. Sonatype and Sonatype Nexus are trademarks of * Sonatype, Inc. Apache Maven is a trademark of the Apache Foundation. M2Eclipse is a trademark of the Eclipse Foundation. * All other trademarks are the property of their respective owners. */ package org.sonatype.nexus.selenium.nexus1815; import static org.testng.AssertJUnit.assertFalse; import static org.testng.AssertJUnit.assertTrue; import org.codehaus.plexus.component.annotations.Component; import org.hamcrest.CoreMatchers; import org.hamcrest.MatcherAssert; import org.restlet.data.Status; import org.sonatype.nexus.mock.MockListener; import org.sonatype.nexus.mock.MockResponse; import org.sonatype.nexus.mock.SeleniumTest; import org.sonatype.nexus.mock.models.User; import org.sonatype.nexus.mock.pages.LoginWindow; import org.sonatype.nexus.mock.pages.MainPage; import org.sonatype.nexus.mock.rest.MockHelper; import org.sonatype.security.rest.model.AuthenticationClientPermissions; import org.sonatype.security.rest.model.AuthenticationLoginResource; import org.sonatype.security.rest.model.AuthenticationLoginResourceResponse; import org.sonatype.security.rest.model.ClientPermission; import org.testng.annotations.Test; @Component( role = LoginTest.class ) public class LoginTest extends SeleniumTest { @Test public void doLoginTest() { doLogin( User.ADMIN.getUsername(), User.ADMIN.getPassword() ); assertFalse( "Login link should not be available", main.loginLinkAvailable() ); } @Test public void goodLogin() { main.clickLogin().populate( User.ADMIN ).loginExpectingSuccess(); assertFalse( "Login link should not be available", main.loginLinkAvailable() ); } protected void doLogin( MainPage main ) { main.getSelenium().runScript( "window.Sonatype.utils.doLogin( null, '" + User.ADMIN.getUsername() + "', '" + User.ADMIN.getPassword() + "');" ); } @Test public void missingPassword() { LoginWindow loginWindow = main.clickLogin().populate( new User( "bad", "" ) ); assertTrue( "Login button should be disabled if password is bad", loginWindow.getLoginButton().disabled() ); assertTrue( "Password field should have error message", loginWindow.getPassword().hasErrorText( "This field is required" ) ); } @Test public void doListenLoginTest() { MockListener<?> ml = MockHelper.listen( "/authentication/login", new MockListener<Object>() ); doLogin( User.ADMIN.getUsername(), User.ADMIN.getPassword() ); assertFalse( "Login link should not be available", main.loginLinkAvailable() ); assertTrue( ml.wasExecuted() ); MatcherAssert.assertThat( ml.getResult(), CoreMatchers.notNullValue() ); MockHelper.checkAndClean(); } @Test public void doMockLoginTest() { AuthenticationLoginResourceResponse result = new AuthenticationLoginResourceResponse(); AuthenticationLoginResource data = new AuthenticationLoginResource(); AuthenticationClientPermissions permissions = new AuthenticationClientPermissions(); ClientPermission permission = new ClientPermission(); permission.setId( "nexus:*" ); permission.setValue( 0 ); permissions.addPermission( permission ); data.setClientPermissions( permissions ); result.setData( data ); MockResponse mock = MockHelper.expect( "/authentication/login", new MockResponse( Status.SUCCESS_OK, result ) ); main.clickLogin().populate( User.ADMIN ).loginExpectingSuccess(); assertTrue( mock.wasExecuted() ); assertFalse( "Login link should not be available", main.loginLinkAvailable() ); MockHelper.checkAndClean(); } }