DATAMONGO-1753 - IndexEnsuringQueryCreationListener now skips query methods without a predicate.

This commit is contained in:
Oliver Gierke
2017-07-25 13:56:20 +02:00
parent 489f3bb0ee
commit 3d2c5a9235
2 changed files with 73 additions and 2 deletions

View File

@@ -22,11 +22,11 @@ import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Order;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.mongodb.core.index.IndexOperationsProvider;
import org.springframework.data.domain.Sort.Order;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.data.mongodb.core.index.Index;
import org.springframework.data.mongodb.core.index.IndexOperationsProvider;
import org.springframework.data.mongodb.repository.query.MongoEntityMetadata;
import org.springframework.data.mongodb.repository.query.PartTreeMongoQuery;
import org.springframework.data.repository.core.support.QueryCreationListener;
@@ -68,6 +68,11 @@ class IndexEnsuringQueryCreationListener implements QueryCreationListener<PartTr
public void onCreation(PartTreeMongoQuery query) {
PartTree tree = query.getTree();
if (!tree.hasPredicate()) {
return;
}
Index index = new Index();
index.named(query.getQueryMethod().getName());
Sort sort = tree.getSort();

View File

@@ -0,0 +1,66 @@
/*
* Copyright 2017 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.repository.support;
import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Answers;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.data.mongodb.core.index.IndexOperationsProvider;
import org.springframework.data.mongodb.repository.query.PartTreeMongoQuery;
import org.springframework.data.repository.query.parser.PartTree;
/**
* Unit tests for {@link IndexEnsuringQueryCreationListener}.
*
* @author Oliver Gierke
*/
@RunWith(MockitoJUnitRunner.class)
public class IndexEnsuringQueryCreationListenerUnitTests {
IndexEnsuringQueryCreationListener listener;
@Mock IndexOperationsProvider provider;
@Before
public void setUp() {
this.listener = new IndexEnsuringQueryCreationListener(provider);
}
@Test // DATAMONGO-1753
public void skipsQueryCreationForMethodWithoutPredicate() {
PartTree tree = mock(PartTree.class);
when(tree.hasPredicate()).thenReturn(false);
PartTreeMongoQuery query = mock(PartTreeMongoQuery.class, Answers.RETURNS_MOCKS);
when(query.getTree()).thenReturn(tree);
listener.onCreation(query);
verify(provider, times(0)).indexOps(any());
}
interface SampleRepository {
Object findAllBy();
}
}