KickJava   Java API By Example, From Geeks To Geeks.

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


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.publisher.Publisher;
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 PublisherHandlerTests extends HandlerTestCase
27 {
28     private static final String JavaDoc TEST_ID = "juddi.handler.DeletePublisher.test";
29     private PublisherHandler handler = null;
30
31   public PublisherHandlerTests(String JavaDoc arg0)
32   {
33     super(arg0);
34   }
35
36   public static void main(String JavaDoc[] args)
37   {
38     junit.textui.TestRunner.run( PublisherHandlerTests.class);
39   }
40
41   public void setUp()
42   {
43         HandlerMaker maker = HandlerMaker.getInstance();
44         handler = ( PublisherHandler)maker.lookup( PublisherHandler.TAG_NAME);
45   }
46
47     private RegistryObject getRegistryObject()
48     {
49         Publisher object = new Publisher();
50         object.setPublisherID("bcrosby");
51         object.setName("Bing Crosby");
52         object.setEmailAddress("bcrosby@juddi.org");
53         object.setAdmin(true);
54         object.setEnabled(true);
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 Publisher ", 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 Publisher ", 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 Publisher ", 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 Publisher ", unMarshalledString);
110
111         boolean equals = marshalledString.equals(unMarshalledString);
112
113         assertEquals("Expected result: ", marshalledString, unMarshalledString );
114   }
115
116 }
117
Popular Tags