summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/python
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/python')
-rw-r--r--sca-cpp/trunk/modules/python/client-test.py3
-rw-r--r--sca-cpp/trunk/modules/python/server-test.py3
-rwxr-xr-xsca-cpp/trunk/modules/python/wiring-test4
3 files changed, 10 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/python/client-test.py b/sca-cpp/trunk/modules/python/client-test.py
index 3c7183e865..5d73515ca2 100644
--- a/sca-cpp/trunk/modules/python/client-test.py
+++ b/sca-cpp/trunk/modules/python/client-test.py
@@ -36,5 +36,8 @@ def post(collection, item, ref):
def put(id, item, ref):
return ref.put(id, item)
+def patch(id, item, ref):
+ return ref.patch(id, item)
+
def delete(id, ref):
return ref.delete(id)
diff --git a/sca-cpp/trunk/modules/python/server-test.py b/sca-cpp/trunk/modules/python/server-test.py
index da5d216da5..fe493f671a 100644
--- a/sca-cpp/trunk/modules/python/server-test.py
+++ b/sca-cpp/trunk/modules/python/server-test.py
@@ -38,5 +38,8 @@ def post(collection, item):
def put(id, item):
return True
+def patch(id, item):
+ return True
+
def delete(id):
return True
diff --git a/sca-cpp/trunk/modules/python/wiring-test b/sca-cpp/trunk/modules/python/wiring-test
index 899c3eb5a1..e7bb6c410d 100755
--- a/sca-cpp/trunk/modules/python/wiring-test
+++ b/sca-cpp/trunk/modules/python/wiring-test
@@ -60,6 +60,10 @@ if [ "$rc" = "0" ]; then
rc=$?
fi
if [ "$rc" = "0" ]; then
+ $curl_prefix/bin/curl http://localhost:8090/client/111 -X PATCH -H "Content-type: application/atom+xml" --data @../server/htdocs/test/entry.xml 2>/dev/null
+ rc=$?
+fi
+if [ "$rc" = "0" ]; then
$curl_prefix/bin/curl http://localhost:8090/client/111 -X DELETE 2>/dev/null
rc=$?
fi