Enable test case for python_pybuf

This commit is contained in:
Giacomo Mazzamuto 2018-07-04 10:48:06 +02:00
commit 5a8c4fde4c
2 changed files with 13 additions and 11 deletions

View file

@ -67,6 +67,7 @@ CPP_TEST_CASES += \
python_nondynamic \ python_nondynamic \
python_overload_simple_cast \ python_overload_simple_cast \
python_pickle \ python_pickle \
python_pybuf \
python_pythoncode \ python_pythoncode \
python_richcompare \ python_richcompare \
python_strict_unicode \ python_strict_unicode \
@ -78,7 +79,6 @@ CPP_TEST_CASES += \
# li_std_carray # li_std_carray
# director_profile # director_profile
# python_pybuf
CPP11_TEST_CASES = \ CPP11_TEST_CASES = \
cpp11_hash_tables \ cpp11_hash_tables \

View file

@ -1,8 +1,10 @@
# run: # run:
# python python_pybuf_runme3.py benchmark # python python_pybuf_runme.py benchmark
# for the benchmark, other wise the test case will be run # for the benchmark, other wise the test case will be run
import python_pybuf import python_pybuf
import sys import sys
if len(sys.argv) >= 2 and sys.argv[1] == "benchmark": if len(sys.argv) >= 2 and sys.argv[1] == "benchmark":
# run the benchmark # run the benchmark
import time import time
@ -11,31 +13,31 @@ if len(sys.argv) >= 2 and sys.argv[1] == "benchmark":
t = time.time() t = time.time()
a = bytearray(b'hello world') a = bytearray(b'hello world')
for i in range(k): for i in range(k):
pybuf.title1(a) python_pybuf.title1(a)
print("Time used by bytearray:", time.time() - t) print "Time used by bytearray:", time.time() - t
t = time.time() t = time.time()
b = 'hello world' b = 'hello world'
for i in range(k): for i in range(k):
pybuf.title2(b) python_pybuf.title2(b)
print("Time used by string:", time.time() - t) print "Time used by string:", time.time() - t
else: else:
# run the test case # run the test case
buf1 = bytearray(10) buf1 = bytearray(10)
buf2 = bytearray(50) buf2 = bytearray(50)
pybuf.func1(buf1) python_pybuf.func1(buf1)
assert buf1 == b'a' * 10 assert buf1 == b'a' * 10
pybuf.func2(buf2) python_pybuf.func2(buf2)
assert buf2.startswith(b"Hello world!\x00") assert buf2.startswith(b"Hello world!\x00")
count = pybuf.func3(buf2) count = python_pybuf.func3(buf2)
assert count == 10 # number of alpha and number in 'Hello world!' assert count == 10 # number of alpha and number in 'Hello world!'
length = pybuf.func4(buf2) length = python_pybuf.func4(buf2)
assert length == 12 assert length == 12
buf3 = bytearray(b"hello") buf3 = bytearray(b"hello")
pybuf.title1(buf3) python_pybuf.title1(buf3)
assert buf3 == b'Hello' assert buf3 == b'Hello'