mirror of https://github.com/apache/archiva.git
[MRM-1226] Selenium tests for Repositories and Network Proxies
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@798789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a37878dc22
commit
7b15e3da49
|
@ -0,0 +1,96 @@
|
|||
package org.apache.archiva.web.test;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.web.test.parent.AbstractRepositoryTest;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test( groups = { "networkproxies" }, dependsOnMethods = { "testWithCorrectUsernamePassword" } )
|
||||
public class NetworkProxiesTest
|
||||
extends AbstractRepositoryTest
|
||||
{
|
||||
@Test (dependsOnMethods = { "testDeleteRepositoryGroup" } )
|
||||
public void testAddNetworkProxyNullValues()
|
||||
{
|
||||
goToNetworkProxiesPage();
|
||||
addNetworkProxy( "", "", "", "", "", "");
|
||||
assertTextPresent( "You must enter an identifier." );
|
||||
assertTextPresent( "You must enter a protocol." );
|
||||
assertTextPresent( "You must enter a host." );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testAddNetworkProxyNullValues" } )
|
||||
public void testAddNetworkProxyNullIdentifier()
|
||||
{
|
||||
goToNetworkProxiesPage();
|
||||
addNetworkProxy( "", "http", "localhost", "8080", "", "");
|
||||
assertTextPresent( "You must enter an identifier." );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testAddNetworkProxyNullIdentifier" } )
|
||||
public void testAddNetworkProxyNullProtocol()
|
||||
{
|
||||
goToNetworkProxiesPage();
|
||||
addNetworkProxy( "testing123", "", "localhost", "8080", "", "");
|
||||
assertTextPresent( "You must enter a protocol." );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testAddNetworkProxyNullProtocol" } )
|
||||
public void testAddNetworkProxiesNullHostname()
|
||||
{
|
||||
goToNetworkProxiesPage();
|
||||
addNetworkProxy( "testing123", "http", "", "8080", "", "");
|
||||
assertTextPresent( "You must enter a host." );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testAddNetworkProxiesNullHostname" } )
|
||||
public void testAddNetworkProxiesValidValues()
|
||||
{
|
||||
goToNetworkProxiesPage();
|
||||
addNetworkProxy( "testing123", "http", "localhost", "8080", "", "");
|
||||
assertPage( "Apache Archiva \\ Administration - Network Proxies" );
|
||||
assertTextPresent( "testing123" );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testAddNetworkProxiesValidValues" } )
|
||||
public void testEditNetworkProxy()
|
||||
{
|
||||
editNetworkProxies( "proxy.host", "localhost" );
|
||||
assertPage( "Apache Archiva \\ Administration - Network Proxies" );
|
||||
assertTextPresent( "localhost" );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testEditNetworkProxy" } )
|
||||
public void testDeleteNetworkProxy()
|
||||
{
|
||||
deleteNetworkProxy();
|
||||
assertPage( "Apache Archiva \\ Administration - Network Proxies" );
|
||||
assertTextPresent( "There are no network proxies configured yet." );
|
||||
}
|
||||
|
||||
@Test (dependsOnMethods = { "testDeleteNetworkProxy" } )
|
||||
public void testAddNetworkProxyAfterDelete()
|
||||
{
|
||||
addNetworkProxy( "testing123", "http", "localhost", "8080", "", "");
|
||||
assertPage( "Apache Archiva \\ Administration - Network Proxies" );
|
||||
assertTextPresent( "testing123" );
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,146 @@
|
|||
package org.apache.archiva.web.test;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.web.test.parent.AbstractRepositoryTest;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test( groups = { "repository" }, dependsOnMethods = { "testWithCorrectUsernamePassword" } )
|
||||
public class RepositoryTest
|
||||
extends AbstractRepositoryTest
|
||||
{
|
||||
public void testAddManagedRepoValidValues()
|
||||
{
|
||||
goToRepositoriesPage();
|
||||
clickLinkWithText( "Add" );
|
||||
addManagedRepository( "managedrepo1", "Managed Repository Sample 1" , getRepositoryDir() + "repository/" , "", "Maven 2.x Repository", "0 0 * * * ?", "", "" );
|
||||
clickButtonWithValue( "Save" );
|
||||
assertTextPresent( "Managed Repository Sample 1" );
|
||||
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoValidValues" } )
|
||||
public void testAddManagedRepoInvalidValues()
|
||||
{
|
||||
goToRepositoriesPage();
|
||||
clickLinkWithText( "Add" );
|
||||
addManagedRepository( "", "" , "" , "", "Maven 2.x Repository", "", "", "" );
|
||||
assertTextPresent( "You must enter a repository identifier." );
|
||||
assertTextPresent( "You must enter a repository name." );
|
||||
assertTextPresent( "You must enter a directory." );
|
||||
assertTextPresent( "Invalid cron expression." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoInvalidValues" } )
|
||||
public void testAddManagedRepoNoIdentifier()
|
||||
{
|
||||
//goToRepositoriesPage();
|
||||
addManagedRepository( "", "name" , "/home" , "/.index", "Maven 2.x Repository", "0 0 * * * ?", "", "" );
|
||||
assertTextPresent( "You must enter a repository identifier." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoNoIdentifier" } )
|
||||
public void testAddManagedRepoNoRepoName()
|
||||
{
|
||||
addManagedRepository( "identifier", "" , "/home" , "/.index", "Maven 2.x Repository", "0 0 * * * ?", "", "" );
|
||||
assertTextPresent( "You must enter a repository name." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoNoRepoName" } )
|
||||
public void testAddManagedRepoNoDirectory()
|
||||
{
|
||||
addManagedRepository( "identifier", "name" , "" , "/.index", "Maven 2.x Repository", "0 0 * * * ?", "", "" );
|
||||
assertTextPresent( "You must enter a directory." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoNoDirectory" } )
|
||||
public void testAddManagedRepoNoCron()
|
||||
{
|
||||
addManagedRepository( "identifier", "name" , "/home" , "/.index", "Maven 2.x Repository", "", "", "" );
|
||||
assertTextPresent( "Invalid cron expression." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoNoCron" } )
|
||||
public void testAddManagedRepoForEdit()
|
||||
{
|
||||
goToRepositoriesPage();
|
||||
clickLinkWithText( "Add" );
|
||||
addManagedRepository( "managedrepo", "Managed Repository Sample" , getRepositoryDir() + "local-repo/", "", "Maven 2.x Repository", "0 0 * * * ?", "", "" );
|
||||
clickButtonWithValue( "Save" );
|
||||
assertTextPresent( "Managed Repository Sample" );
|
||||
}
|
||||
|
||||
//TODO
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoForEdit" } )
|
||||
public void testEditManagedRepo()
|
||||
{
|
||||
editManagedRepository( "repository.name" , "Managed Repo" );
|
||||
assertTextPresent( "Managed Repository Sample" );
|
||||
}
|
||||
|
||||
//TODO
|
||||
@Test(dependsOnMethods = { "testEditManagedRepo" } )
|
||||
public void testDeleteManageRepo()
|
||||
{
|
||||
deleteManagedRepository();
|
||||
//assertTextNotPresent( "managedrepo" );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoValidValues" } )
|
||||
public void testAddRemoteRepoNullValues()
|
||||
{
|
||||
//goToRepositoriesPage();
|
||||
clickLinkWithLocator( "//div[@id='contentArea']/div/div[5]/a" );
|
||||
addRemoteRepository( "" , "" , "" , "" , "" , "" , "Maven 2.x Repository" );
|
||||
assertTextPresent( "You must enter a repository identifier." );
|
||||
assertTextPresent( "You must enter a repository name." );
|
||||
assertTextPresent( "You must enter a url." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddRemoteRepoNullValues" } )
|
||||
public void testAddRemoteRepositoryNullIdentifier()
|
||||
{
|
||||
addRemoteRepository( "" , "Remote Repository Sample" , "http://repository.codehaus.org/org/codehaus/mojo/" , "" , "" , "" , "Maven 2.x Repository" );
|
||||
assertTextPresent( "You must enter a repository identifier." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddRemoteRepositoryNullIdentifier" } )
|
||||
public void testAddRemoteRepoNullName()
|
||||
{
|
||||
addRemoteRepository( "remoterepo" , "" , "http://repository.codehaus.org/org/codehaus/mojo/" , "" , "" , "" , "Maven 2.x Repository" );
|
||||
assertTextPresent( "You must enter a repository name." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddRemoteRepoNullName" } )
|
||||
public void testAddRemoteRepoNullURL()
|
||||
{
|
||||
addRemoteRepository( "remoterepo" , "Remote Repository Sample" , "" , "" , "" , "" , "Maven 2.x Repository" );
|
||||
assertTextPresent( "You must enter a url." );
|
||||
}
|
||||
|
||||
@Test(dependsOnMethods = { "testAddManagedRepoValidValues" } )
|
||||
public void testAddRemoteRepoValidValues()
|
||||
{
|
||||
goToRepositoriesPage();
|
||||
clickLinkWithLocator( "//div[@id='contentArea']/div/div[5]/a" );
|
||||
addRemoteRepository( "remoterepo" , "Remote Repository Sample" , "http://repository.codehaus.org/org/codehaus/mojo/" , "" , "" , "" , "Maven 2.x Repository" );
|
||||
assertTextPresent( "Remote Repository Sample" );
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue