Add Integration Tests covering the Customer Service application in the Spring Geode Sample for Spring Boot Auto-Configuration of Apache Geode.

This commit is contained in:
John Blum
2019-08-02 16:57:20 -07:00
parent 1da0f0d5dc
commit b8736210ff
2 changed files with 94 additions and 4 deletions

View File

@@ -0,0 +1,88 @@
/*
* Copyright 2019 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
*
* https://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 example.app.crm;
import static org.assertj.core.api.Assertions.assertThat;
import javax.annotation.Resource;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.apache.geode.cache.Region;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport;
import org.springframework.test.context.junit4.SpringRunner;
import example.app.crm.model.Customer;
import example.app.crm.repo.CustomerRepository;
/**
* Integration Tests for the Customer Service application.
*
* @author John Blum
* @see org.junit.Test
* @see org.apache.geode.cache.Region
* @see org.springframework.boot.test.context.SpringBootTest
* @see org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport
* @see org.springframework.test.context.junit4.SpringRunner
* @see example.app.crm.model.Customer
* @see example.app.crm.repo.CustomerRepository
* @since 1.1.0
*/
// tag::class[]
@RunWith(SpringRunner.class)
@SpringBootTest
@SuppressWarnings("unused")
public class CustomerServiceApplicationIntegrationTests extends IntegrationTestsSupport {
@Autowired
private CustomerRepository customerRepository;
@Resource(name = "Customers")
private Region<Long, Customer> customers;
@Before
public void setup() {
assertThat(this.customerRepository).isNotNull();
assertThat(this.customers).isNotNull();
assertThat(this.customers.getName()).isEqualTo("Customers");
assertThat(this.customers).hasSize(1);
Customer jonDoe = this.customerRepository.findByNameLike("%Doe");
assertThat(jonDoe).isNotNull();
assertThat(jonDoe.getName()).isEqualTo("Jon Doe");
}
@Test
public void putAndGetCustomerIsSuccessfu() {
Customer expectedJaneDoe = Customer.newCustomer(2L, "Jane Doe");
expectedJaneDoe = this.customerRepository.save(expectedJaneDoe);
Customer actualJaneDoe = this.customerRepository.findByNameLike("Jane%");
assertThat(actualJaneDoe).isNotNull();
assertThat(actualJaneDoe).isEqualTo(expectedJaneDoe);
}
}
// end::class[]