]> source.dussan.org Git - archiva.git/blob
d4d75809d381aa9fa557af3b9029c9b44ca99095
[archiva.git] /
1 package org.apache.archiva.web.action.admin.appearance;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.admin.repository.admin.DefaultArchivaAdministration;
23 import org.apache.archiva.configuration.ArchivaConfiguration;
24 import org.apache.archiva.configuration.Configuration;
25 import org.apache.archiva.web.action.AbstractWebworkTestCase;
26 import org.easymock.MockControl;
27
28 /**
29  */
30 public abstract class AbstractOrganizationInfoActionTest
31     extends AbstractWebworkTestCase
32 {
33     protected MockControl archivaConfigurationControl;
34
35     protected ArchivaConfiguration configuration;
36
37     protected AbstractAppearanceAction action;
38
39     protected Configuration config;
40
41     protected abstract AbstractAppearanceAction getAction();
42
43     @Override
44     protected void setUp()
45         throws Exception
46     {
47         super.setUp();
48
49         config = new Configuration();
50         archivaConfigurationControl = MockControl.createControl( ArchivaConfiguration.class );
51         configuration = (ArchivaConfiguration) archivaConfigurationControl.getMock();
52
53         configuration.getConfiguration();
54         archivaConfigurationControl.setReturnValue( config, 1, 5 );
55
56         configuration.save( config );
57         archivaConfigurationControl.setVoidCallable( 1, 4 );
58
59         archivaConfigurationControl.replay();
60
61         DefaultArchivaAdministration defaultArchivaAdministration = new DefaultArchivaAdministration();
62         defaultArchivaAdministration.setArchivaConfiguration( configuration );
63         getAction().setArchivaAdministration( defaultArchivaAdministration );
64     }
65
66     protected void reloadAction()
67     {
68         action = getAction();
69         ( (DefaultArchivaAdministration) action.getArchivaAdministration() ).setArchivaConfiguration( configuration );
70
71     }
72 }