You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2011/12/21 09:04:13 UTC

svn commit: r1221640 - in /james/protocols/trunk/api/src/test: ./ java/ java/org/ java/org/apache/ java/org/apache/james/ java/org/apache/james/protocols/ java/org/apache/james/protocols/api/

Author: norman
Date: Wed Dec 21 08:04:13 2011
New Revision: 1221640

URL: http://svn.apache.org/viewvc?rev=1221640&view=rev
Log:
Add unit test as proof of PROTOCOLS-62

Added:
    james/protocols/trunk/api/src/test/
    james/protocols/trunk/api/src/test/java/
    james/protocols/trunk/api/src/test/java/org/
    james/protocols/trunk/api/src/test/java/org/apache/
    james/protocols/trunk/api/src/test/java/org/apache/james/
    james/protocols/trunk/api/src/test/java/org/apache/james/protocols/
    james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/
    james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java   (with props)

Added: james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java
URL: http://svn.apache.org/viewvc/james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java?rev=1221640&view=auto
==============================================================================
--- james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java (added)
+++ james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java Wed Dec 21 08:04:13 2011
@@ -0,0 +1,230 @@
+/****************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one   *
+ * or more contributor license agreements.  See the NOTICE file *
+ * distributed with this work for additional information        *
+ * regarding copyright ownership.  The ASF licenses this file   *
+ * to you under the Apache License, Version 2.0 (the            *
+ * "License"); you may not use this file except in compliance   *
+ * with the License.  You may obtain a copy of the License at   *
+ *                                                              *
+ *   http://www.apache.org/licenses/LICENSE-2.0                 *
+ *                                                              *
+ * Unless required by applicable law or agreed to in writing,   *
+ * software distributed under the License is distributed on an  *
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
+ * KIND, either express or implied.  See the License for the    *
+ * specific language governing permissions and limitations      *
+ * under the License.                                           *
+ ****************************************************************/
+
+package org.apache.james.protocols.api;
+
+import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+import java.net.InetSocketAddress;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+import java.util.UUID;
+import java.util.concurrent.CountDownLatch;
+
+import org.apache.james.protocols.api.handler.LineHandler;
+
+import junit.framework.TestCase;
+
+/**
+ * Test-case for PROTOCOLS-62
+ *
+ */
+public class AbstractProtocolTransportTest extends TestCase{
+
+    private final static String US_ASCII = "US-ASCII";
+    
+    public void testWriteOrder() throws InterruptedException, UnsupportedEncodingException {
+        final List<Response> messages = new ArrayList<Response>();
+        for (int i = 0; i < 2000; i++) {
+            messages.add(new TestResponse());
+        }
+        
+        checkWrittenResponses(messages);
+    }
+    
+    public void testWriteOrderFutureResponseAllReady() throws InterruptedException, UnsupportedEncodingException {
+        final List<Response> messages = new ArrayList<Response>();
+        for (int i = 0; i < 2000; i++) {
+                FutureResponseImpl r = new FutureResponseImpl();
+                r.setResponse(new TestResponse());
+                messages.add(r);
+        }
+        checkWrittenResponses(messages);
+    }
+        
+       
+        
+    public void testWriteOrderFutureResponse() throws InterruptedException, UnsupportedEncodingException {
+        final List<Response> messages = new ArrayList<Response>();
+        for (int i = 0; i < 2000; i++) {
+            messages.add(new FutureResponseImpl());
+        }
+        notifyFutureResponses(messages, false);
+
+        
+        checkWrittenResponses(messages);
+    }
+
+    public void testWriteOrderFutureResponseReverseNotify() throws InterruptedException, UnsupportedEncodingException {
+        final List<Response> messages = new ArrayList<Response>();
+        for (int i = 0; i < 2000; i++) {
+            messages.add(new FutureResponseImpl());
+        }
+        notifyFutureResponses(messages, true);
+
+        checkWrittenResponses(messages);
+    }
+    public void testWriteOrderMixedResponse() throws InterruptedException, UnsupportedEncodingException {
+        final List<Response> messages = new ArrayList<Response>();
+        for (int i = 0; i < 2000; i++) {
+            if (i % 2 == 0) {
+                messages.add(new TestResponse());
+            } else {
+                messages.add(new FutureResponseImpl());
+            }
+
+        }
+        notifyFutureResponses(messages, false);
+        
+        checkWrittenResponses(messages);
+    }
+    
+    private void notifyFutureResponses(final List<Response> messages, final boolean reverse) {
+        new Thread(new Runnable() {
+            
+            @Override
+            public void run() {
+                try {
+                    Thread.sleep(200);
+                    List<Response> responses = new ArrayList<Response>(messages);
+                    if (reverse) {
+                        Collections.reverse(responses);
+                    } 
+                    
+                    for (int i = 0; i < responses.size(); i++) {
+                        Response r = responses.get(i);
+                        if (r instanceof FutureResponseImpl) {
+                            ((FutureResponseImpl) r).setResponse(new TestResponse());
+                        }
+                    }
+
+                } catch (InterruptedException e) {
+                    throw new RuntimeException();
+                }
+                
+            }
+        }).start();
+    }
+    private void checkWrittenResponses(List<Response> messages) throws InterruptedException, UnsupportedEncodingException {
+        final List<byte[]> writtenMessages = new ArrayList<byte[]>();
+
+        final CountDownLatch latch = new CountDownLatch(messages.size());
+
+        AbstractProtocolTransport transport = new AbstractProtocolTransport() {
+
+            public void setReadable(boolean readable) {
+                throw new UnsupportedOperationException();
+            }
+            
+            public <T extends ProtocolSession> void pushLineHandler(LineHandler<T> overrideCommandHandler, T session) {
+                throw new UnsupportedOperationException();
+            }
+            
+            public void popLineHandler() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public boolean isTLSStarted() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public boolean isStartTLSSupported() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public boolean isReadable() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public InetSocketAddress getRemoteAddress() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public int getPushedLineHandlerCount() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public InetSocketAddress getLocalAddress() {
+                throw new UnsupportedOperationException();
+            }
+            
+            public String getId() {
+                throw new UnsupportedOperationException();
+            }
+            
+            protected void writeToClient(InputStream in, ProtocolSession session, boolean startTLS) {
+                throw new UnsupportedOperationException();
+            }
+            
+            protected void writeToClient(byte[] bytes, ProtocolSession session, boolean startTLS) {
+                writtenMessages.add(bytes);
+                latch.countDown();
+            }
+            
+            @Override
+            protected void close() {
+                throw new UnsupportedOperationException();
+            }
+        };
+        for (Response message: messages) {
+            transport.writeResponse(message, null);
+        }
+        latch.await();
+        
+        assertEquals(messages.size(), writtenMessages.size());
+        
+        for (int i = 0; i < messages.size(); i++) {
+            Response response = messages.get(i);
+            checkBytesEquals(response.getLines().get(0).toString().getBytes(US_ASCII), writtenMessages.get(i));
+        }
+    }
+    private void checkBytesEquals(byte[] expected, byte[] received) throws UnsupportedEncodingException {
+        
+        assertEquals("'" + new String(expected, US_ASCII) + "'=>'" + new String(received, US_ASCII) + "'", expected.length, received.length - 2);
+        for (int i = 0; i < expected.length; i++) {
+            assertEquals("'" + new String(expected, US_ASCII) + "'=>'" + new String(received, US_ASCII) + "'", expected[i], received[i]);
+        }
+    }
+    
+    private final static class TestResponse implements Response {
+
+        private String msg;
+
+        public TestResponse() {
+            this.msg =  UUID.randomUUID().toString();
+        }
+        
+        @Override
+        public String getRetCode() {
+            throw new UnsupportedOperationException();
+        }
+
+        @Override
+        public List<CharSequence> getLines() {
+            return Arrays.asList((CharSequence)msg);
+        }
+
+        @Override
+        public boolean isEndSession() {
+            return false;
+        }
+    }
+}

Propchange: james/protocols/trunk/api/src/test/java/org/apache/james/protocols/api/AbstractProtocolTransportTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org