~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/transport/http/authorization/BASICAuthorizationTestCase.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* JBoss, Home of Professional Open Source
3
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
4
 
* by the @authors tag. See the copyright.txt in the distribution for a
5
 
* full listing of individual contributors.
6
 
*
7
 
* This is free software; you can redistribute it and/or modify it
8
 
* under the terms of the GNU Lesser General Public License as
9
 
* published by the Free Software Foundation; either version 2.1 of
10
 
* the License, or (at your option) any later version.
11
 
*
12
 
* This software is distributed in the hope that it will be useful,
13
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 
* Lesser General Public License for more details.
16
 
*
17
 
* You should have received a copy of the GNU Lesser General Public
18
 
* License along with this software; if not, write to the Free
19
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21
 
*/
22
 
package org.jboss.test.remoting.transport.http.authorization;
23
 
 
24
 
import java.net.InetAddress;
25
 
import java.util.HashMap;
26
 
import java.util.HashSet;
27
 
import java.util.Map;
28
 
import java.util.Set;
29
 
 
30
 
import javax.management.MBeanServer;
31
 
 
32
 
import junit.framework.TestCase;
33
 
 
34
 
import org.apache.log4j.ConsoleAppender;
35
 
import org.apache.log4j.Level;
36
 
import org.apache.log4j.Logger;
37
 
import org.apache.log4j.PatternLayout;
38
 
import org.jboss.remoting.Client;
39
 
import org.jboss.remoting.InvocationRequest;
40
 
import org.jboss.remoting.InvokerLocator;
41
 
import org.jboss.remoting.ServerInvocationHandler;
42
 
import org.jboss.remoting.ServerInvoker;
43
 
import org.jboss.remoting.callback.InvokerCallbackHandler;
44
 
import org.jboss.remoting.transport.Connector;
45
 
import org.jboss.remoting.transport.PortUtil;
46
 
 
47
 
 
48
 
/**
49
 
 * Unit test for JBREM-791.
50
 
 * 
51
 
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
52
 
 * @version $Revision: 2631 $
53
 
 * <p>
54
 
 * Copyright Aug 14, 2007
55
 
 * </p>
56
 
 */
57
 
public class BASICAuthorizationTestCase extends TestCase
58
 
{
59
 
   public static int port;
60
 
   
61
 
   private static Logger log = Logger.getLogger(BASICAuthorizationTestCase.class);
62
 
   private static boolean firstTime = true;
63
 
   
64
 
   // remoting server connector
65
 
   private Connector connector;
66
 
   private InvokerLocator serverLocator;
67
 
   private TestInvocationHandler invocationHandler;
68
 
 
69
 
   
70
 
   /**
71
 
    * Sets up target remoting server.
72
 
    */
73
 
   public void setUp() throws Exception
74
 
   {
75
 
      if (firstTime)
76
 
      {
77
 
         firstTime = false;
78
 
         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
79
 
         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
80
 
         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
81
 
         PatternLayout layout = new PatternLayout(pattern);
82
 
         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
83
 
         Logger.getRootLogger().addAppender(consoleAppender);  
84
 
      }
85
 
   }
86
 
 
87
 
   
88
 
   public void tearDown()
89
 
   {
90
 
   }
91
 
   
92
 
   
93
 
   /**
94
 
    * Verifies that org.jboss.remoting.transport.http.HttpClientInvoker.getBasicAuth()
95
 
    * does not insert newlines into Base64 encoded name:password string.
96
 
    */
97
 
   public void testLongNamePassword() throws Throwable
98
 
   {
99
 
      log.info("entering " + getName());
100
 
      
101
 
      // Start server.
102
 
      String host = InetAddress.getLocalHost().getHostAddress();
103
 
      port = PortUtil.findFreePort(host);
104
 
      String locatorURI = getTransport() + "://" + host + ":" + port; 
105
 
      serverLocator = new InvokerLocator(locatorURI);
106
 
      log.info("Starting remoting server with locator uri of: " + locatorURI);
107
 
      HashMap config = new HashMap();
108
 
      config.put(InvokerLocator.FORCE_REMOTE, "true");
109
 
      addExtraServerConfig(config);
110
 
      connector = new Connector(serverLocator, config);
111
 
      connector.create();
112
 
      invocationHandler = new TestInvocationHandler();
113
 
      connector.addInvocationHandler("sample", invocationHandler);
114
 
      connector.start();
115
 
      
116
 
      // Create client.
117
 
      HashMap clientConfig = new HashMap();
118
 
      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
119
 
      addExtraClientConfig(clientConfig);
120
 
      Client client = new Client(serverLocator, clientConfig);
121
 
      client.connect();
122
 
      assertEquals("abc", client.invoke("abc"));
123
 
      log.info("client is connected");
124
 
      
125
 
      // Test invocation with BASIC authorization. 
126
 
      HashMap metadata = new HashMap();
127
 
      String s = "abcdefghijklmnopqursuvwxyz";
128
 
      String name = s + s;
129
 
      String password = s + s;
130
 
      assertEquals(52, name.length());
131
 
      assertEquals(52, password.length());
132
 
      metadata.put("http.basic.username", name);
133
 
      metadata.put("http.basic.password", password);
134
 
      assertEquals("xyz", client.invoke("xyz", metadata));
135
 
 
136
 
      client.disconnect();
137
 
      connector.stop();
138
 
   }
139
 
   
140
 
   
141
 
   protected String getTransport()
142
 
   {
143
 
      return "http";
144
 
   }
145
 
   
146
 
   
147
 
   protected void addExtraClientConfig(Map config) {}
148
 
   protected void addExtraServerConfig(Map config) {}
149
 
   
150
 
 
151
 
   static class TestInvocationHandler implements ServerInvocationHandler
152
 
   {
153
 
      public Set listeners = new HashSet();
154
 
      
155
 
      public void addListener(InvokerCallbackHandler callbackHandler)
156
 
      {
157
 
         listeners.add(callbackHandler);
158
 
      }
159
 
      public Object invoke(final InvocationRequest invocation) throws Throwable
160
 
      {
161
 
         return invocation.getParameter();
162
 
      }
163
 
      public void removeListener(InvokerCallbackHandler callbackHandler) {}
164
 
      public void setMBeanServer(MBeanServer server) {}
165
 
      public void setInvoker(ServerInvoker invoker) {}
166
 
   }
167
 
}
 
 
b'\\ No newline at end of file'