All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denis Kenzior <denkenz@gmail.com>
To: iwd@lists.01.org
Subject: Re: [PATCH v5 01/26] auto-t: prepare autotests for test-runner re-write
Date: Thu, 10 Sep 2020 18:21:53 -0500	[thread overview]
Message-ID: <a42bdf14-1d4a-cb56-7c55-ed4952d612c1@gmail.com> (raw)
In-Reply-To: <20200910231248.4995-1-prestwoj@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4152 bytes --]

Hi James,

On 9/10/20 6:12 PM, James Prestwood wrote:
> The tests basically remained the same with a few minor changes.
> The wiphy_map and in turn hostapd_map are no longer used. This
> was already partially converted a long time ago when the 'config'
> parameter was added to HostapdCLI. This patch fully converts all
> autotests to use 'config' rather than looking up by interface.
> 
> Some test scripts were named 'test.py' which was fine before but
> the new rewrite actually loads each python test as a module. The
> name 'test' is too ambiguous and causes issues due to a native
> python module with the same name. All of these files were
> renamed to 'connection_test.py'.
> ---
>   .../{test.py => connection_test.py}           |  0
>   .../testAP/{test.py => connection_test.py}    |  9 ++--
>   autotests/testAP/failure_test.py              |  6 +--
>   autotests/testAPRoam/connection_test.py       |  2 -
>   .../testBSSBlacklist/all_blacklisted_test.py  |  4 --
>   autotests/testBSSBlacklist/bad_pass_test.py   |  4 --
>   autotests/testBSSBlacklist/connection_test.py |  1 -
>   .../testBSSBlacklist/temp_blacklist_test.py   |  4 --
>   .../connect_command_test.py                   | 42 +++++++------------
>   .../disconnect_by_ap_test.py                  |  4 +-
>   autotests/testEAP-AKA/connection_test.py      |  1 -
>   .../testEAP-PEAPv0-CryptoBinding/ISK_test.py  |  1 -
>   .../NoISK_test.py                             |  1 -
>   .../testEAP-PEAPv0-CryptoBinding/main.conf    |  2 -
>   autotests/testEAP-PWD/connection_test.py      |  1 -
>   autotests/testEAP-SIM/connection_test.py      |  1 -
>   .../connection_test.py                        | 11 ++---
>   .../testEAP-TTLS-CHAP/connection_test.py      |  1 -
>   .../testEAP-TTLS-MSCHAP/connection_test.py    |  1 -
>   autotests/testEAP-TTLS-PAP/connection_test.py |  1 -
>   autotests/testEAP-WPS-Frag/wps_frag_test.py   |  4 +-
>   autotests/testEAP-WPS/four_digit_pin_test.py  |  4 +-
>   autotests/testEAP-WPS/pin_test.py             |  4 +-
>   autotests/testEAP-WPS/push_button_test.py     |  5 +--
>   autotests/testFILS/fils_256_test.py           |  1 -
>   autotests/testFILS/fils_384_test.py           |  1 -
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           | 17 +++++---
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           |  2 +-
>   autotests/testOWE/connection_test.py          |  1 -
>   autotests/testOWE/renegotiate_test.py         |  1 -
>   .../{test.py => connection_test.py}           |  2 +-
>   .../{test.py => connection_test.py}           |  0
>   autotests/testSAE/connection_test.py          | 10 ++---
>   autotests/testSAE/group_20_connection_test.py | 10 ++---
>   .../testSAQuery-spoofing/connection_test.py   |  2 +-
>   autotests/testSAQuery/connection_test.py      |  2 +-
>   41 files changed, 56 insertions(+), 117 deletions(-)
>   rename autotests/testAP-no-support/{test.py => connection_test.py} (100%)
>   rename autotests/testAP/{test.py => connection_test.py} (94%)
>   delete mode 100644 autotests/testEAP-PEAPv0-CryptoBinding/main.conf
>   rename autotests/testFT-8021x-roam/{test.py => connection_test.py} (99%)
>   rename autotests/testFT-FILS-SHA256/{test.py => connection_test.py} (99%)
>   rename autotests/testFT-FILS-SHA384/{test.py => connection_test.py} (99%)
>   rename autotests/testFT-PSK-over-DS/{test.py => connection_test.py} (99%)
>   rename autotests/testFT-PSK-roam/{test.py => connection_test.py} (96%)
>   rename autotests/testFT-SAE-roam/{test.py => connection_test.py} (99%)
>   rename autotests/testHT-VHT/{test.py => connection_test.py} (98%)
>   rename autotests/testPreauth-roam/{test.py => connection_test.py} (98%)
>   rename autotests/testRSSIAgent/{test.py => connection_test.py} (100%)
> 

