AWS

Few of the services which are generally used on high level across most of the AWS involved projects, to learn the cloud computing please follow here at AWS site

AWS Cloud Practitioner, AWS Solution Architect are the common certifications to start learning on the cloud computing services in AWS.

S3 – Storage service to access data from anywhere.

SNS – simple notification service -messaging feature for A2A and A2P .

EC2 – Resizable compute facility with secure features.

to be updated…

Functional – Manual Testing (QA)

Manual testing is one of the core processes done for all the applications before it goes live.

Web, Api, database validations can be done manually for the existing ( not yet automated) and new apps( automation would be dome later once the app is stable with the new feature.

Web – Lets say if the applications are or E-commerce or Financial applications

the features for the anonymous users and registered users are to be differentiated correctly.

Ecommerce – order placement

Banking – Login and check the available balance, deposits, statements, loans, mortages etc basic necessary features.

Coverage and traceability to the requirements hold the key on what core features to be tested in lone with the time available

API-Automation

Here we are going to see the simplest and easiest steps about the validation of API thru automation in java using REST Assured, Junit5, MySQL

Basic knowledge on Java, Xampp, MYSQL, Maven, Junit

API-

API Request has the 4 basic info required
End point – the url where the action to be made is provided here
method – action to be made as get, post, put, delete on the url provided
header – authorization cred required to make the request and format of how we receive the response, html, json, txt etc..
data– additional information for the api in order to fulfill the request- data – also called as payload- can be given in body or in query parameters too!

REST Assured –
Uses Given, when and then approach to process the requests

to be updated..