KickJava   Java API By Example, From Geeks To Geeks.

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


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

28 public class FindPublisherHandlerTests extends HandlerTestCase
29 {
30     private static final String JavaDoc TEST_ID = "juddi.handler.DeletePublisher.test";
31     private FindPublisherHandler handler = null;
32
33   public FindPublisherHandlerTests(String JavaDoc arg0)
34   {
35     super(arg0);
36   }
37
38   public static void main(String JavaDoc[] args)
39   {
40     junit.textui.TestRunner.run( FindPublisherHandlerTests.class);
41   }
42
43   public void setUp()
44   {
45         HandlerMaker maker = HandlerMaker.getInstance();
46         handler = ( FindPublisherHandler)maker.lookup( FindPublisherHandler.TAG_NAME);
47   }
48
49     private RegistryObject getRegistryObject()
50     {
51         FindPublisher object = new FindPublisher();
52         object.setName(new Name("s","en"));
53         object.addFindQualifier(new FindQualifier(FindQualifier.SORT_BY_NAME_ASC));
54         object.setMaxRows(50);
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 FindPublisher ", 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 FindPublisher ", 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 FindPublisher ", 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 FindPublisher ", unMarshalledString);
110
111         boolean equals = marshalledString.equals(unMarshalledString);
112
113         assertEquals("Expected result: ", marshalledString, unMarshalledString );
114   }
115
116 }
117
Popular Tags