Sunday, January 17, 2021

What Is Client-Server And Web Based Testing And How To Test These Applications

 

CLIENT / SERVER TESTING

This type of testing usually done for 2 tier applications (usually developed for LAN). Here we will be having Front-end and Backend.

The application launched on front-end will be having forms and reports which will be monitoring and manipulating data

For Example, applications developed in VB, VC++, Core Java, C, C++, D2K, PowerBuilder, etc., The backend for these applications would be MS Access, SQL Server, Oracle, Sybase, Mysql, Quadbase

The tests performed on these types of applications would be

  • User Interface Testing
  • Manual Support Testing
  • Functionality Testing
  • Compatibility Testing & Configuration Testing
  • Intersystem Testing

WEB TESTING

This is done for 3 tier applications (developed for Internet / intranet / xtranet)
Here we will be having Browser, web server and DB server.

The applications accessible in the browser would be developed in HTML, DHTML, XML, JavaScript, etc. (We can monitor through these applications)

Applications for the webserver would be developed in Java, ASP, JSP, VBScript, JavaScript, Perl, Cold Fusion, PHP, etc. (All the manipulations are done on the webserver with the help of these programs developed)

The DB server would be having Oracle, SQL Server, Sybase, MySQL, etc. (All data is stored in the database available on the DB server)

The tests performed on these types of applications would be

  • User Interface Testing
  • Functionality Testing
  • Security Testing
  • Browser Compatibility Testing
  • Load/Stress Testing
  • Interoperability Testing/Intersystem Testing
  • Storage and Data Volume Testing

A Web Application is a Three-Tier Application

This has a browser (monitors data) [monitoring is done using HTML, Dhtml, XML, javascript]-> webserver (manipulates data) [manipulations are done using programming languages or scripts like adv java, asp, JSP, VBScript, javascript, Perl, ColdFusion, php] -> database server (stores data) [data storage and retrieval is done using databases like Oracle, SQL Server, Sybase, mysql].

The types of tests, which can be applied to this type of applications, are

  • User Interface Testing for validation & user-friendliness
  • Functionality Testing to validate behaviors, i/p, error handling, o/p, manipulations, services levels, the order of functionality, links, content of web page & backend coverage’s
  • Security Testing
  • Browser Compatibility
  • Load/Stress Testing
  • Interoperability Testing
  • Storage & Data Volume Testing

A Client-Server Application is a Two-Tier Application

This has forms & reporting at front-end (monitoring & manipulations are done) [using vb, vc++, core java, c, c++, d2k, power builder etc.,] -> database server at the backend [data storage & retrieval) [using ms access, SQL Server, Oracle, Sybase, MySQL, quad base etc.,]

The tests performed on these applications would be

  • User Interface testing
  • Manual Support Testing
  • Functionality Testing
  • Compatibility Testing
  • Intersystem Testing

Some more points to clear the difference between Client-Server, Web and Desktop applications:

Desktop Application:

  • Application runs in single memory (Front end and Back end in one place)
  • Single user only

Client/Server Application:

  • Application runs in two or more machines
  • Application is a menu-driven
  • Connected mode (connection exists always until logout)
  • A limited number of users
  • Less number of network issues when compared to the web app.

Web Application:

  • Application runs in two or more machines
  • URL-driven
  • Disconnected mode (stateless)
  • Unlimited number of users
  • Many issues like Hardware Compatibility, Browser Compatibility, Version Compatibility, Security Issues, performance issues, etc.

As per difference in both, the applications come where, how to access the resources. In Client-Server, once the connection is made it will be in the state on connected, whereas in case of web testing HTTP protocol is stateless, then there comes logic of cookies, which is not in Client-Server.

For Client-Server application users are well known, whereas for web application any user can log in and access the content, he/she will use it as per his intentions.

So, there are always issues of security and compatibility for a Web Application.

Over to you: On which application are you working? Desktop, Client-Server or Web Application? What is your experience while testing these applications?

No comments:

Post a Comment

Get max value for identity column without a table scan

  You can use   IDENT_CURRENT   to look up the last identity value to be inserted, e.g. IDENT_CURRENT( 'MyTable' ) However, be caut...