[MRM-1241] Selenium Tests for Repository Scanning and Database

- adding test scripts for Database



git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@887086 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Marecor M. Baclay 2009-12-04 07:06:37 +00:00
parent 6c1cd8d63f
commit f640a09b4f
5 changed files with 100 additions and 2 deletions

View File

@ -41,6 +41,7 @@ under the License.
<include name= "appearance" /> <include name= "appearance" />
<include name= "findartifact" /> <include name= "findartifact" />
<include name= "legacysupport" /> <include name= "legacysupport" />
<include name= "database" />
</run> </run>
</groups> </groups>
<packages> <packages>

View File

@ -0,0 +1,95 @@
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 = { "database" }, dependsOnMethods = { "testWithCorrectUsernamePassword" }, sequential = true )
public class DatabaseTest
extends AbstractRepositoryTest
{
public void testUpdateCron_NullValue()
{
goToDatabasePage();
setFieldValue( "database_cron" , "");
clickButtonWithValue( "Update Cron" );
assertTextPresent( "Invalid cron expression value(s)" );
assertTextPresent( "You must enter a cron expression." );
}
@Test (dependsOnMethods = { "testUpdateCron_NullValue" } )
public void testUpdateCron_InvalidValue()
{
setFieldValue( "database_cron" , "asdf" );
clickButtonWithValue( "Update Cron" );
assertTextPresent( "Invalid cron expression value(s)" );
}
@Test (dependsOnMethods = { "testUpdateCron_InvalidValue" } )
public void testUpdateCron_ValidValue()
{
setFieldValue( "database_cron" , "0 0 * * * ?" );
clickButtonWithValue( "Update Cron" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
@Test (dependsOnMethods = { "testUpdateCron_ValidValue" } )
public void testUpdateConsumersUnprocessedArtifactsScanning_UnsetAll()
{
getSelenium().uncheck( "enabledUnprocessedConsumers" );
clickSubmitWithLocator( "//input[@id='database_0' and @value='Update Consumers']" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
@Test (dependsOnMethods = { "testUpdateConsumersUnprocessedArtifactsScanning_UnsetAll" } )
public void testUpdateConsumersUnprocessedArtifactsScanning()
{
checkField( "enabledUnprocessedConsumers" );
clickSubmitWithLocator( "//input[@id='database_0' and @value='Update Consumers']" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
@Test (dependsOnMethods = { "testUpdateConsumersUnprocessedArtifactsScanning" } )
public void testUpdateConsumersArtifactCleanupScanning_UnsetAll()
{
getSelenium().uncheck( "enabledCleanupConsumers" );
getSelenium().uncheck( "//input[@name='enabledCleanupConsumers' and @value='not-present-remove-db-project']" );
getSelenium().uncheck( "//input[@name='enabledCleanupConsumers' and @value='not-present-remove-indexed']" );
clickSubmitWithLocator( "//form[@id='database']/table/tbody/tr[5]/td/input" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
@Test (dependsOnMethods = { "testUpdateConsumersArtifactCleanupScanning_UnsetAll" } )
public void testUpdateConsumersArtifactCleanupScanning()
{
checkField( "enabledCleanupConsumers" );
clickSubmitWithLocator( "//form[@id='database']/table/tbody/tr[5]/td/input" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
@Test (dependsOnMethods = { "testUpdateConsumersArtifactCleanupScanning" } )
public void testUpdateDatabaseNow()
{
clickButtonWithValue( "Update Database Now" );
assertPage( "Apache Archiva \\ Administration - Database" );
}
}

View File

@ -40,6 +40,7 @@ public class RepositoryTest
@Test(dependsOnMethods = { "testAddManagedRepoValidValues" } ) @Test(dependsOnMethods = { "testAddManagedRepoValidValues" } )
public void testAddManagedRepoInvalidValues() public void testAddManagedRepoInvalidValues()
{ {
goToRepositoriesPage();
assertRepositoriesPage(); assertRepositoriesPage();
clickLinkWithLocator( "//div[@id='contentArea']/div/div/a[@href='/archiva/admin/addRepository.action']" ); clickLinkWithLocator( "//div[@id='contentArea']/div/div/a[@href='/archiva/admin/addRepository.action']" );
addManagedRepository( "", "" , "" , "", "Maven 2.x Repository", "", "", "" ); addManagedRepository( "", "" , "" , "", "Maven 2.x Repository", "", "", "" );

View File

@ -52,6 +52,7 @@ public class VirtualRepositoryTest
@Test(dependsOnMethods = { "testAddRepositoryToRepositoryGroup" } ) @Test(dependsOnMethods = { "testAddRepositoryToRepositoryGroup" } )
public void testDeleteRepositoryOfRepositoryGroup() public void testDeleteRepositoryOfRepositoryGroup()
{ {
goToRepositoryGroupsPage();
deleteRepositoryInRepositoryGroups(); deleteRepositoryInRepositoryGroups();
assertTextPresent( "Repository Groups" ); assertTextPresent( "Repository Groups" );
assertTextNotPresent( "No Repository Groups Defined." ); assertTextNotPresent( "No Repository Groups Defined." );

View File

@ -340,7 +340,7 @@ public abstract class AbstractRepositoryTest
assertTextPresent( "Administration - Database" ); assertTextPresent( "Administration - Database" );
assertTextPresent( "Database - Unprocessed Artifacts Scanning" ); assertTextPresent( "Database - Unprocessed Artifacts Scanning" );
assertTextPresent( "Cron:" ); assertTextPresent( "Cron:" );
assertElementPresent( "cron" ); assertElementPresent( "database_cron" );
assertButtonWithValuePresent( "Update Cron" ); assertButtonWithValuePresent( "Update Cron" );
assertButtonWithValuePresent( "Update Database Now" ); assertButtonWithValuePresent( "Update Database Now" );
assertTextPresent( "Database - Unprocessed Artifacts Scanning" ); assertTextPresent( "Database - Unprocessed Artifacts Scanning" );