|
@@ -5,23 +5,28 @@ import arrow
|
|
import requests
|
|
import requests
|
|
|
|
|
|
default_n = 10000
|
|
default_n = 10000
|
|
|
|
+webroot = 'http://localhost:8000/ldp'
|
|
|
|
+#webroot = 'http://localhost:8080/fcrepo/rest'
|
|
|
|
+container = webroot + '/pomegranate'
|
|
|
|
+datafile = 'tests/data/marcel_duchamp_single_subject.ttl'
|
|
|
|
|
|
sys.stdout.write('How many children? [{}] >'.format(default_n))
|
|
sys.stdout.write('How many children? [{}] >'.format(default_n))
|
|
choice = input().lower()
|
|
choice = input().lower()
|
|
|
|
|
|
-n = int(choice) or default_n
|
|
|
|
|
|
+n = int(choice) if choice else default_n
|
|
|
|
|
|
# Generate 10,000 children of root node.
|
|
# Generate 10,000 children of root node.
|
|
|
|
|
|
-requests.put('http://localhost:8000/ldp/pomegranate')
|
|
|
|
|
|
+requests.put(container)
|
|
|
|
|
|
start = arrow.utcnow()
|
|
start = arrow.utcnow()
|
|
ckpt = start
|
|
ckpt = start
|
|
|
|
|
|
print('Inserting {} children.'.format(n))
|
|
print('Inserting {} children.'.format(n))
|
|
|
|
|
|
|
|
+data = open(datafile, 'rb').read()
|
|
for i in range(1, n):
|
|
for i in range(1, n):
|
|
- requests.post('http://localhost:8000/ldp/pomegranate')
|
|
|
|
|
|
+ requests.post(container, data=data, headers={'content-type' : 'text/turtle'})
|
|
if i % 100 == 0:
|
|
if i % 100 == 0:
|
|
now = arrow.utcnow()
|
|
now = arrow.utcnow()
|
|
tdelta = now - ckpt
|
|
tdelta = now - ckpt
|