/** * 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.nexus2237; import static org.hamcrest.CoreMatchers.not; import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.MatcherAssert.assertThat; import org.codehaus.plexus.component.annotations.Component; import org.hamcrest.collection.IsCollectionContaining; import org.sonatype.nexus.mock.MockEvent; import org.sonatype.nexus.mock.MockListener; import org.sonatype.nexus.mock.SeleniumTest; import org.sonatype.nexus.mock.pages.RepoTargetForm; import org.sonatype.nexus.mock.pages.RepoTargetTab; import org.sonatype.nexus.mock.rest.MockHelper; import org.sonatype.nexus.rest.model.RepositoryTargetResourceResponse; import org.sonatype.nexus.selenium.util.NxAssert; import org.testng.Assert; import org.testng.annotations.Test; @Component( role = Nexus2237RepoTargetTest.class ) public class Nexus2237RepoTargetTest extends SeleniumTest { @Test public void errorMessages() throws InterruptedException { doLogin(); RepoTargetForm target = main.openRepoTargets().addRepoTarget(); NxAssert.requiredField( target.getName(), "target" ); NxAssert.requiredField( target.getRepositoryType(), "maven2" ); target.save(); NxAssert.hasErrorText( target.getPattern(), "The target should have at least one pattern." ); target.addPattern( ".*" ); NxAssert.noErrorText( target.getPattern() ); target.cancel(); } @Test public void repoTargetCRUD() throws InterruptedException { doLogin(); RepoTargetTab targets = main.openRepoTargets(); // create String name = "seleniumTarget"; String repoType = "maven2"; final String pattern = ".*"; final String pattern2 = ".*maven-metadata\\.xml.*"; MockListener ml = MockHelper.listen( "/repo_targets", new MockListener() { @Override public void onPayload( Object payload, MockEvent evt ) { assertThat( payload, not( nullValue() ) ); RepositoryTargetResourceResponse result = (RepositoryTargetResourceResponse) payload; assertThat( result.getData().getPatterns(), IsCollectionContaining.hasItems( pattern, pattern2 ) ); } } ); targets.addRepoTarget().populate( name, repoType, pattern, pattern2 ).save(); RepositoryTargetResourceResponse result = (RepositoryTargetResourceResponse) ml.getResult(); String targetId = nexusBaseURL + "service/local/repo_targets/" + result.getData().getId(); MockHelper.checkAssertions(); MockHelper.clearMocks(); targets.refresh(); Assert.assertTrue( targets.getGrid().contains( targetId ) ); targets.refresh(); // read RepoTargetForm target = targets.select( targetId ); NxAssert.valueEqualsTo( target.getName(), name ); NxAssert.valueEqualsTo( target.getRepositoryType(), repoType ); targets.refresh(); // update String newName = "new selenium repository target"; target = targets.select( targetId ); target.getName().type( newName ); target.save(); targets.refresh(); target = targets.select( targetId ); NxAssert.valueEqualsTo( target.getName(), newName ); targets.refresh(); // delete targets.select( targetId ); targets.delete().clickYes(); targets.refresh(); Assert.assertFalse( targets.getGrid().contains( targetId ) ); } }