فهرست منبع

Allow POST in stress test.

Stefano Cossu 7 سال پیش
والد
کامیت
bba98ed6e3
1فایلهای تغییر یافته به همراه10 افزوده شده و 2 حذف شده
  1. 10 2
      tests/10K_children.py

+ 10 - 2
tests/10K_children.py

@@ -20,6 +20,12 @@ sys.stdout.write('Delete container? [n] >')
 choice = input().lower()
 del_cont = choice or 'n'
 
+sys.stdout.write('POST or PUT? [PUT] >')
+choice = input().lower()
+if choice and choice.lower() not in ('post', 'put'):
+    raise ValueError('Not a valid verb.')
+method = choice.lower() or 'put'
+
 # Generate 10,000 children of root node.
 
 if del_cont  == 'y':
@@ -34,8 +40,10 @@ print('Inserting {} children.'.format(n))
 data = open(datafile, 'rb').read()
 try:
     for i in range(1, n):
-        rsp = requests.put('{}/{}'.format(container, uuid4()), data=data,
-                headers={ 'content-type': 'text/turtle'})
+        url = '{}/{}'.format(container, uuid4()) if method == 'put' \
+                else container
+        rsp = requests.request(method, url,
+                data=data, headers={ 'content-type': 'text/turtle'})
         rsp.raise_for_status()
         if i % 10 == 0:
             now = arrow.utcnow()