All applied, thanks.

Regards,
-Denis

      parent reply	other threads:[~2020-09-10 23:21 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-10 23:12 [PATCH v5 01/26] auto-t: prepare autotests for test-runner re-write James Prestwood
2020-09-10 23:12 ` [PATCH v5 02/26] auto-t: introduce pure python " James Prestwood
2020-09-10 23:12 ` [PATCH v5 03/26] auto-t: hostapd.py: update to work with test-runner rewrite James Prestwood
2020-09-10 23:12 ` [PATCH v5 04/26] auto-t: testutil.py: " James Prestwood
2020-09-10 23:12 ` [PATCH v5 05/26] auto-t: ofono.py: fix timeout cleanup and wait for service James Prestwood
2020-09-10 23:12 ` [PATCH v5 06/26] auto-t: iwd.py: update to work with test-runner rewrite James Prestwood
2020-09-10 23:12 ` [PATCH v5 07/26] auto-t: remove wiphy.py James Prestwood
2020-09-10 23:12 ` [PATCH v5 08/26] auto-t: fix hidden network test James Prestwood
2020-09-10 23:12 ` [PATCH v5 09/26] auto-t: fix testSAE autoconnect_test.py James Prestwood
2020-09-10 23:12 ` [PATCH v5 10/26] auto-t: skip ofono tests if ofonod isn't running James Prestwood
2020-09-10 23:12 ` [PATCH v5 11/26] auto-t: replace hard-coded interfaces James Prestwood
2020-09-10 23:12 ` [PATCH v5 12/26] auto-t: remove device.wait_for_connected James Prestwood
2020-09-10 23:12 ` [PATCH v5 13/26] tools: post test-runner rewrite cleanup James Prestwood
2020-09-10 23:12 ` [PATCH v5 14/26] doc: update test runner docs James Prestwood
2020-09-10 23:12 ` [PATCH v5 15/26] auto-t: hwsim: wait for method return James Prestwood
2020-09-10 23:12 ` [PATCH v5 16/26] auto-t: Increase all test timeouts James Prestwood
2020-09-10 23:12 ` [PATCH v5 17/26] auto-t: fix SAE FT test and update James Prestwood
2020-09-10 23:12 ` [PATCH v5 18/26] auto-t: update testClientNonInteractive to use TestContext James Prestwood
2020-09-10 23:12 ` [PATCH v5 19/26] auto-t: update testAgent " James Prestwood
2020-09-10 23:12 ` [PATCH v5 20/26] auto-t: fix testBSSBlacklist James Prestwood
2020-09-10 23:12 ` [PATCH v5 21/26] auto-t: fix testAP James Prestwood
2020-09-10 23:12 ` [PATCH v5 22/26] auto-t: fix testAPRoam James Prestwood
2020-09-10 23:12 ` [PATCH v5 23/26] auto-t: harden testHotspot James Prestwood
2020-09-10 23:12 ` [PATCH v5 24/26] auto-t: fix testWPA2 to wait for device object James Prestwood
2020-09-10 23:12 ` [PATCH v5 25/26] auto-t: fix testPreauth-roam James Prestwood
2020-09-10 23:12 ` [PATCH v5 26/26] auto-t: fix testFT-PSK-roam James Prestwood
2020-09-10 23:21 ` Denis Kenzior [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a42bdf14-1d4a-cb56-7c55-ed4952d612c1@gmail.com \
    --to=denkenz@gmail.com \
    --cc=iwd@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.