-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Dubbo-619] Fix consumer will generate wrong stackTrace (#2956)
* [Dubbo-619] Fix consumer will generate wrong stackTrace when provider throws exception with empty stackTrace * add license
- Loading branch information
1 parent
83a75d3
commit e4acdf7
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
dubbo-rpc/dubbo-rpc-api/src/test/java/org/apache/dubbo/rpc/RpcResultTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* 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.dubbo.rpc; | ||
|
||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.fail; | ||
|
||
public class RpcResultTest { | ||
@Test | ||
public void testRecreateWithNormalException() { | ||
NullPointerException npe = new NullPointerException(); | ||
RpcResult rpcResult = new RpcResult(npe); | ||
try { | ||
rpcResult.recreate(); | ||
fail(); | ||
} catch (Throwable throwable) { | ||
StackTraceElement[] stackTrace = throwable.getStackTrace(); | ||
Assert.assertNotNull(stackTrace); | ||
Assert.assertTrue(stackTrace.length > 1); | ||
} | ||
} | ||
|
||
/** | ||
* please run this test in Run mode | ||
*/ | ||
@Test | ||
public void testRecreateWithEmptyStackTraceException() { | ||
// begin to construct a NullPointerException with empty stackTrace | ||
Throwable throwable = null; | ||
Long begin = System.currentTimeMillis(); | ||
while (System.currentTimeMillis() - begin < 60000) { | ||
try { | ||
((Object) null).getClass(); | ||
} catch (Exception e) { | ||
if (e.getStackTrace().length == 0) { | ||
throwable = e; | ||
break; | ||
} | ||
} | ||
} | ||
/** | ||
* may be there is -XX:-OmitStackTraceInFastThrow or run in Debug mode | ||
*/ | ||
if (throwable == null) { | ||
System.out.println("###testRecreateWithEmptyStackTraceException fail to construct NPE"); | ||
return; | ||
} | ||
// end construct a NullPointerException with empty stackTrace | ||
|
||
RpcResult rpcResult = new RpcResult(throwable); | ||
try { | ||
rpcResult.recreate(); | ||
fail(); | ||
} catch (Throwable t) { | ||
StackTraceElement[] stackTrace = t.getStackTrace(); | ||
Assert.assertNotNull(stackTrace); | ||
Assert.assertTrue(stackTrace.length == 0); | ||
} | ||
} | ||
} |