The Invisible Guardians: Why Software Testing Matters

12 min read
The Invisible Guardians: Why Software Testing Matters

Beyond the Code: The Art of Software Testing

We live in a world fueled by software. From the moment we wake up and check our phones to the complex systems that power our workplaces and cities, software is everywhere. But how can we be sure this software works as intended? That's where software testers come in, acting as the invisible guardians who ensure our digital experiences are smooth and reliable.

Classic Software Failures: Bugs with Big Impacts

1. Ariane 5 Rocket Explosion (1996):

A simple conversion error! The software wrongly treated a 64-bit number as a 16-bit number, causing the rocket to veer off course and explode.

2. Y2K Problem (Y2K Bug):

Many older systems stored dates using only the last two digits of the year. As 2000 approached, concerns arose that these systems might malfunction, leading to widespread chaos. Through extensive efforts, major problems were avoided, but it highlighted the importance of future-proof coding.

3. Failure of London Ambulance System (2000):

A new computer-aided dispatch (CAD) system was supposed to improve efficiency. However, software bugs caused delays and confusion, impacting ambulance response times.

4. USS Yorktown Incident (1997):

A navigation system malfunction caused the USS Yorktown Aegis cruiser to nearly collide with another ship. The culprit? Division by zero, a mathematical error the software wasn't programmed to handle.

5. Experience of Windows XP (varies)

While not a single, catastrophic failure, Windows XP's lifespan was marked by various stability and security issues. These issues led to a preference for later versions of Windows by many users.

What is Software Testing?

  • Testing is the process of executing a program with the intent of finding faults.
  • Software testing is the process of evaluating a software application to identify bugs, defects, and any deviations from expected behavior.
  • It's a systematic approach to uncovering issues that could otherwise lead to crashes, security vulnerabilities, or a poor user experience.

Why is Software Testing Important?

Imagine using a banking app that miscalculates your balance, or a navigation app that sends you in circles. Software testing helps prevent these frustrating scenarios by ensuring the software functions correctly, meets user needs, and performs well under pressure.

Here are some key benefits of software testing:

1. Improved Software Quality: Testing helps identify and fix bugs before they reach users, leading to a more stable and reliable product.

2. Enhanced User Experience: By ensuring the software is intuitive and user-friendly, testing plays a crucial role in user satisfaction.

3. Reduced Costs: Fixing bugs early in the development process is far cheaper than fixing them after release.

4. Increased Security: Testing helps identify security vulnerabilities that could be exploited by hackers.

Phase wise cost of fixing an error

c383500d-c373-4d17-9a43-5af31bbe99a1.png

Persons and their roles during development and testing

f97a49ac-1d81-4308-821b-2aa68960b38e.png

Components of the software

7fc080b2-41d8-458c-b154-16a276b0746e.png

1. Documentation manuals

d893e7e6-95c9-4991-b880-f7c03f577140.png

2. Operating system manuals

b16a36e9-50d0-4c6a-8f07-8055480fd6d5.png

General Terms in Software Testing

1. Verification vs. Validation:

  • Verification: Ensures the software is built correctly according to its specifications. (Are we building the right thing?)

  • Validation: Ensures the software meets the user's needs and fulfills its intended purpose. (Are we building the thing right?)

2. Fault, Error, Bug:

  • Fault: A defect or imperfection in the code itself. (The root cause of the problem)

  • Error: The deviation from expected behavior due to the fault. (The manifestation of the problem)

  • Bug: A commonly used term for an error or defect in the software. (Informal term for the problem)

3. Testing Terminology:

  • Test: An individual action performed to evaluate a specific aspect of the software.

  • Test Case: A set of steps and expected results for a specific test. (A detailed instruction for how to test something)

  • Test Suite: A collection of related test cases designed to comprehensively evaluate the software. (A group of tests that cover different functionalities)

