瀏覽代碼

Set checkpoint timestamp in stress test; fix exception messages.

Stefano Cossu 7 年之前
父節點
當前提交
45b23294d3
共有 2 個文件被更改,包括 11 次插入8 次删除
  1. 6 6
      lakesuperior/exceptions.py
  2. 5 2
      tests/10K_children.py

+ 6 - 6
lakesuperior/exceptions.py

@@ -19,8 +19,8 @@ class ResourceExistsError(ResourceError):
 
     This usually surfaces at the HTTP level as a 409.
     '''
-    def __repr__(self):
-        return self.msg or 'Resource #{} already exists.'.format(self.uuid)
+    def __str__(self):
+        return self.msg or 'Resource {} already exists.'.format(self.uuid)
 
 
 
@@ -31,8 +31,8 @@ class ResourceNotExistsError(ResourceError):
 
     This usually surfaces at the HTTP level as a 404.
     '''
-    def __repr__(self):
-        return self.msg or 'Resource #{} does not exist.'.format(self.uuid)
+    def __str__(self):
+        return self.msg or 'Resource {} not found.'.format(self.uuid)
 
 
 
@@ -42,8 +42,8 @@ class InvalidResourceError(ResourceError):
 
     This usually surfaces at the HTTP level as a 409 or other error.
     '''
-    def __repr__(self):
-        return self.msg or 'Resource #{} is invalid.'.format(self.uuid)
+    def __str__(self):
+        return self.msg or 'Resource {} is invalid.'.format(self.uuid)
 
 
 

+ 5 - 2
tests/10K_children.py

@@ -8,12 +8,15 @@ import requests
 requests.put('http://localhost:5000/ldp/pomegranate')
 
 start = arrow.utcnow()
+ckpt = start
 
 for i in range(1, 10000):
     requests.post('http://localhost:5000/ldp/pomegranate')
     if i % 100 == 0:
-        tdelta = arrow.utcnow() - start
-        print('Record: \t{} Time elapsed: \t{}'.format(i, tdelta))
+        now = arrow.utcnow()
+        tdelta = now - ckpt
+        ckpt = now
+        print('Record: {}\tTime elapsed: {}'.format(i, tdelta))
 
 tdelta = arrow.utcnow() - start
 print('Total elapsed time: {}'.format(tdelta))