Skip to content

Latest commit

 

History

History
106 lines (71 loc) · 3.47 KB

File metadata and controls

106 lines (71 loc) · 3.47 KB

pyvesync testing script

This script can be used to test the function of the pyvesync library and log output to a file for better support with issues. It supports testing the library's functionality with various devices and configurations.

Setup and Installation

From Repository

  1. Clone the repo branch dev or replace dev with the branch you wish to test:
git clone -b dev --single-branch https://github.com/webdjoe/pyvesync.git
  1. Navigate to the repository directory: cd pyvesync

Optionally create a virtual environment:

python -m venv venv
source venv/bin/activate  # On Powershell use `venv\Scripts\activate.ps1`
  1. Install the current branch:

    pip install -e .
  2. Run the testing script:

    python testing_scripts/vs_console_script.py --email <your_email> --password <your_password> [optional arguments]

Just run the script

  1. Create a directory and navigate to it:

    mkdir pyvesync_testing
    cd pyvesync_testing
  2. Create a virtual environment:

     python -m venv venv
     source venv/bin/activate  # On Powershell use `venv\Scripts\activate.ps1`
  3. Install the pyvesync library branch dev or replace dev with the branch you wish to test:

    pip install git+https://github.com/webdjoe/pyvesync.git@dev
    
    # Or install from a PR
    pip install git+https://github.com/webdjoe/pyvesync.git@refs/pull/<PR_NUMBER>/head
  4. Download the vs_console_script.py file from the testing_scripts directory of the repository and place it in your current directory using a browser or wget/curl command:

    wget https://raw.githubusercontent.com/webdjoe/pyvesync/dev/testing_scripts/vs_console_script.py
  5. Run the testing script:

     python vs_test_script.py --email <your_email> --password <your_password> [optional arguments]

Running in VS Code or other IDE's

The script can be run directly in an IDE like Visual Studio Code. Open the vs_console_script.py file and edit the USERNAME and PASSWORD variables at the top of the file with your VeSync account credentials, along with any other . Then run the script using the IDE's debug command.

Configuration

WARNING: The script will try to return the device to original state after testing, but it is not guaranteed to restore all states.

You can configure the script by modifying the following variables in the vs_console_script.py file:

  • USERNAME: Your VeSync account email.
  • PASSWORD: Your VeSync account password.
  • TEST_DEVICES: Set to True to test device functionality.
  • TEST_TIMERS: Set to True to test timer functionality.
  • OUTPUT_FILE: Path to the output file for logging.
  • TEST_DEV_TYPE: Specific device type to test (Options are "bulbs", "switches", "outlets", "humidifiers", "air_purifiers", "fans").

CONFIGURING VIA COMMAND LINE:

You can also configure the script via command line arguments:

python vs_test_script.py \  # or testing_scripts/vs_test_script.py if using repository method
   --email <your_email> \
   --password <your_password> \
   --test-devices \  # Include device methods in the test
   --test-timers \  # Include timer methods in the test
   --output-file <output_file> \
   --test-dev-type <device_type> # Options: "bulbs", "switches", "outlets", "humidifiers", "air_purifiers", "fans"

Logging

The script logs output to both the console and a file specified by the OUTPUT_FILE variable.