4. Testings

  • a} Acceptance Testing: This term is used when the software is developed for a specific customer. The customer is involved during acceptance testing. He/she may design adhoc test cases or well-planned test cases and execute them to see the correctness of the software. This type of testing is called acceptance testing and may be carried out for a few weeks or months. The discovered errors are fixed and modified and then the software is delivered to the customer.

  • b} Alpha Testing: (for anonymous customers) Some potential customers are identified to test the product. The alpha tests are conducted at the developer’s site by the customer. These tests are conducted in a controlled environment and may start when the formal testing process is near completion.

  • c} Beta Testing: The beta tests are conducted by potential customers at their sites. Unlike alpha testing, the developer is not present here. It is carried out in an uncontrolled real life environment by many potential customers. Customers are expected to report failures, if any, to the company. These failure reports are studied by the developers and appropriate changes are made in the software.

  • d} Static testing: It refers to testing activities without executing the source code. All verification activities like inspections, walkthroughs, reviews, etc. come under this category of testing. This, if started in the early phases of the software development, gives good results at a very reasonable cost.

  • e} Dynamic testing: It refers to executing the source code and seeing how it performs with specific inputs. All validation activities come in this category where execution of the program is essential.

V shaped software development life cycle model

a36350af-3f2c-4e22-aec8-8494e5dd5a97.png

Delving Deeper into Software Testing Types:

1. Functional Testing:

This is the foundation of testing. It ensures the software's core functionalities work as documented in the requirements. Here are some common types of functional testing:

Black-Box Testing: The tester doesn't have access to the internal code and tests the software from a user's perspective.

  • Equivalence Partitioning: Divides input values into valid and invalid categories, testing representative values from each. (e.g., testing a login form with valid and invalid usernames/passwords)

  • Boundary Value Analysis: Tests values at the edges of expected input ranges. (e.g., testing an age input field with values like 0, 1, 150, and 201)

  • Error Guessing: Leverages experience to predict areas where errors might occur and design test cases around those assumptions. (e.g., testing how the software handles unexpected inputs or network errors)

  • User Interface (UI) Testing: Evaluates the usability and consistency of the software's interface elements. (e.g., ensuring buttons are clear, labels are accurate, and the overall layout is user-friendly)

White-Box Testing: The tester has access to the code and can design tests based on the internal logic.

  • Statement Coverage: Ensures every line of code is executed at least once during testing.
  • Branch Coverage: Tests all possible execution paths through conditional statements (if/else).
  • Decision Coverage: Tests all possible outcomes of conditional statements (true/false).
  • Path Coverage: Executes all possible combinations of paths through the code. (This can be very complex for programs with many branches)
  • Control Flow Testing: Focuses on testing the logic and flow of control within the code. (e.g., ensuring loops iterate correctly and functions return expected values)

Regression Testing: This ensures that new changes haven't caused issues in previously working functionalities.

2.Non-Functional Testing: This goes beyond core functionalities and evaluates characteristics like:

  • Performance Testing: Measures how the software behaves under load (speed, stability, and scalability).
  • Usability Testing: Assesses how easy and intuitive the software is for users to interact with.
  • Security Testing: Identifies vulnerabilities that could be exploited by hackers.
  • Compatibility Testing: Ensures the software works seamlessly across different operating systems, browsers, and devices.

3.Manual Testing: This is the traditional approach where human testers interact with the software, explore its features, and identify bugs.

4.Automation Testing: This involves using specialized tools to automate repetitive test cases. This saves time and effort, especially for regression testing. Here are some common automation tools:

  • Selenium: A popular open-source tool for web application testing.
  • Appium: An open-source framework for mobile app testing.

Levels of Software Testing:

889fd20d-3fbc-4c15-a28b-6a674ceb7280.png

1. Unit Testing

Unit testing is a type of software testing where individual components or modules of a software application are tested independently to ensure that each part works as intended. Here are the key points about unit testing:

  • Objective: Verify that each unit (smallest testable part of an application, like functions, methods, or classes) performs correctly.
  • Performed By: Typically developers, since it involves detailed knowledge of the code.
  • Automation: Often automated to run tests frequently and efficiently.
  • Tools: Common tools include JUnit (Java), NUnit (.NET), and pytest (Python).

Benefits:

  • Early Bug Detection: Identifies issues early in the development process.
  • Code Quality: Improves code quality by ensuring each unit is tested separately.
  • Refactoring: Makes code refactoring easier and safer since tests ensure that changes don't break existing functionality.
  • Documentation: Provides documentation on how the individual units are supposed to work.

