summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingjing Liu <jingjingliu@google.com>2017-03-23 20:33:19 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-03-23 20:33:19 +0000
commitfa8f5ed98a2c05babc3962b956cca5db2b114a09 (patch)
tree791a0503a9cff61ba3e8cecd17299dbf5edce438
parent3d2b8beb2f141260d5b0448393fdd8e5f23faf29 (diff)
parentd06abd405ff6356101af23ba7e719a7970cb4d88 (diff)
downloadadt-infra-fa8f5ed98a2c05babc3962b956cca5db2b114a09.tar.gz
Merge "Stabilize test: test_auth_empty_auth_token_file"
-rw-r--r--emu_test/test_console/testcase_auth.py37
1 files changed, 24 insertions, 13 deletions
diff --git a/emu_test/test_console/testcase_auth.py b/emu_test/test_console/testcase_auth.py
index 72364942..d506f233 100644
--- a/emu_test/test_console/testcase_auth.py
+++ b/emu_test/test_console/testcase_auth.py
@@ -174,20 +174,31 @@ class AuthTest(testcase_base.BaseConsoleTest):
# save auth token value and empty contents of auth token file
valid_auth_token = util.get_auth_token()
- f = open(util.TOKEN_PATH, 'w')
- f.close()
- # telnet and verify
- self.telnet = util.telnet_emulator()
- self._verify_auth_command_by_enter_help_command(
- util.REGEX_HELP_DISPLAY_AUTH)
-
- # reset auth token file
- f = open(util.TOKEN_PATH, 'w')
- f.write(valid_auth_token)
- f.close()
-
- util.exit_emulator_console(self.telnet)
+ try:
+ f = open(util.TOKEN_PATH, 'w')
+ f.close()
+
+ # telnet and verify
+ self.telnet = util.telnet_emulator()
+ self._verify_auth_command_by_enter_help_command(
+ util.REGEX_HELP_DISPLAY_AUTH)
+
+ # reset auth token file
+ f = open(util.TOKEN_PATH, 'w')
+ f.write(valid_auth_token)
+ f.close()
+
+ util.exit_emulator_console(self.telnet)
+ except IOError as e:
+ print 'IOError on auth token file.'
+ finally:
+ print ('The failure on resetting auth token file back will affact other '
+ 'tests running after this test. Hence, reset it again when '
+ 'failure happens.')
+ f = open(util.TOKEN_PATH, 'w')
+ f.write(valid_auth_token)
+ f.close()
def test_auth_change_auth_token_file_permissions(self):
"""Test command for: auth <auth_token>.