From 8894f38236f1b0a3a6ea2d447acb631b7de7c149 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Tue, 2 Mar 2021 09:52:22 -0500 Subject: [PATCH] 1.0.6 versioning --- CHANGELOG.md | 3 +++ README.md | 15 +++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ae1fee..a9bd644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [1.0.6] - 2021-03-02 +- Added query parameters checker + ## [1.0.5] - 2020-07-06 - Modified all tests to make better use of exception handling for consistent error reporting - Fixed power control test where the reset type being tested was not being provided to the service diff --git a/README.md b/README.md index 903cad5..8f995a7 100644 --- a/README.md +++ b/README.md @@ -81,3 +81,18 @@ Example: ``` $ python3 account_management.py --r 127.0.0.1:8000 -u -p -S Always ``` + + +### Query Parameter Checker + +This checker logs into a specified service and performs the following operations: +* Inspects the `ProtocolFeatures` property to see what query parameters are supported +* Tests `$filter` on the role collection within the account service +* Tests `$select` on a role within the role collection within the account service +* Tests `$expand` on service root +* Tests `only` on various resources found on service root + +Example: +``` +$ python3 query_parameters_check.py --r 127.0.0.1:8000 -u -p -S Always +```