KickJava   Java API By Example, From Geeks To Geeks.

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


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.request.AuthInfo;
20 import org.apache.juddi.datatype.request.GetRegisteredInfo;
21 import org.apache.juddi.util.xml.XMLUtils;
22 import org.w3c.dom.Element JavaDoc;
23
24 /**
25  * @author anou_mana@apache.org
26  */

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