From b8736210ff9d9336cd7228c50bd26502f30a11b9 Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 2 Aug 2019 16:57:20 -0700 Subject: [PATCH] Add Integration Tests covering the Customer Service application in the Spring Geode Sample for Spring Boot Auto-Configuration of Apache Geode. --- ...ng-geode-samples-boot-configuration.gradle | 10 ++- ...merServiceApplicationIntegrationTests.java | 88 +++++++++++++++++++ 2 files changed, 94 insertions(+), 4 deletions(-) create mode 100644 spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java diff --git a/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle b/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle index 936b02b3..243c011e 100644 --- a/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle +++ b/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle @@ -6,17 +6,19 @@ plugins { apply plugin: 'io.spring.convention.spring-sample-boot' -description = "Spring Geode Samples demonstrating the use of Spring Boot Auto-configuration for Apache Geode." +description = "Spring Geode Sample demonstrating the use of Spring Boot Auto-Configuration for Apache Geode." dependencies { compile project(":spring-geode-starter") + compile "org.assertj:assertj-core" + compile "org.projectlombok:lombok" compile "org.springframework.data:spring-data-geode-test" - compile "org.assertj:assertj-core" - - compile "org.projectlombok:lombok" + testCompile("org.springframework.boot:spring-boot-starter-test") { + exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j" + } } diff --git a/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java b/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java new file mode 100644 index 00000000..ecf21df8 --- /dev/null +++ b/spring-geode-samples/boot/configuration/src/test/java/example/app/crm/CustomerServiceApplicationIntegrationTests.java @@ -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 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[]