def test_LRUCache(): cache = utils.LRUCache(2) class Foo: ran = False def gen(self, x): self.ran = True return x f = Foo() assert not f.ran assert cache.get(f.gen, 1) == 1 assert f.ran f.ran = False assert cache.get(f.gen, 1) == 1 assert not f.ran f.ran = False assert cache.get(f.gen, 1) == 1 assert not f.ran assert cache.get(f.gen, 2) == 2 assert cache.get(f.gen, 3) == 3 assert f.ran f.ran = False assert cache.get(f.gen, 1) == 1 assert f.ran assert len(cache.cacheList) == 2 assert len(cache.cache) == 2
self.master, self.flow = master, f self._w = common.format_flow(f, False, extended=True, hostheader=self.master.showhost) signals.flow_change.connect(self.sig_flow_change) def sig_flow_change(self, sender, flow): if flow == self.flow: self._w = common.format_flow(flow, False, extended=True, hostheader=self.master.showhost) cache = utils.LRUCache(200) TAB_REQ = 0 TAB_RESP = 1 class FlowView(tabs.Tabs): highlight_color = "focusfield" def __init__(self, master, state, flow, tab_offset): self.master, self.state, self.flow = master, state, flow tabs.Tabs.__init__(self, [ (self.tab_request, self.view_request), (self.tab_response, self.view_response), (self.tab_details, self.view_details), ], tab_offset)
_l_ocust_code, locust_t_ask scope: None, _a_ll, re_q_uest, re_s_ponse writer: copy_to_clipboard_or_prompt, ask_save_path """ for _, exp_key, exporter in export.EXPORTERS: if key == exp_key: if exporter is None: # 'c' & 'h' if scope is None: ask_scope_and_callback(flow, handle_flow_data, key, writer) else: handle_flow_data(scope, flow, key, writer) else: # other keys writer(exporter(flow)) flowcache = utils.LRUCache(800) def raw_format_flow(f, focus, extended): f = dict(f) pile = [] req = [] if extended: req.append( fcol( human.format_timestamp(f["req_timestamp"]), "highlight" ) ) else: req.append(fcol(">>" if focus else " ", "focus"))