Browse Source
Triggering data access exception translation could lead to NullPointerException in cases where PersistenceExceptionTranslator returned null because the original exception couldn't be translated and the result was directly used from a throw clause. This is now fixed by consistently the potentiallyConvertRuntimeException(…) method, which was made static to be able to refer to it from nested static classes. Refactored Scanner usage to actually close the Scanner instance to prevent a resource leak.pull/663/head
2 changed files with 119 additions and 27 deletions
@ -0,0 +1,83 @@
@@ -0,0 +1,83 @@
|
||||
/* |
||||
* Copyright 2015 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.data.mongodb.core; |
||||
|
||||
import static org.mockito.Mockito.*; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.mockito.Mock; |
||||
import org.mockito.runners.MockitoJUnitRunner; |
||||
import org.springframework.dao.support.PersistenceExceptionTranslator; |
||||
import org.springframework.data.mongodb.core.MongoTemplate.CloseableIterableCursorAdapter; |
||||
import org.springframework.data.mongodb.core.MongoTemplate.DbObjectCallback; |
||||
import org.springframework.data.util.CloseableIterator; |
||||
|
||||
import com.mongodb.Cursor; |
||||
|
||||
/** |
||||
* Unit tests for {@link CloseableIterableCursorAdapter}. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @see DATAMONGO-1276 |
||||
*/ |
||||
@RunWith(MockitoJUnitRunner.class) |
||||
public class CloseableIterableCursorAdapterUnitTests { |
||||
|
||||
@Mock PersistenceExceptionTranslator exceptionTranslator; |
||||
@Mock DbObjectCallback<Object> callback; |
||||
|
||||
Cursor cursor; |
||||
CloseableIterator<Object> adapter; |
||||
|
||||
@Before |
||||
public void setUp() { |
||||
|
||||
this.cursor = doThrow(IllegalArgumentException.class).when(mock(Cursor.class)); |
||||
this.adapter = new CloseableIterableCursorAdapter<Object>(cursor, exceptionTranslator, callback); |
||||
} |
||||
|
||||
/** |
||||
* @see DATAMONGO-1276 |
||||
*/ |
||||
@Test(expected = IllegalArgumentException.class) |
||||
public void propagatesOriginalExceptionFromAdapterDotNext() { |
||||
|
||||
cursor.next(); |
||||
adapter.next(); |
||||
} |
||||
|
||||
/** |
||||
* @see DATAMONGO-1276 |
||||
*/ |
||||
@Test(expected = IllegalArgumentException.class) |
||||
public void propagatesOriginalExceptionFromAdapterDotHasNext() { |
||||
|
||||
cursor.hasNext(); |
||||
adapter.hasNext(); |
||||
} |
||||
|
||||
/** |
||||
* @see DATAMONGO-1276 |
||||
*/ |
||||
@Test(expected = IllegalArgumentException.class) |
||||
public void propagatesOriginalExceptionFromAdapterDotClose() { |
||||
|
||||
cursor.close(); |
||||
adapter.close(); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue