Restore of interrupt status after catch of InterruptedException was added

This commit is contained in:
Valentin Kovalenko 2014-01-31 14:51:21 +04:00 committed by Norman Maurer
parent 38d04c927f
commit 40f4b5c9db
2 changed files with 41 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2013 The Netty Project
* Copyright 2014 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
@ -110,8 +110,9 @@ public class ThreadLocalRandom extends Random {
initialSeedUniquifier = result;
break;
}
} catch (InterruptedException ignore) {
// Ignore
} catch (InterruptedException e) {
// restore interrupt status because we don't know how to/don't need to handle it here
Thread.currentThread().interrupt();
}
}

View File

@ -0,0 +1,37 @@
/*
* Copyright 2014 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.util.internal;
import org.junit.Test;
import static org.junit.Assert.*;
public class ThreadLocalRandomTest {
@Test
public void getInitialSeedUniquifierPreservesInterrupt() {
try {
Thread.currentThread().interrupt();
assertTrue("Assert that thread is interrupted before invocation of getInitialSeedUniquifier()",
Thread.currentThread().isInterrupted());
ThreadLocalRandom.getInitialSeedUniquifier();
assertTrue("Assert that thread is interrupted after invocation of getInitialSeedUniquifier()",
Thread.currentThread().isInterrupted());
} finally {
Thread.interrupted(); // clear interrupted status in order to not affect other tests
}
}
}