Add more missing tests
This commit is contained in:
parent
a55313ed75
commit
1440b4fa0c
@ -0,0 +1,54 @@
|
||||
/*
|
||||
* Copyright 2020 The Netty Project
|
||||
*
|
||||
* The Netty Project 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 io.netty.channel.uring;
|
||||
|
||||
import io.netty.channel.Channel;
|
||||
import io.netty.channel.EventLoopGroup;
|
||||
import io.netty.channel.ServerChannel;
|
||||
import io.netty.channel.unix.tests.DetectPeerCloseWithoutReadTest;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
public class IOUringDetectPeerCloseWithReadTest extends DetectPeerCloseWithoutReadTest {
|
||||
@Override
|
||||
protected EventLoopGroup newGroup() {
|
||||
return new IOUringEventLoopGroup(2);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class<? extends ServerChannel> serverChannel() {
|
||||
return IOUringServerSocketChannel.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class<? extends Channel> clientChannel() {
|
||||
return IOUringSocketChannel.class;
|
||||
}
|
||||
|
||||
@Ignore("FIX ME")
|
||||
@Test
|
||||
@Override
|
||||
public void clientCloseWithoutServerReadIsDetectedNoExtraReadRequested() throws InterruptedException {
|
||||
super.clientCloseWithoutServerReadIsDetectedNoExtraReadRequested();
|
||||
}
|
||||
|
||||
@Ignore("FIX ME")
|
||||
@Test
|
||||
@Override
|
||||
public void serverCloseWithoutClientReadIsDetectedNoExtraReadRequested() throws InterruptedException {
|
||||
super.serverCloseWithoutClientReadIsDetectedNoExtraReadRequested();
|
||||
}
|
||||
}
|
@ -15,12 +15,31 @@
|
||||
*/
|
||||
package io.netty.channel.uring;
|
||||
|
||||
import io.netty.channel.Channel;
|
||||
import io.netty.channel.EventLoop;
|
||||
import io.netty.channel.EventLoopGroup;
|
||||
import io.netty.channel.ServerChannel;
|
||||
import io.netty.testsuite.transport.AbstractSingleThreadEventLoopTest;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
public class IOUringEventLoopTest {
|
||||
public class IOUringEventLoopTest extends AbstractSingleThreadEventLoopTest {
|
||||
|
||||
@Override
|
||||
protected EventLoopGroup newEventLoopGroup() {
|
||||
return new IOUringEventLoopGroup(1);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Channel newChannel() {
|
||||
return new IOUringSocketChannel();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class<? extends ServerChannel> serverChannelClass() {
|
||||
return IOUringServerSocketChannel.class;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSubmitMultipleTasksAndEnsureTheseAreExecuted() throws Exception {
|
||||
|
Loading…
Reference in New Issue
Block a user