Skip to content

Commit

Permalink
chore: add library_test.py (#15)
Browse files Browse the repository at this point in the history
* chore: add library_test.py

* Apply suggestions from code review

---------

Co-authored-by: Lucas Mindêllo de Andrade <lucas@mindello.com.br>
  • Loading branch information
chemelli74 and rokam authored May 24, 2024
1 parent 4de3863 commit 6dbd8da
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,7 @@ dmypy.json
reports/

# IDE
.idea/
.idea/

# Optional config file for library_test.py script
library_test.json
125 changes: 125 additions & 0 deletions library_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
"""Test script for midea-local library."""

import asyncio
import json
import logging
import sys
from argparse import ArgumentParser, Namespace
from pathlib import Path

import aiohttp

from midealocal.cloud import get_midea_cloud, clouds
from midealocal.devices import device_selector
from midealocal.discover import discover


def get_arguments() -> tuple[ArgumentParser, Namespace]:
"""Get parsed passed in arguments."""
parser = ArgumentParser(description="midea-local library test")
parser.add_argument(
"--username",
"-u",
type=str,
help="Set Cloud username",
)
parser.add_argument("--password", "-p", type=str, help="Set Cloud password")
parser.add_argument(
"--cloud_name",
"-cn",
type=str,
help="Set Cloud name, options are: " + ", ".join(clouds.keys()),
)
parser.add_argument(
"--configfile",
"-cf",
type=str,
help="Load options from JSON config file. \
Command line options override those in the file.",
)
parser.add_argument("--ip", "-i", type=str, help="Device or broadcast IP Address.")

arguments = parser.parse_args()
# Re-parse the command line
# taking the options in the optional JSON file as a basis
if arguments.configfile and Path(arguments.configfile).exists():
with Path(arguments.configfile).open(encoding="utf-8") as f:
arguments = parser.parse_args(namespace=Namespace(**json.load(f)))

return parser, arguments


async def main() -> None:
"""Run main."""
parser, args = get_arguments()

if not args.password or not args.username or not args.cloud_name:
print("You have to specify all parameters: username, password and Cloud name")
parser.print_help()
sys.exit(1)

print("-" * 20)
print("Starting network discovery...")
devices = discover(ip_address=args.ip)
print("-" * 20)
print("Devices: ", devices)
first_device = list(devices.values())[0]
print("-" * 20)
print("First device: ", first_device)
# The device type is in hexadecimal as in midealocal/devices/TYPE
type_code = hex(first_device["type"])[2:]
print("-" * 20)
print("First device type: ", type_code)

session = aiohttp.ClientSession()
cloud = get_midea_cloud(
session=session,
cloud_name=args.cloud_name,
account=args.username,
password=args.password,
)
cloud_keys = await cloud.get_keys(first_device["device_id"])
print("-" * 20)
print("Fist device Cloud info: ", cloud_keys)

token = ""
key = ""
for v in cloud_keys.values():
token = v["token"]
key = v["key"]

print("-" * 20)
print("Fist device Cloud token: ", token)
print("Fist device Cloud key: ", key)

# Select the device
ac = device_selector(
name=type_code,
device_id=first_device["device_id"],
device_type=first_device["type"],
ip_address=first_device["ip_address"],
port=first_device["port"],
token=token,
key=key,
protocol=first_device["protocol"],
model=first_device["model"],
subtype=0,
customize="",
)

# Connect and authenticate
ac.connect()

# Getting the attributes
print("-" * 20)
print("First device attributes: ", ac.attributes)

# Close session
await session.close()


if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
logging.getLogger("asyncio").setLevel(logging.INFO)
logging.getLogger("charset_normalizer").setLevel(logging.INFO)
asyncio.run(main())

0 comments on commit 6dbd8da

Please sign in to comment.