Skip to main content

COMPATIBILITY TESTING, COMPONENT TESTING, REGRESSION TESTING, LOAD TESTING, STRESS TESTING, SECURITY TESTING


It is used to check the compatibility of an application under different devices, it is used to verify UI Compatibility, Graphics Compatibility, and responsiveness. It is basically used to test UI.
for example, if we want to check web applications under different web browsers (Chrome, Firefox, Opera, Safari, IE)  and check UI then it is part of compatibility testing.
for example android app then we will check this application on different screen resolutions of different mobile devices, tablets, etc, and check UI.
Hardware support and configuration will be checked by compatibility testing,  we will check software to integrate with the printer, scanner, and other device system.
If we test any software application on cross-device, cross-platform, and cross-browser then it is called compatibility testing.
.............................................................................................................................................
Component Testing:-
Using this we can divide the complete software into different modules and submodules and each module and submodule contain multiple components, if we check all components individually to test the application, we create separate test cases for a particular component in component testing.
for example in billing system software, we will check the complete billing details of customers then it is part of component testing.
In the login form, if we check the userid text field and password text field, individual and in combinations then it will be part of component testing.

Comparison Testing:-

Using this testing we will compare the actual application with the referral(reference) application to check each and every functionality.
for example if a client demand an e-commerce application similar to Flipkart then every time he will compare the all features of Flipkart to the development application.
We can compare applications based on design, graphics, performance, functionality, and other important factors.

Regression testing:-

this is the most important testing under the agile model, the testing team will cross-check the current bug of an application until it resolves. after solving the bug testing team will cross check the all previous builds or modules of an application to check that all modules of projects are working properly or not. we will check the complete application after solving every bug.
 it will take more time and effort to implement under manual testing, hence automation testing process is implemented especially for regression testing.
 Automation testing contains a test script for all scenarios hence we can easily execute the whole application within a few minutes.
It is mandatory for the incremental model and Agile model because these models releasing processes will be implemented step by step.
Load Testing:-
It is the part of non-functional testing that means load testing is used to measure the performance of an application where we will check the load time of an application under the maximum traffic limit.
Load testing never will be implemented manually, we will use many automation software tools to implement load testing. Apache Jmeter, load runner automation tools to use load testing operation.

Stress Testing:-

It is the part of load testing, where we will check the higher traffic load on the application then check the application response.
for example, if the application limit is 100 users then we can check with 90 to 100 and 100 to 110 then check the application response.
Security Testing:-
using this we can check the security of an application using login, logout, virus, illegal attack, risk factor option, URL, Data encryption, authentication, authorization, etc, we also cross-check applications using different networks and servers.
we will also check URL Patterns, URL security, and data security of web applications, especially for internal URLs.
Security Testing is the most important testing for the web applications, especially for a dashboard, accounting, payment transaction part.
SSL should exist on the SITE to provide data security because SSL provides a secure socket layer in an application.


Comments

Popular posts from this blog

Uncontrolled form input in React-JS

  Uncontrolled form input in React-JS? If we want to take input from users without any separate event handling then we can uncontrolled the data binding technique. The uncontrolled input is similar to the traditional HTML form inputs. The DOM itself handles the form data. Here, the HTML elements maintain their own state that will be updated when the input value changes. To write an uncontrolled component, you need to use a ref to get form values from the DOM. In other words, there is no need to write an event handler for every state update. You can use a ref to access the input field value of the form from the DOM. Example of Uncontrolled Form Input:- import React from "react" ; export class Info extends React . Component {     constructor ( props )     {         super ( props );         this . fun = this . fun . bind ( this ); //event method binding         this . input = React . createRef ();...

JSP Page design using Internal CSS

  JSP is used to design the user interface of an application, CSS is used to provide set of properties. Jsp provide proper page template to create user interface of dynamic web application. We can write CSS using three different ways 1)  inline CSS:-   we will write CSS tag under HTML elements <div style="width:200px; height:100px; background-color:green;"></div> 2)  Internal CSS:-  we will write CSS under <style> block. <style type="text/css"> #abc { width:200px;  height:100px;  background-color:green; } </style> <div id="abc"></div> 3) External CSS:-  we will write CSS to create a separate file and link it into HTML Web pages. create a separate file and named it style.css #abc { width:200px;  height:100px;  background-color:green; } go into Jsp page and link style.css <link href="style.css"  type="text/css" rel="stylesheet"   /> <div id="abc"> </div> Exam...

JDBC using JSP and Servlet

JDBC means Java Database Connectivity ,It is intermediates from Application to database. JDBC has different type of divers and provides to communicate from database server. JDBC contain four different type of approach to communicate with Database Type 1:- JDBC-ODBC Driver Type2:- JDBC Vendor specific Type3 :- JDBC Network Specific Type4:- JDBC Client-Server based Driver  or JAVA thin driver:- Mostly we prefer Type 4 type of Driver to communicate with database server. Step for JDBC:- 1  Create Database using MYSQL ,ORACLE ,MS-SQL or any other database 2   Create Table using database server 3   Create Form according to database table 4  Submit Form and get form data into servlet 5  write JDBC Code:-     5.1)   import package    import java.sql.*     5.2)  Add JDBC Driver according to database ide tools     5.3)  call driver in program         ...