Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.3k views
in Technique[技术] by (71.8m points)

netty 单元测试如何模拟连接不上的情况.

连不上的情况要如何模拟, 代码如下

public static void main(String[] args) {
        EmbeddedChannel channel = new EmbeddedChannel();
        channel.connect(new InetSocketAddress("0.0.0.0", 9999))
                .addListener(new ChannelFutureListener() {
                    @Override
                    public void operationComplete(ChannelFuture future) throws Exception {
                        if (future.isSuccess()) {
                            // 连接上的业务处理
                        } else {
                            // 切换一个网口重连
                        }
                    }
                });
    };

EmbeddedChannel 每次都是连接成功的, 要如何设置连接失败的情况.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...