/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/status_test.py
41 строка
1 KB
Artyom Beilis
Support of python 2.7 and python 3
26 авг 2020, 00:16
26 авг 2020, 00:16
0c67544
Код
Авторство
О чём код?
#!/usr/bin/env python # coding=utf-8 from __future__ import print_function try: import httplib except: import http.client as httplib import sys def test_status(h,stat): if h.status != stat: print("Status mistmatch:",h.status,"!=",stat) sys.exit(1) def test_valid(url,status,resp = ''): h=httplib.HTTPConnection('localhost:8080'); h.request('GET','/test' + url) r=h.getresponse() body = r.read().decode(); if r.status!=status: print("Failed", url , r.status,"!=",status ) sys.exit(1) if resp != '' and body!=resp: print("Failed", url ,"[%s]" % body,"!=", "[%s]" % resp) sys.exit(1) else: print("Ok",url,status) test_valid('/normal',200) test_valid('/throws',500) test_valid('/invalid',404) if len(sys.argv) == 2 and sys.argv[1]=='async': test_valid('/delayed',200) test_valid('/delayed_with_response',200,'test message') test_valid('/delayed_twice',200,'message1message2') # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4