Add Smoke Tests for a client/server Function execution use case, configured with SBDG auto-configuration on the client-side and SDG Function annotation config on the server-side.

This commit is contained in:
John Blum
2019-10-21 15:29:35 -07:00
parent c6e21ffde8
commit 3053bac169
7 changed files with 365 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/*
* 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.petclinic.function;
import org.springframework.data.gemfire.function.annotation.FunctionId;
import org.springframework.data.gemfire.function.annotation.OnRegion;
import example.app.petclinic.model.Pet;
/**
* Function interface declaring all {@link Pet} services administered by the Pet Clinic.
*
* @author John Blum
* @see example.app.petclinic.model.Pet
* @since 1.2.1
*/
@OnRegion(region = "Pets")
public interface PetServiceFunctionExecutions {
@FunctionId(("AdministerPetVaccinations"))
void administerPetVaccinations();
}

View File

@@ -0,0 +1,67 @@
/*
* 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.petclinic.model;
import java.time.LocalDateTime;
import org.springframework.data.annotation.Id;
import org.springframework.data.gemfire.mapping.annotation.Region;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import lombok.ToString;
/**
* Abstract Data Type (ADT) modeling a pet.
*
* @author John Blum
* @see org.springframework.data.annotation.Id
* @see org.springframework.data.gemfire.mapping.annotation.Region
* @since 1.2.1
*/
@Region("Pets")
@ToString(of = "name")
@EqualsAndHashCode(of = "name")
@RequiredArgsConstructor(staticName = "newPet")
@SuppressWarnings("unused")
public class Pet {
@Getter
private LocalDateTime vaccinationDateTime;
@Id @NonNull @Getter
private String name;
@Getter
private Type petType;
public Pet as(Type petType) {
this.petType = petType;
return this;
}
public void vaccinate() {
this.vaccinationDateTime = LocalDateTime.now();
}
public enum Type {
CAT,
DOG,
RABBIT,
}
}

View File

@@ -0,0 +1,32 @@
/*
* 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.petclinic.repo;
import org.springframework.data.repository.CrudRepository;
import example.app.petclinic.model.Pet;
/**
* Data Access Object (DAO) containing basic CRUD and simple Query data access operations on {@link Pet} objects.
*
* @author John Blum
* @see org.springframework.data.repository.CrudRepository
* @see example.app.petclinic.model.Pet
* @since 1.2.1
*/
public interface PetRepository extends CrudRepository<Pet, String> {
}