01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.description;
20:
21: import junit.framework.TestCase;
22: import org.apache.axis2.context.ConfigurationContext;
23: import org.apache.axis2.context.ConfigurationContextFactory;
24: import org.apache.axis2.engine.AxisConfiguration;
25:
26: public class ParameterEditTest extends TestCase {
27:
28: public void testParameterEdit() throws Exception {
29: ConfigurationContext configCtx = ConfigurationContextFactory
30: .createDefaultConfigurationContext();
31: AxisConfiguration axisConfig = configCtx.getAxisConfiguration();
32: AxisServiceGroup serviceGroup = new AxisServiceGroup();
33: serviceGroup.setServiceGroupName("testServiceGroup");
34: AxisService service = new AxisService();
35: service.setName("service");
36: serviceGroup.addService(service);
37: axisConfig.addServiceGroup(serviceGroup);
38: Parameter parameter = serviceGroup.getParameter("enableMTOM");
39: parameter.setValue("true");
40: Parameter para2 = serviceGroup.getParameter("enableMTOM");
41: assertEquals(para2.getValue(), "false");
42: Parameter test = new Parameter();
43: test.setName("test");
44: test.setValue("test");
45: serviceGroup.addParameter(test);
46: Parameter para = serviceGroup.getParameter("test");
47: assertNotNull(para);
48: assertEquals(para.getValue(), "test");
49: para.setValue("newValue");
50: para = serviceGroup.getParameter("test");
51: assertNotNull(para);
52: assertEquals(para.getValue(), "newValue");
53:
54: }
55: }
|