2. Integration Testing

Integration testing is a level of software testing where individual units or components are combined and tested as a group to ensure they work together correctly. Here are the key points about integration testing:

  • Objective: Verify the interactions between integrated units/modules to ensure they function together as intended.
  • Performed By: Developers or testers.

Approaches:

  • Big Bang Integration: All components are integrated simultaneously, and the system is tested as a whole.

  • Incremental Integration: Components are integrated and tested one by one or in small groups.

    ->Top-Down: Starts testing from top-level modules and integrates downwards.

    ->Bottom-Up: Starts testing from lower-level modules and integrates upwards.

    ->Sandwich (Hybrid): Combines both top-down and bottom-up approaches.

  • Tools: Common tools include JUnit, TestNG, Protractor, and Postman.

  • Scope: Focuses on the communication between modules, ensuring data transfer and interaction are correct, identifying interface defects.

Benefits:

  • Early Detection of Interface Issues: Identifies problems in the interaction between units early.
  • Improved Module Interactions: Ensures that integrated modules work together as expected.
  • System Reliability: Increases confidence in the system’s reliability and performance.

Integration testing is crucial for detecting issues that may not be apparent when testing individual units separately, ensuring the system's components work seamlessly together.

3.System Testing

System testing is a level of software testing where a complete and integrated software product is tested to verify that it meets the specified requirements. Here are the key points about system testing:

  • Objective: Validate the entire system's functionality, performance, and reliability against the defined requirements.
  • Performed By: Testers.
  • Tools: Common tools include Selenium, QTP (QuickTest Professional), LoadRunner, and JMeter.
  • Types: Functional testing (verifying features and operations) and non-functional testing (performance, usability, security, etc.).
  • Scope: Involves end-to-end testing of the whole system, including interactions with external interfaces and hardware if applicable.

Benefits:

  • Comprehensive Validation: Ensures that the system as a whole functions correctly and meets business and technical requirements.
  • Bug Identification: Detects defects that may not be found in earlier testing stages.
  • Quality Assurance: Enhances the overall quality and reliability of the software product before release.

System testing is crucial for validating the software’s overall behavior in a complete and integrated environment, ensuring it meets user and business expectations.

4. Acceptance Testing

Acceptance testing is the final level of software testing conducted to determine whether a software system meets the business requirements and is ready for deployment. Here are the key points about acceptance testing:

  • Objective: Verify that the software meets the end-user or client requirements and is ready for use.
  • Performed By: End-users, clients, or QA testers.
  • Tools: Common tools include Cucumber, FitNesse, and TestRail.
  • Scope: Focuses on validating the functionality, usability, and overall behavior of the software from the user's perspective.

Types:

  • User Acceptance Testing (UAT): Conducted by end-users to ensure the software works in real-world scenarios.

  • Business Acceptance Testing (BAT): Ensures the software meets business goals and requirements.

  • Contract Acceptance Testing (CAT): Verifies the software meets contractual requirements.

  • Regulation Acceptance Testing (RAT): Ensures the software complies with regulations and standards.

Benefits:

  • Validation: Confirms the software is ready for production and meets all specified requirements.
  • User Satisfaction: Ensures the software will meet the users' needs and expectations.
  • Deployment Readiness: Provides a final check before the software is released to the market or deployed in the production environment.

Acceptance testing is crucial for ensuring that the software product is ready for delivery and will perform satisfactorily in the hands of the end-users.

Conclusion

In conclusion, the world of software testing is vast and ever-evolving. By understanding different testing types and their purposes, we can ensure the software we rely on functions smoothly, securely, and meets our needs. From the meticulous world of white-box testing to the user-centric approach of black-box testing, a comprehensive testing strategy is vital for building high-quality software. Whether you're a developer, tester, or simply curious about the inner workings of technology, remember – software testing plays a critical role in shaping the digital experiences we encounter every day. So, the next time you use a flawless app, take a moment to appreciate the invisible guardians – the software testers – who made it possible.

Follow us on social media

Cyber Unfolded Light Logo
Copyright © 2024 CYUN. All rights reserved.