Testsuite: reference default user/pass from variable

This commit is contained in:
Christian Poessinger 2021-12-09 10:16:06 +01:00
parent c5dee499ab
commit 2aa0166d87

View File

@ -218,6 +218,8 @@ try:
################################################# #################################################
op_mode_prompt = r'vyos@vyos:~\$' op_mode_prompt = r'vyos@vyos:~\$'
cfg_mode_prompt = r'vyos@vyos#' cfg_mode_prompt = r'vyos@vyos#'
default_user = 'vyos'
default_password = 'vyos'
try: try:
c.expect('Automatic boot in', timeout=10) c.expect('Automatic boot in', timeout=10)
@ -257,9 +259,9 @@ try:
c.sendline('') c.sendline('')
log.info('Files Copied!') log.info('Files Copied!')
c.expect('\nEnter password for user.*:') c.expect('\nEnter password for user.*:')
c.sendline('vyos') c.sendline(default_user)
c.expect('\nRetype password for user.*:') c.expect('\nRetype password for user.*:')
c.sendline('vyos') c.sendline(default_password)
c.expect('\nWhich drive should GRUB modify the boot partition on.*:') c.expect('\nWhich drive should GRUB modify the boot partition on.*:')
c.sendline('') c.sendline('')
c.expect(op_mode_prompt) c.expect(op_mode_prompt)
@ -301,9 +303,9 @@ try:
log.info('Waiting for login prompt') log.info('Waiting for login prompt')
c.expect('[Ll]ogin:', timeout=600) c.expect('[Ll]ogin:', timeout=600)
c.sendline('vyos') c.sendline(default_user)
c.expect('[Pp]assword:', timeout=20) c.expect('[Pp]assword:', timeout=20)
c.sendline('vyos') c.sendline(default_password)
c.expect(op_mode_prompt) c.expect(op_mode_prompt)
log.info('Logged in!') log.info('Logged in!')