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: */package org.apache.cxf.tools.wsdlto;
19:
20: import java.net.URISyntaxException;
21:
22: import org.apache.cxf.common.i18n.Message;
23: import org.apache.cxf.tools.common.ToolConstants;
24: import org.apache.cxf.tools.common.ToolContext;
25: import org.apache.cxf.tools.common.ToolException;
26: import org.junit.Assert;
27: import org.junit.Test;
28:
29: public class WSDLToJavaContainerTest extends Assert {
30:
31: @Test
32: public void testNoPlugin() throws Exception {
33: WSDLToJavaContainer container = new WSDLToJavaContainer(
34: "dummy", null);
35:
36: ToolContext context = new ToolContext();
37: context.put(ToolConstants.CFG_WSDLURL,
38: getLocation("hello_world.wsdl"));
39: container.setContext(context);
40:
41: try {
42: container.execute();
43: } catch (ToolException te) {
44: assertEquals(getLogMessage("FOUND_NO_FRONTEND"), te
45: .getMessage());
46: } catch (Exception e) {
47: fail("Should not throw any exception but ToolException.");
48: }
49: }
50:
51: private String getLocation(String wsdlFile)
52: throws URISyntaxException {
53: return this .getClass().getResource(wsdlFile).toURI().getPath();
54: }
55:
56: protected String getLogMessage(String key, Object... params) {
57: return new Message(key, WSDLToJavaContainer.LOG, params)
58: .toString();
59: }
60: }
|