diff options
author | Girish Moturu <gmoturu@google.com> | 2018-07-27 10:53:38 -0700 |
---|---|---|
committer | Girish Moturu <gmoturu@google.com> | 2018-07-27 11:01:23 -0700 |
commit | 9b1de53752f3cf6b1c2f7178a5d9328d168c7d28 (patch) | |
tree | f57f9b143599f36c00be8fa93b20e9f848135688 | |
parent | 029d8e1d5ff9a3e988573e288002af68ac336d9c (diff) | |
download | platform_tools_test_connectivity-9b1de53752f3cf6b1c2f7178a5d9328d168c7d28.tar.gz platform_tools_test_connectivity-9b1de53752f3cf6b1c2f7178a5d9328d168c7d28.tar.bz2 platform_tools_test_connectivity-9b1de53752f3cf6b1c2f7178a5d9328d168c7d28.zip |
[WifiTethering_OTATest] Add UUIDs to the tests
Bug: 109876567
Test: Verified the changes
Change-Id: Idc8eab275270c394a9b5ea11c6987716900dfd46
Merged-In: Ic314d4397b8cef059d1944514003bcbca82d6d36
4 files changed, 32 insertions, 0 deletions
diff --git a/acts/tests/google/wifi/WifiTethering2GOpenOTATest.py b/acts/tests/google/wifi/WifiTethering2GOpenOTATest.py index 68f039980e..a603e017fa 100755 --- a/acts/tests/google/wifi/WifiTethering2GOpenOTATest.py +++ b/acts/tests/google/wifi/WifiTethering2GOpenOTATest.py @@ -73,5 +73,13 @@ class WifiTethering2GOpenOTATest(BaseTestClass): """Tests""" + @test_tracker_info(uuid="fe502bc3-f9c6-4bed-98ad-acaa7e166521") def test_wifi_tethering_ota_2g_open(self): + """ Verify wifi hotspot after ota upgrade + + Steps: + 1. Save a wifi hotspot config with 2g band and open auth + 2. Do a OTA update + 3. Verify that wifi hotspot works with teh saved config + """ self._verify_wifi_tethering() diff --git a/acts/tests/google/wifi/WifiTethering2GPskOTATest.py b/acts/tests/google/wifi/WifiTethering2GPskOTATest.py index e1904e7c89..e9fedcd24c 100755 --- a/acts/tests/google/wifi/WifiTethering2GPskOTATest.py +++ b/acts/tests/google/wifi/WifiTethering2GPskOTATest.py @@ -73,5 +73,13 @@ class WifiTethering2GPskOTATest(BaseTestClass): """Tests""" + @test_tracker_info(uuid="4b1cec63-d1d2-4046-84e9-e806bb08ce41") def test_wifi_tethering_ota_2g_psk(self): + """ Verify wifi hotspot after ota upgrade + + Steps: + 1. Save a wifi hotspot config with 2g band and psk auth + 2. Do a OTA update + 3. Verify that wifi hotspot works with teh saved config + """ self._verify_wifi_tethering() diff --git a/acts/tests/google/wifi/WifiTethering5GOpenOTATest.py b/acts/tests/google/wifi/WifiTethering5GOpenOTATest.py index 6084500df0..6648d0e461 100755 --- a/acts/tests/google/wifi/WifiTethering5GOpenOTATest.py +++ b/acts/tests/google/wifi/WifiTethering5GOpenOTATest.py @@ -73,5 +73,13 @@ class WifiTethering5GOpenOTATest(BaseTestClass): """Tests""" + @test_tracker_info(uuid="b1a94c8f-f3ed-4755-be4a-764e205b4483") def test_wifi_tethering_ota_5g_open(self): + """ Verify wifi hotspot after ota upgrade + + Steps: + 1. Save a wifi hotspot config with 5g band and open auth + 2. Do a OTA update + 3. Verify that wifi hotspot works with teh saved config + """ self._verify_wifi_tethering() diff --git a/acts/tests/google/wifi/WifiTethering5GPskOTATest.py b/acts/tests/google/wifi/WifiTethering5GPskOTATest.py index 5cb532ac6c..74505787ff 100755 --- a/acts/tests/google/wifi/WifiTethering5GPskOTATest.py +++ b/acts/tests/google/wifi/WifiTethering5GPskOTATest.py @@ -73,5 +73,13 @@ class WifiTethering5GPskOTATest(BaseTestClass): """Tests""" + @test_tracker_info(uuid="111d3a33-3152-4993-b1ba-307daaf2a6ff") def test_wifi_tethering_ota_5g_psk(self): + """ Verify wifi hotspot after ota upgrade + + Steps: + 1. Save a wifi hotspot config with 5g band and psk auth + 2. Do a OTA update + 3. Verify that wifi hotspot works with teh saved config + """ self._verify_wifi_tethering() |