/core/users Test: Test fail, XOS issue

Change-Id: I0adc4e3f1e86b210aefd20783652ae472bc98914
diff --git a/src/test/cord-api/Framework/restApi.py b/src/test/cord-api/Framework/restApi.py
index dd8b7ad..68c1d18 100644
--- a/src/test/cord-api/Framework/restApi.py
+++ b/src/test/cord-api/Framework/restApi.py
@@ -112,6 +112,7 @@
 
     def ApiDelete(self, key, urlSuffix=""):
         url = self.getURL(key) + str(urlSuffix)
+        print "url",url
         resp = requests.delete(url, auth=(self.user, self.password))
         passed = self.checkResult(resp, requests.codes.no_content)
         return passed
@@ -132,8 +133,19 @@
     time.sleep(5)
     result = test.ApiDelete(key, urlSuffix)
 '''
-'''
 test = restApi()
+#key = "UTILS_SYNCHRONIZER"
+key = "CORE_USERS"
+key2 = "UTILS_LOGIN"
+#key = "TENANT_SUBSCRIBER"
+#jsonGetData = test.ApiGet(key)
+#jsonResponse = test.ApiPut(key,{"identity":{"name":"My House 22"}},"71")
+jsonResponse = test.ApiPost(key,{"firstname":"Test002","lastname":"User002","email":"test002@onlab.us","password":"TestUser002","site": "http://localhost:8000/api/core/sites/1/"})
+#jsonResponse = test.ApiDelete(key,15)
+#jsonResponse = test.ApiPut(key,{"firstname":"Test002","lastname":"User002","email":"test002update@onlab.us","password":"TestUser002","site": "http://localhost:8000/api/core/sites/1/"},14)
+#jsonResponse = test.ApiPost(key2,{"username":"test002update@onlab.us","password":"TestUser002"})
+#jsonResponse = test.ApiPost(key2,{"username":"padmin@vicci.org","password":"letmein"})
+#jsonResponse = test.ApiPut(key,{"username":"testuser","password":"TestUser001"},"9")
 key = "UTILS_SYNCHRONIZER"
 #key = "TENANT_SUBSCRIBER"
 jsonGetData = test.ApiGet(key)
@@ -141,4 +153,3 @@
 #jsonResponse = test.ApiPost(key,{"name":"test-2"})
 jsonResponse = test.ApiPut(key,{"name":"test1-changed"},"9")
 print "========="
-'''