mirror of https://github.com/apache/archiva.git
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:
parent
0ccf0a4bdb
commit
1e457dfe23
|
@ -0,0 +1 @@
|
|||
<configuration />
|
|
@ -0,0 +1 @@
|
|||
<configuration />
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue