Server IP : 13.213.54.232 / Your IP : 216.73.217.11 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-172-31-17-110 6.8.0-1029-aws #31~22.04.1-Ubuntu SMP Thu Apr 24 21:16:18 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.1.33-67+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /snap/core20/current/usr/share/subiquity/subiquitycore/testing/ |
Upload File : |
import re import urwid from subiquitycore.ui.stretchy import StretchyOverlay def find_with_pred(w, pred, return_path=False): def _walk(w, path): if not isinstance(w, urwid.Widget): raise RuntimeError( "_walk walked to non-widget %r via %r" % (w, path)) if pred(w): return w, path if hasattr(w, '_wrapped_widget'): return _walk(w._wrapped_widget, (w,) + path) if hasattr(w, 'original_widget'): return _walk(w.original_widget, (w,) + path) if isinstance(w, urwid.ListBox): for w in w.body: r, p = _walk(w, (w,) + path) if r: return r, p elif isinstance(w, urwid.Frame): for w, _ in w.contents.values(): r, p = _walk(w, (w,) + path) if r: return r, p elif hasattr(w, 'contents'): contents = w.contents for w, _ in contents: r, p = _walk(w, (w,) + path) if r: return r, p elif isinstance(w, StretchyOverlay): r, p = _walk(w.top_w, (w,) + path) if r: return r, p return None, None r, p = _walk(w, ()) if return_path: return r, p else: return r def find_button_matching(w, pat, return_path=False): def pred(w): return isinstance(w, urwid.Button) and re.match(pat, w.label) return find_with_pred(w, pred, return_path) def click(but): but._emit('click') def keypress(w, key, size=(30, 1)): w.keypress(size, key) def get_focus_path(w): path = [] while True: path.append(w) if isinstance(w, urwid.ListBox) and (w.set_focus_pending == "first selectable"): for w2 in w.body: if w2.selectable(): w = w2 break else: break if w.focus is not None: w = w.focus elif hasattr(w, '_wrapped_widget'): w = w._wrapped_widget elif hasattr(w, 'original_widget'): w = w.original_widget else: break return path def enter_data(form, data): for k, v in data.items(): bf = getattr(form, k) assert bf.enabled, "%s is not enabled" % (k,) bf.value = v