/unit/test/ |
H A D | test_perl_application.py | 16 resp = client.post( 105 client.post(body='0123456789')['body'] == '0123456789' 112 assert client.post(body='012345')['body'] == '012345', 'buffered read #1' 114 client.post(body='9876543210')['body'] == '9876543210' 121 assert client.post(body='012345')['body'] == '012345', 'input close #1' 123 client.post(body='9876543210')['body'] == '9876543210' 131 assert client.post(body='0123456789')['body'] == '4567', 'read offset' 138 assert client.post(body=body)['body'] == body, 'input copy' 183 resp = client.post(body=body)['body'] 220 (resp, sock) = client.post( [all …]
|
H A D | test_ruby_application.py | 17 resp = client.post( 114 client.post(body='0123456789')['body'] == '012345678' 122 client.post(body='0123456789')['body'] == '0123456789' 130 client.post(body='0123456789')['body'] == '0123456789' 139 assert client.post(body=body)['body'] == body, 'input gets' 146 client.post(body='01234\n56789\n')['body'] == '01234\n' 163 assert client.post(body=body)['body'] == body, 'input each' 285 resp = client.post(body="\ntc=one,two\ntc=three,four,\n\n") 301 client.post(body='\b')['status'] == 500 375 (resp, sock) = client.post( [all …]
|
H A D | test_access_log.py | 35 (_, sock) = client.post( 49 _ = client.post(sock=sock, body='0123456789') 180 assert client.post()['status'] == 200, 'init' 194 assert client.post()['status'] == 200, 'init' 206 assert client.post()['status'] == 200, 'init' 220 assert client.post()['status'] == 200, 'init' 235 assert client.post()['status'] == 200, 'init' 304 client.post(url='/bbs', body=body, read_timeout=1)
|
H A D | test_python_application.py | 205 (resp, sock) = client.post( 233 (resp, sock) = client.post( 250 (resp, sock) = client.post( 280 (resp, sock) = client.post( 365 resp = client.post(body=body) 378 resp = client.post(body=body) 405 resp = client.post(body=body) 432 resp = client.post( 443 resp = client.post( 454 resp = client.post( [all …]
|
H A D | test_go_application.py | 15 resp = client.post( 61 resp = client.post( 90 (resp, sock) = client.post( 103 resp = client.post(sock=sock, body=body)
|
H A D | test_node_application.py | 48 resp = client.post( 100 resp = client.post( 129 (resp, sock) = client.post( 142 resp = client.post(sock=sock, body=body) 255 client.post( 272 client.post(
|
H A D | test_settings.py | 358 assert client.post(body='01234')['status'] == 200, 'status size' 359 assert client.post(body='012345')['status'] == 413, 'status size max' 370 resp = client.post(body=body, read_buffer_size=1024 * 1024) 375 resp = client.post(body=body, read_buffer_size=1024 * 1024) 380 resp = client.post(body=body, read_buffer_size=1024 * 1024) 385 resp = client.post(body=body, read_buffer_size=1024 * 1024) 411 resp = client.post(body=body) 417 resp = client.post(body=body, read_buffer_size=1024 * 1024) 423 resp = client.post(body=body, read_buffer_size=1024 * 1024) 429 resp = client.post(body=body, read_buffer_size=1024 * 1024)
|
H A D | test_asgi_application.py | 215 resp = client.post(body=body, read_buffer_size=1024 * 1024) 226 (resp, sock) = client.post( 239 resp = client.post(sock=sock, body=body) 254 (resp, sock) = client.post( 271 (resp, sock) = client.post( 287 resp = client.post(sock=socks[i], body=body) 301 (resp, sock) = client.post( 317 (resp, sock) = client.post(start=True, sock=sock, body=body)
|
H A D | test_http_header.py | 227 client.post( 243 client.post( 259 client.post( 275 client.post( 291 client.post(
|
H A D | test_routing.py | 65 assert client.post()['status'] == 404, 'POST' 72 assert client.post()['status'] == 200, 'POST' 80 assert client.post()['status'] == 200, 'POST' 87 assert client.post()['status'] == 404, 'POST' 95 assert client.post()['status'] == 404, 'POST' 102 assert client.post()['status'] == 404, 'POST' 109 assert client.post()['status'] == 404, 'POST' 751 assert client.post()['status'] == 404, 'routes edit POST' 833 assert client.post()['status'] == 200, 'match edit POST' 844 assert client.post()['status'] == 200, 'match edit POST 2' [all …]
|
H A D | test_usr1.py | 60 assert client.post(body=body)['status'] == 200 70 assert client.post(body=body)['status'] == 200
|
H A D | test_java_application.py | 100 headers = client.post( 799 assert client.post()['status'] == 200, 'init' 802 (resp, sock) = client.post( 816 resp = client.post( 838 assert client.post()['status'] == 405, 'no method' 978 resp = client.post(
|
H A D | test_php_application.py | 115 resp = client.post( 310 (resp, sock) = client.post( 323 resp = client.post(sock=sock, body=body) 332 assert re.search(r'False', client.post()['body']), 'conditional false' 348 resp = client.post(
|
H A D | test_static_fallback.py | 65 resp = client.post()
|
H A D | test_return.py | 46 resp = client.post(body='blah')
|
H A D | test_static.py | 210 assert client.post()['status'] == 405, 'POST'
|
H A D | test_variables.py | 92 assert client.post()['status'] == 200
|
H A D | test_proxy.py | 101 return client.post(*args, http_10=True, **kwargs)
|
/unit/test/unit/ |
H A D | control.py | 47 return self.post(**self._get_args(url, conf))['body']
|
/unit/test/unit/applications/ |
H A D | tls.py | 55 return self.post(wrapper=context.wrap_socket, **kwargs)
|
/unit/src/ |
H A D | nxt_event_engine.c | 293 nxt_bool_t post; in nxt_event_engine_signal_pipe() local 301 post = 0; in nxt_event_engine_signal_pipe() 313 post = 1; in nxt_event_engine_signal_pipe() 323 if (post) { in nxt_event_engine_signal_pipe()
|
/unit/pkg/rpm/ |
H A D | unit.module.spec.in | 106 %post
|
H A D | Makefile | 231 post=`echo "$$MODULE_POST_$*" | sed -e ':a' -e 'N' -e '$$!ba' -e "s/\n/\$$CR/g"` ; \ 250 -e "s#%%MODULE_POST%%#$${post}#g" \
|
H A D | unit.spec.in | 44 Requires(post): systemd 166 %post
|
/unit/pkg/deb/ |
H A D | Makefile | 284 post=`echo "$$MODULE_POST_$*" | sed -e ':a' -e 'N' -e '$$!ba' -e "s/\n/\$$CR/g"` ; \ 312 -e "s#%%MODULE_POST%%#$$post#g" \
|