backed out SGF-172 - moved to feature branch 1.3.x

This commit is contained in:
David Turanski
2013-04-17 10:21:36 -04:00
parent 3a4f727334
commit 477dca3f4f
9 changed files with 8 additions and 93 deletions

View File

@@ -53,11 +53,4 @@ public interface PersonRepository extends GemfireRepository<Person, Long> {
Collection<Person> findByLastnameEndingWith(String lastname);
Collection<Person> findByFirstnameContaining(String firstname);
long countByFirstname(String firstname);
int countByLastname(String lastname);
@Query("SELECT count(*) FROM /Person p WHERE p.firstname = $1")
int countFirstNameManual(String firstName);
}

View File

@@ -1,45 +0,0 @@
/*
* Copyright 2002-2013 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.gemfire.repository.support;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.gemfire.repository.sample.Person;
import org.springframework.data.gemfire.repository.sample.PersonRepository;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author David Turanski
*
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class PersonRepositoryIntegrationTests {
@Autowired
PersonRepository repository;
@Test
public void testCountProjections() {
Person dave1 = new Person(1L,"Dave","Matthews");
Person dave2 = new Person(2L,"Dave","Turanski");
repository.save(dave1);
repository.save(dave2);
assertEquals(2L,repository.countByFirstname("Dave"));
assertEquals(1,repository.countByLastname("Matthews"));
assertEquals(2,repository.countFirstNameManual("Dave"));
}
}