Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 4.16 KB

File metadata and controls

78 lines (57 loc) · 4.16 KB

Regression Testing Guide for KeepTrack.space

Introduction

KeepTrack.space is an open-source space exploration tool designed for visualizing satellites and space debris. It allows users to simulate space debris breakups, visualize debris patterns, search through a catalog of satellites, and much more.

Testing Objectives

The primary objective of regression testing is to ensure that recent changes have not adversely affected existing functionalities or performance of the application.

Scope of Testing

  • Complete End-to-End Testing: This includes testing all major functionalities of the application such as searching the catalog, simulating breakups, launching satellites, and visualizing debris patterns.
  • Performance Checks: Ensure the application still loads in under 2 seconds and maintains a smooth performance at 60 frames per second during simulations.

Testing Environment

  • Local Development Setup: Tests will be conducted in the development environment hosted locally.
  • Tools Required: Visual Studio Code for code edits and debugging, and the Brave browser for interacting with the application.

Test Cases

Setup and Initial Checks

  • Launch Application: Ensure the application loads correctly and reaches the main interface within the expected time.
  • Database Integrity: Check that the database loads correctly, and all satellite and debris data are accessible.

Functionality Tests

Performance Tests

  • Load Performance:
    • Verify that the application still loads within 2 seconds.
    • Measure response times for critical actions.
  • Simulation Performance:
    • Ensure simulations run smoothly at 60 fps with no noticeable drops in frame rate.
    • Test the impact of long-duration simulations on performance.

Reporting Issues

  • GitHub Tracking: All issues discovered during testing should be reported and tracked using GitHub's issue tracking system.

Conclusion

This regression testing guide should serve as a baseline for ensuring that KeepTrack.space maintains its functionality and performance after each update. Since testing is conducted by a solo developer, it's crucial to prioritize testing based on recent changes and known trouble areas, specifically unexpected settings combinations and concurrent feature usage.

Tips for Effective Testing

  • Use diverse scenarios and settings to uncover hidden issues.
  • Regularly update test cases to reflect new functionalities and edge cases identified in previous tests.