Dodanie API pozwalającego na listowanie i wgrywanie książek.
[wolnelektury.git] / scripts / test_api.py
diff --git a/scripts/test_api.py b/scripts/test_api.py
new file mode 100644 (file)
index 0000000..41d3f3d
--- /dev/null
@@ -0,0 +1,26 @@
+import httplib2
+from poster.encode import multipart_encode
+from poster.streaminghttp import register_openers
+import sys
+import getpass
+
+register_openers()
+
+datagen, headers = multipart_encode({'book_xml_file': open(sys.argv[1], "rb")})
+data = ''.join(list(datagen))
+for key, value in headers.items():
+    headers[key] = str(value)
+
+password = getpass.getpass()
+
+h = httplib2.Http()
+h.add_credentials('zuber', password)
+h.follow_all_redirects = True
+
+resp, content = h.request(
+    'http://localhost:8000/api/books.json',
+    'POST',
+    body=data,
+    headers=headers
+)
+print resp, content
\ No newline at end of file