KickJava   Java API By Example, From Geeks To Geeks.

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


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.assertion.PublisherAssertion;
20 import org.apache.juddi.datatype.request.AddPublisherAssertions;
21 import org.apache.juddi.datatype.request.AuthInfo;
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 AddPublisherAssertionsHandlerTests extends HandlerTestCase
29 {
30     private static final String JavaDoc TEST_ID = "juddi.handler.addpublisherassertionhandler.test";
31     private AddPublisherAssertionsHandler handler = null;
32
33   public AddPublisherAssertionsHandlerTests(String JavaDoc arg0)
34   {
35     super(arg0);
36   }
37
38   public static void main(String JavaDoc[] args)
39   {
40     junit.textui.TestRunner.run(AddPublisherAssertionsHandlerTests.class);
41   }
42
43   public void setUp()
44   {
45         HandlerMaker maker = HandlerMaker.getInstance();
46         handler = (AddPublisherAssertionsHandler)maker.lookup(AddPublisherAssertionsHandler.TAG_NAME);
47   }
48
49     private RegistryObject getRegistryObject()
50     {
51
52         AuthInfo authInfo = new AuthInfo();
53         authInfo.setValue("6f157513-844e-4a95-a856-d257e6ba9726");
54
55         PublisherAssertion assertion = new PublisherAssertion();
56         assertion.setFromKey("3379ec11-a509-4668-9fee-19b134d0d09b");
57         assertion.setToKey("3379ec11-a509-4668-9fee-19b134d0d09b");
58         assertion.setKeyName("paKeyName");
59         assertion.setKeyValue("paKeyValue");
60         assertion.setTModelKey("uuid:3379ec11-a509-4668-9fee-19b134d0d09b");
61
62         AddPublisherAssertions object = new AddPublisherAssertions();
63         object.setAuthInfo(authInfo);
64         object.addPublisherAssertion(assertion);
65         object.addPublisherAssertion(assertion);
66
67         return object;
68
69     }
70
71     private Element JavaDoc getMarshalledElement(RegistryObject regObject)
72     {
73         Element JavaDoc parent = XMLUtils.newRootElement();
74         Element JavaDoc child = null;
75
76         if(regObject == null)
77             regObject = this.getRegistryObject();
78
79         handler.marshal(regObject,parent);
80         child = (Element JavaDoc)parent.getFirstChild();
81         parent.removeChild(child);
82
83         return child;
84     }
85
86     public void testMarshal()
87     {
88         Element JavaDoc child = getMarshalledElement(null);
89
90         String JavaDoc marshalledString = this.getXMLString(child);
91
92         assertNotNull("Marshalled AddPublisherAssertions ", marshalledString);
93
94     }
95
96     public void testUnMarshal()
97     {
98
99         Element JavaDoc child = getMarshalledElement(null);
100         RegistryObject regObject = handler.unmarshal(child);
101
102         assertNotNull("UnMarshalled AddPublisherAssertions ", regObject);
103
104     }
105
106   public void testMarshUnMarshal()
107   {
108         Element JavaDoc child = getMarshalledElement(null);
109
110         String JavaDoc marshalledString = this.getXMLString(child);
111
112         assertNotNull("Marshalled AddPublisherAssertions ", marshalledString);
113
114         RegistryObject regObject = handler.unmarshal(child);
115
116         child = getMarshalledElement(regObject);
117
118         String JavaDoc unMarshalledString = this.getXMLString(child);
119
120         assertNotNull("Unmarshalled AddPublisherAssertions ", unMarshalledString);
121
122         boolean equals = marshalledString.equals(unMarshalledString);
123
124         assertEquals("Expected result: ", marshalledString, unMarshalledString );
125   }
126
127 }
128
Popular Tags