-
Continue reading →: AWS SDK implementation in a BDD frameworkThe implementation involves using the EC2 and S3 clients to create, interrogate, and delete objects in the AWS infrastructure. The specification file will create the resources, and at the end, it will delete them so we can have a clean environment for every test that we execute. The project serves…
-
Continue reading →: Java streams in automationIncorporating Java streams into your automation project is not overly challenging. In this article, we will demonstrate how straightforward it is to utilize streams for manipulating and extracting desired data, thereby reducing the amount of code you need to write. For this article we will build an automation framework and…
-
Continue reading →: Microservice with Spring BootMicroservice with JPA and in memory H2 database Short description The first thing that we need to do in order to fast start a spring boot microservice is to use the start.spring.io website Add swagger dependencies in the main pom file since we will configure it later for testing: Configure…
-
Continue reading →: Pact contract testing Junit5In the following article we are going to discuss about how to integrate pact dependencies and create 1 consumer test and the coresponding producer verification. We will have two service that interact each other using API calls : While using Pact, the consumer is defining the data model of the…
-
Continue reading →: Spring Cloud Contract testing – consumer drivenIn the following article we are going to integrate spring cloud contract testing into a new microservice (producer) and we will create another microservice that will act as a consumer. Producer service configuration We will use bonus-service and configure it to create the contract stubs and and automatically generated producer…
-
Continue reading →: BDD API Framework with GaugeIn the following article we will see how easy is to build an API automation framework using SpringBoot and Gauge. As a test example we will use the EurekaClient to verify that the framework is working and in a next article we will focus on Feign client and writing functional…
-
Continue reading →: Orchestration with docker-composeThe purpose of the article is to use docker-compose in order to demonstrate how you can easily create a dockerized environment using docker-compose Docker compose short story We have already seen how easy is to run a microservice within a container, but what happens if we want to run multiple…
-
Continue reading →: Dockerize a Spring Boot microserviceIn the following article we will show how easy it is to dockerize your spring boot microservice and run it locally using docker and docker-compose. A short intro about what is docker and why we use it can be found on the main docker page but shortly said is that…
-
Continue reading →: Dockerize the microserviceIn the following article we will show how easy it is to add you microservice into a docker container and run it locally using docker and docker-compose. A short intro about what is docker and why we use it can be found on the main docker page but shortly said…
-
Continue reading →: Eureka Service DiscoveryIn the following post we will connect our SpringBoot microservice to a local eureka server As a short description about Eureka we can say that it’s a service discovery service which allows other services to register and be visible from one location. 1.Create a local service eureka server from https://start.spring.io/…
