KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exolab > jms > net > socket > SocketRequestInfoTest


1 /**
2  * Redistribution and use of this software and associated documentation
3  * ("Software"), with or without modification, are permitted provided
4  * that the following conditions are met:
5  *
6  * 1. Redistributions of source code must retain copyright
7  * statements and notices. Redistributions must also contain a
8  * copy of this document.
9  *
10  * 2. Redistributions in binary form must reproduce the
11  * above copyright notice, this list of conditions and the
12  * following disclaimer in the documentation and/or other
13  * materials provided with the distribution.
14  *
15  * 3. The name "Exolab" must not be used to endorse or promote
16  * products derived from this Software without prior written
17  * permission of Exoffice Technologies. For written permission,
18  * please contact info@exolab.org.
19  *
20  * 4. Products derived from this Software may not be called "Exolab"
21  * nor may "Exolab" appear in their names without prior written
22  * permission of Exoffice Technologies. Exolab is a registered
23  * trademark of Exoffice Technologies.
24  *
25  * 5. Due credit should be given to the Exolab Project
26  * (http://www.exolab.org/).
27  *
28  * THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS
29  * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
30  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
31  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
32  * EXOFFICE TECHNOLOGIES OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
33  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
34  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
37  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
39  * OF THE POSSIBILITY OF SUCH DAMAGE.
40  *
41  * Copyright 2005 (C) Exoffice Technologies Inc. All Rights Reserved.
42  *
43  * $Id: SocketRequestInfoTest.java,v 1.1 2005/05/03 13:46:01 tanderson Exp $
44  */

45 package org.exolab.jms.net.socket;
46
47 import junit.framework.TestCase;
48
49 import org.exolab.jms.net.uri.URI;
50 import org.exolab.jms.net.util.Properties;
51
52
53 /**
54  * Tests the {@link SocketRequestInfo} class.
55  *
56  * @author <a HREF="mailto:tma@netspace.net.au">Tim Anderson</a>
57  * @version $Revision: 1.1 $ $Date: 2005/05/03 13:46:01 $
58  */

59 public class SocketRequestInfoTest extends TestCase {
60
61     /**
62      * Construct a new <code>SocketRequestInfoTest</code>.
63      *
64      * @param name the name of the test to run
65      */

66     public SocketRequestInfoTest(String JavaDoc name) {
67         super(name);
68     }
69
70     /**
71      * Tests accessors.
72      *
73      * @throws Exception for any error
74      */

75     public void testAccessors() throws Exception JavaDoc {
76         final String JavaDoc uri = "tcp://localhost:8050";
77         final String JavaDoc alternativeURI = "tcp://foo.org:9090";
78         final boolean bindAll = true;
79         final boolean bindOne = false;
80         final int maxThreads = 21;
81
82         SocketRequestInfo info = populate(uri, alternativeURI, bindAll,
83                                           maxThreads);
84
85         assertEquals(uri, info.getURI().toString());
86         assertEquals(alternativeURI, info.getAlternativeURI().toString());
87         assertEquals(bindAll, info.getBindAll());
88         info.setBindAll(bindOne);
89         assertEquals(bindOne, info.getBindAll());
90         assertEquals(maxThreads, info.getMaxThreads());
91     }
92
93     /**
94      * Tests {@link SocketRequestInfo#equals}.
95      *
96      * @throws Exception for any error
97      */

98     public void testEquals() throws Exception JavaDoc {
99         final String JavaDoc uri = "tcp://localhost:8050";
100         final String JavaDoc alternativeURI = "tcp://foo.org:9090";
101         final boolean bindAll = true;
102         final int maxThreads = 23;
103
104         SocketRequestInfo info1 = populate(uri, alternativeURI, bindAll,
105                                            maxThreads);
106         SocketRequestInfo info2 = populate(uri, alternativeURI, bindAll,
107                                            maxThreads);
108         assertEquals(info1, info2);
109
110         SocketRequestInfo info3 = populate(uri, null, bindAll, maxThreads);
111         assertFalse(info1.equals(info3));
112
113         SocketRequestInfo info4 = populate(uri, alternativeURI, !bindAll,
114                                            maxThreads);
115         assertFalse(info1.equals(info4));
116
117         SocketRequestInfo info5 = populate(uri, alternativeURI, bindAll,
118                                            maxThreads + 1);
119         assertFalse(info1.equals(info5));
120     }
121
122     /**
123      * Tests properties.
124      *
125      * @throws Exception for any error
126      */

127     public void testProperties() throws Exception JavaDoc {
128         final String JavaDoc prefix = "org.exolab.jms.net.tcps.";
129         final String JavaDoc uri = "tcps://exolab.org:4040/";
130         final String JavaDoc alternativeURI = "tcps://localhost:4040/";
131         final boolean bindAll = false;
132         final int maxThreads = 24;
133
134         Properties properties = new Properties(prefix);
135         SocketRequestInfo info1 = populate(uri, alternativeURI, bindAll,
136                                            maxThreads);
137         info1.export(properties);
138
139         SocketRequestInfo info2 = new SocketRequestInfo(new URI(uri),
140                                                         properties);
141         assertEquals(info1, info2);
142
143         assertEquals(uri, info2.getURI().toString());
144         assertEquals(alternativeURI, info2.getAlternativeURI().toString());
145         assertEquals(bindAll, info2.getBindAll());
146         assertEquals(maxThreads, info2.getMaxThreads());
147     }
148
149     /**
150      * Helper to populate an {@link SocketRequestInfo}.
151      *
152      * @param uri the URI
153      * @param alternativeURI the alternative URI
154      * @param bindAll indicates how socket connections should be
155      * accepted, on a multi-homed host
156      * @param maxThreads the maximum no. of threads to handle concurrent
157      * invocations
158      * @return a new <code>SocketRequestInfo</code>
159      * @throws Exception for any error
160      */

161     private SocketRequestInfo populate(String JavaDoc uri, String JavaDoc alternativeURI,
162                                        boolean bindAll, int maxThreads)
163             throws Exception JavaDoc {
164         SocketRequestInfo info = new SocketRequestInfo(new URI(uri));
165         if (alternativeURI != null) {
166             info.setAlternativeURI(new URI(alternativeURI));
167         }
168         info.setBindAll(bindAll);
169         info.setMaxThreads(maxThreads);
170         return info;
171     }
172
173 }
174
Popular Tags