⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 executorfilterregressiontest.java

📁 apache 的一个socket框架
💻 JAVA
字号:
/* *  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.mina.filter.executor;import java.net.SocketAddress;import junit.framework.Assert;import junit.framework.TestCase;import org.apache.mina.common.CloseFuture;import org.apache.mina.common.IdleStatus;import org.apache.mina.common.IoFilterChain;import org.apache.mina.common.IoHandler;import org.apache.mina.common.IoService;import org.apache.mina.common.IoServiceConfig;import org.apache.mina.common.IoSession;import org.apache.mina.common.IoSessionConfig;import org.apache.mina.common.TransportType;import org.apache.mina.common.IoFilter.NextFilter;import org.apache.mina.common.IoFilter.WriteRequest;import org.apache.mina.common.support.BaseIoSession;import java.util.concurrent.ThreadPoolExecutor;import java.util.concurrent.TimeUnit;public class ExecutorFilterRegressionTest extends TestCase {    private ExecutorFilter filter;    public ExecutorFilterRegressionTest() {    }    public void setUp() throws Exception {        filter = new ExecutorFilter();    }    public void tearDown() throws Exception {        ((ThreadPoolExecutor) filter.getExecutor()).shutdown();        filter = null;    }    public void testEventOrder() throws Throwable {        final EventOrderChecker nextFilter = new EventOrderChecker();        final EventOrderCounter[] sessions = new EventOrderCounter[] {                new EventOrderCounter(), new EventOrderCounter(),                new EventOrderCounter(), new EventOrderCounter(),                new EventOrderCounter(), new EventOrderCounter(),                new EventOrderCounter(), new EventOrderCounter(),                new EventOrderCounter(), new EventOrderCounter(), };        final int loop = 1000000;        final int end = sessions.length - 1;        final ExecutorFilter filter = this.filter;        ((ThreadPoolExecutor) filter.getExecutor()).setKeepAliveTime(3,                TimeUnit.SECONDS);        for (int i = 0; i < loop; i++) {            Integer objI = new Integer(i);            for (int j = end; j >= 0; j--) {                filter.messageReceived(nextFilter, sessions[j], objI);            }            if (nextFilter.throwable != null) {                throw nextFilter.throwable;            }        }        Thread.sleep(1000);        for (int i = end; i >= 0; i--) {            Assert.assertEquals(loop - 1, sessions[i].lastCount.intValue());        }    }    private static class EventOrderCounter extends BaseIoSession {        private Integer lastCount = null;        public synchronized void setLastCount(Integer newCount) {            if (lastCount != null) {                Assert.assertEquals(lastCount.intValue() + 1, newCount                        .intValue());            }            lastCount = newCount;        }        public IoHandler getHandler() {            return null;        }        public IoFilterChain getFilterChain() {            return null;        }        public CloseFuture close() {            return null;        }        public TransportType getTransportType() {            return null;        }        public SocketAddress getRemoteAddress() {            return null;        }        public SocketAddress getLocalAddress() {            return null;        }        public int getScheduledWriteRequests() {            return 0;        }        protected void updateTrafficMask() {        }        public boolean isClosing() {            return false;        }        public IoService getService() {            return null;        }        public IoServiceConfig getServiceConfig() {            return null;        }        public IoSessionConfig getConfig() {            return null;        }        public SocketAddress getServiceAddress() {            return null;        }        public int getScheduledWriteBytes() {            return 0;        }    }    private static class EventOrderChecker implements NextFilter {        private Throwable throwable;        public void sessionOpened(IoSession session) {        }        public void sessionClosed(IoSession session) {        }        public void sessionIdle(IoSession session, IdleStatus status) {        }        public void exceptionCaught(IoSession session, Throwable cause) {        }        public void messageReceived(IoSession session, Object message) {            try {                ((EventOrderCounter) session).setLastCount((Integer) message);            } catch (Throwable t) {                if (this.throwable == null) {                    this.throwable = t;                }            }        }        public void messageSent(IoSession session, Object message) {        }        public void filterWrite(IoSession session, WriteRequest writeRequest) {        }        public void filterClose(IoSession session) {        }        public void sessionCreated(IoSession session) {        }    }    public static void main(String[] args) {        junit.textui.TestRunner.run(ExecutorFilterRegressionTest.class);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -