MRM-315 Added missing files

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@530758 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2007-04-20 12:08:38 +00:00
parent 0ccf0a4bdb
commit 1e457dfe23
3 changed files with 29 additions and 2 deletions

View File

@ -0,0 +1 @@
<configuration />

View File

@ -0,0 +1 @@
<configuration />

View File

@ -45,11 +45,11 @@ public class SettingsTest
{
clickEditConfiguration();
setFieldValue( "indexPath", getBasedir() + "target/index" );
setFieldValue( "indexPath", getBasedir() + "/target/web-ui-index" );
clickButtonWithValue( "Save Configuration" );
waitPage();
assertPage( "Administration" );
assertTextPresent( getBasedir() + "target/index" );
assertTextPresent( getBasedir() + "/target/web-ui-index" );
logout();
}
@ -156,4 +156,29 @@ public class SettingsTest
assertPage( "Administration" );
}
public void tearDown()
throws Exception
{
clickEditConfiguration();
setFieldValue( "indexPath", getBasedir() + "/target/web-ui-index" );
setFieldValue( "second", "0" );
setFieldValue( "minute", "0,30" );
setFieldValue( "hour", "*" );
setFieldValue( "dayOfMonth", "*" );
setFieldValue( "month", "*" );
setFieldValue( "dayOfWeek", "?" );
setFieldValue( "year", "" );
setFieldValue( "proxy.port", "8080" );
setFieldValue( "proxy.host", "" );
setFieldValue( "proxy.username", "" );
setFieldValue( "proxy.password", "" );
clickButtonWithValue( "Save Configuration" );
waitPage();
assertPage( "Administration" );
logout();
super.tearDown();
}
}