MCPcopy Create free account
hub / github.com/apache/httpd / _raw

Method _raw

test/pyhttpd/nghttp.py:204–213  ·  view source on GitHub ↗
(self, url, timeout, options)

Source from the content-addressed store, hash-verified

202 return output
203
204 def _raw(self, url, timeout, options):
205 args = ["-v"]
206 if self._test_name is not None:
207 args.append(f'--header=AP-Test-Name: {self._test_name}')
208 if options:
209 args.extend(options)
210 r = self._baserun(url, timeout, args)
211 if 0 == r.exit_code:
212 r.add_results(self.parse_output(r.outraw))
213 return r
214
215 def get(self, url, timeout=5, options=None):
216 return self._raw(url, timeout, options)

Callers 5

getMethod · 0.95
post_dataMethod · 0.95
post_nameMethod · 0.95
uploadMethod · 0.95
upload_fileMethod · 0.95

Calls 3

_baserunMethod · 0.95
parse_outputMethod · 0.95
add_resultsMethod · 0.80

Tested by

no test coverage detected