KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > handler > CompletionStatusHandlerTests


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.juddi.handler;
17
18 import org.apache.juddi.datatype.RegistryObject;
19 import org.apache.juddi.datatype.response.CompletionStatus;
20 import org.apache.juddi.util.xml.XMLUtils;
21 import org.w3c.dom.Element JavaDoc;
22
23 /**
24  * @author anou_mana@apache.org
25  */

26 public class CompletionStatusHandlerTests extends HandlerTestCase
27 {
28     private static final String JavaDoc TEST_ID = "juddi.handler.CompletionStatus.test";
29     private CompletionStatusHandler handler = null;
30
31   public CompletionStatusHandlerTests(String JavaDoc arg0)
32   {
33     super(arg0);
34   }
35
36   public static void main(String JavaDoc[] args)
37   {
38     junit.textui.TestRunner.run(CompletionStatusHandlerTests.class);
39   }
40
41   public void setUp()
42   {
43         HandlerMaker maker = HandlerMaker.getInstance();
44         handler = (CompletionStatusHandler)maker.lookup(CompletionStatusHandler.TAG_NAME);
45   }
46
47     private RegistryObject getRegistryObject()
48     {
49
50         CompletionStatus object = new CompletionStatus();
51         object.setValue(CompletionStatus.FROMKEY_INCOMPLETE);
52
53         return object;
54
55     }
56
57     private Element JavaDoc getMarshalledElement(RegistryObject regObject)
58     {
59         Element JavaDoc parent = XMLUtils.newRootElement();
60         Element JavaDoc child = null;
61
62         if(regObject == null)
63             regObject = this.getRegistryObject();
64
65         handler.marshal(regObject,parent);
66         child = (Element JavaDoc)parent.getFirstChild();
67         parent.removeChild(child);
68
69         return child;
70     }
71
72     public void testMarshal()
73     {
74         Element JavaDoc child = getMarshalledElement(null);
75
76         String JavaDoc marshalledString = this.getXMLString(child);
77
78         assertNotNull("Marshalled CompletionStatus ", marshalledString);
79
80     }
81
82     public void testUnMarshal()
83     {
84
85         Element JavaDoc child = getMarshalledElement(null);
86         RegistryObject regObject = handler.unmarshal(child);
87
88         assertNotNull("UnMarshalled CompletionStatus ", regObject);
89
90     }
91
92   public void testMarshUnMarshal()
93   {
94         Element JavaDoc child = getMarshalledElement(null);
95
96         String JavaDoc marshalledString = this.getXMLString(child);
97
98         assertNotNull("Marshalled CompletionStatus ", marshalledString);
99
100         RegistryObject regObject = handler.unmarshal(child);
101
102         child = getMarshalledElement(regObject);
103
104         String JavaDoc unMarshalledString = this.getXMLString(child);
105
106         assertNotNull("Unmarshalled CompletionStatus ", unMarshalledString);
107
108         boolean equals = marshalledString.equals(unMarshalledString);
109
110         assertEquals("Expected result: ", marshalledString, unMarshalledString );
111   }
112
113 }
114
Popular Tags