Merge "Introducing commands to be utilized for functional"
authorChristopher O'Shea <christopher.o.shea@ericsson.com>
Thu, 28 Aug 2014 18:34:09 +0000 (18:34 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 28 Aug 2014 18:34:09 +0000 (18:34 +0000)
test/tools/odl-mdsal-clustering-tests/clustering-functional-test/populate.py [new file with mode: 0644]
test/tools/odl-mdsal-clustering-tests/clustering-functional-test/settings.py [new file with mode: 0644]
test/tools/odl-mdsal-clustering-tests/clustering-functional-test/util.py [new file with mode: 0644]

diff --git a/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/populate.py b/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/populate.py
new file mode 100644 (file)
index 0000000..81ae1df
--- /dev/null
@@ -0,0 +1,244 @@
+__author__ = "Basheeruddin Ahmed"
+__copyright__ = "Copyright(c) 2014, Cisco Systems, Inc."
+__license__ = "New-style BSD"
+__email__ = "syedbahm@cisco.com"
+import sys
+import util
+import settings
+
+
+#
+#Creates the specified number of cars based on Cars yang model
+# using RESTCONF
+#
+
+def addCar(numberOfCars):
+
+    for x in range(1, numberOfCars+1):
+        strId = str(x)
+        payload = settings.add_car_payload_template.substitute(id=strId,category="category"+strId,model="model"+strId,
+                                                           manufacturer="manufacturer"+strId,
+                                                           year=(2000+x%100))
+        print("payload formed after template substitution=")
+        print(payload)
+        # Send the POST request
+        resp = util.post(settings.getAddCarUrl(),"admin", "admin",payload)
+
+        print("the response of the POST to add car=")
+        print(resp)
+
+    print("getting the cars in store ")
+    resp = getCars(0)
+
+    #TBD: Detailed validation
+
+
+#
+#Creates the specified number of persons based on People yang model
+# using main RPC
+# <note>
+#   To enable RPC a non-user input person entry is created with personId=user0
+# </note>
+#
+def addPerson(numberOfPersons):
+    #FOR RPC TO WORK PROPERLY THE FIRST ENTRY SHOULD BE VIA RESTCONF
+    if(numberOfPersons==0):
+        strId =str(numberOfPersons)
+        payload = settings.add_person_payload_template.substitute(personId="user"+strId,gender="unknown",age=0,
+                                                                  address=strId + "Way, Some Country, Some Zip  "+strId,
+                                                                  contactNo= "some number"+strId)
+        # Send the POST request using RESTCONF
+        resp = util.nonprintpost(settings.getAddPersonUrl(),"admin", "admin",payload)
+        return
+
+    genderToggle = "Male"
+    for x in range(1, numberOfPersons+1):
+        if(genderToggle == "Male"):
+            genderToggle = "Female"
+        else:
+            genderToggle = "Male"
+
+        strId = str(x)
+
+        payload = settings.add_person_rpc_payload_template.substitute(personId="user"+strId,gender=genderToggle,age=(20+x%100),
+                                                                      address=strId + "Way, Some Country, Some Zip  "+str(x%1000),
+                                                                      contactNo= "some number"+strId)
+        # Send the POST request using RPC
+        resp = util.post(settings.getAddPersonRpcUrl(),"admin", "admin",payload)
+
+        print("payload formed after template substitution=")
+        print(payload)
+        print("the response of the POST to add person=")
+        print(resp)
+
+    print("getting the persons for verification")
+    resp=getPersons(0)
+
+    #TBD: Detailed validation
+
+#This method is not exposed via commands as only getCarPersons is of interest
+#addCarPerson entry happens when buyCar is called
+# <note>
+#   To enable RPC a non-user input car-person entry is created with personId=user0
+# </note>
+#
+def addCarPerson(numberOfCarPersons):
+
+    #FOR RPC TO WORK PROPERLY THE FIRST ENTRY SHOULD BE VIA RESTCONF
+    if(numberOfCarPersons==0):
+        payload = settings.add_car_person_template.substitute(Id=str(numberOfCarPersons),personId="user"+str(numberOfCarPersons))
+        # Send the POST request REST CONF
+        resp = util.nonprintpost(settings.getAddCarPersonUrl(),"admin", "admin",payload)
+
+        return
+
+    for x in range(1, numberOfCarPersons+1):
+        strId = str(x)
+
+        payload = settings.add_car_person_template.substitute(Id=strId,personId="user"+strId)
+
+        # Send the POST request REST CONF
+        resp = util.post(settings.getAddCarPersonUrl(),"admin", "admin",payload)
+
+        print("payload formed after template substitution=")
+        print(payload)
+
+        print("the response of the POST to add car_person=")
+        print(resp)
+
+    print("getting the car_persons for verification")
+    resp=getCarPersons(0)
+
+    #TBD detailed validation
+
+#
+# Invokes an RPC REST call that does a car purchase by a person id
+# <note>
+# It is expected that the Car and Person entries are already created
+# before invoking this method
+# </note>
+#
+
+def buyCar(numberOfCarBuyers):
+    for x in range(1, numberOfCarBuyers+1):
+        strId = str(x)
+
+        payload = settings.buy_car_rpc_template.substitute(personId="user"+strId,carId=strId)
+
+        # Send the POST request using RPC
+        resp = util.post(settings.getBuyCarRpcUrl(),"admin", "admin",payload)
+
+        print("payload formed after template substitution=")
+        print(payload)
+
+        print("the response of the POST to buycar=")
+        print(resp)
+
+    print("getting the car_persons for verification")
+    resp=getCarPersons(0)
+
+
+#
+# Uses the GET on car:cars resource
+# to get all cars in the store using RESTCONF
+#
+#
+def getCars(ignore):
+    resp = util.get(settings.getCarsUrl(),"admin", "admin")
+    print (resp)
+    return resp
+
+#
+# Uses the GET on people:people resource
+# to get all persons in the store using RESTCONF
+#<note>
+#This also returns the dummy entry created for routed RPC
+# with personId being user0
+#</note>
+#
+#
+def getPersons(ignore):
+    resp = util.get(settings.getPersonsUrl(),"admin","admin")
+    print (resp)
+    return resp
+
+#
+# Uses the GET on car-people:car-people resource
+# to get all car-persons entry in the store using RESTCONF
+#<note>
+#This also returns the dummy entry created for routed RPC
+# with personId being user0
+#</note>
+#
+def getCarPersonMappings(ignore):
+    resp = util.get(settings.getCarPersonUrl(),"admin","admin")
+    print (resp)
+    return resp
+
+#
+#delete all cars in the store using RESTCONF
+#
+#
+def deleteAllCars(ignore):
+    util.delete(settings.getCarsUrl(),"admin","admin")
+    resp = getCars(ignore)
+    print("Cars in store after deletion:"+ str(resp))
+
+#
+#delete all persons in the store using RESTCONF
+#
+#
+def deleteAllPersons(ignore):
+    util.delete(settings.getPersonsUrl(),"admin","admin")
+    resp = getPersons(ignore)
+    print("Persons in store after deletion:"+ str(resp))
+
+#
+# Usage message shown to user
+#
+
+def options():
+
+    command = 'ac=Add Car\n\t\tap=Add Person \n\t\tbc=Buy Car\n\t\tgc=Get Cars\n\t\tgp=Get Persons\n\t\t' \
+              'gcp=Get Car-Person Mappings\n\t\tdc=Delete All Cars\n\t\tdp=Delete All Persons)'
+
+    param =  '\n\t<param> is\n\t\t' \
+             'number of cars to be added if <command>=ac\n\t\t' \
+             'number of persons to be added if <command>=ap\n\t\t' \
+             'number of car buyers if <command>=bc\n\t\t'\
+             'pass 0 if <command>=gc or gp or gcp or dc or dp'\
+
+
+    usageString = 'usage: populate <ipaddress> <command> <param>\nwhere\n\t<ipaddress> = ODL server ip address' \
+                  '\n\t<command> = any of the following commands \n\t\t'
+
+    usageString = usageString + command +param
+
+    print (usageString)
+
+
+#
+# entry point for command executions
+#
+
+def main():
+    if len(sys.argv) < 4:
+        options()
+        quit(0)
+    settings.hostname = sys.argv[1]
+    settings.port = '8080'
+    call = dict(ac=addCar, ap=addPerson, bc=buyCar,
+                gc=getCars, gp=getPersons, gcp=getCarPersonMappings,dc=deleteAllCars,dp=deleteAllPersons)
+
+    #FOR RPC TO WORK PROPERLY THE FIRST PERSON SHOULD BE ADDED VIA RESTCONF
+    addPerson(0)
+
+    #FOR RPC TO WORK PROPERLY THE FIRST PERSON SHOULD BE ADDED VIA RESTCONF
+    addCarPerson(0)
+
+
+    call[sys.argv[2]](int(sys.argv[3]))
+
+#
+# main invoked
+main()
diff --git a/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/settings.py b/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/settings.py
new file mode 100644 (file)
index 0000000..704b671
--- /dev/null
@@ -0,0 +1,110 @@
+__author__ = "Basheeruddin Ahmed"
+__copyright__ = "Copyright(c) 2014, Cisco Systems, Inc."
+__license__ = "New-style BSD"
+__email__ = "syedbahm@cisco.com"
+
+from string import Template
+
+# helps in taking the hostname entered by the user
+global hostname
+global port
+
+def getServer():
+    return hostname+":"+port
+
+#Cars resource URL for GET
+def getCarsUrl():
+
+    return "http://"+getServer()+"/restconf/config/car:cars"
+
+#People resouce URL for GET
+def getPersonsUrl():
+
+    return "http://"+getServer()+"/restconf/config/people:people"
+
+#GET cars persons mapping resource URL
+def getCarPersonUrl():
+
+    return "http://"+getServer()+"/restconf/config/car-people:car-people"
+
+#POST or DELETE URL
+def getAddCarUrl():
+    return "http://"+getServer()+"/restconf/config"
+#POST or DELETE URL
+def getAddPersonUrl():
+    return "http://"+getServer()+"/restconf/config"
+
+#POST URL -using rpc
+def getAddPersonRpcUrl():
+    return "http://"+getServer()+"/restconf/operations/people:add-person"
+
+#POST URL for car person mapping
+def getAddCarPersonUrl():
+   return "http://"+getServer()+"/restconf/config"
+#POST URL for buy car rpc
+def getBuyCarRpcUrl():
+    return "http://"+getServer()+"/restconf/operations/car-purchase:buy-car"
+
+
+# Template for Car resource payload
+add_car_payload_template = Template( '{\"car:cars\":{'
+    '\"car-entry\": ['
+        '{'
+            '\"id\": \"$id\",'
+            '\"category\": \"$category\",'
+            '\"model\": \"$model\",'
+            '\"manufacturer\": \"$manufacturer\",'
+            '\"year\": \"$year\"'
+        '}'
+    ']'
+'}'
+'}')
+
+# Template for Person resource payload
+add_person_payload_template =  Template( '{\"people:people":{'
+    '\"person\": ['
+        '{'
+            '\"id\": \"$personId\",'
+            '\"gender\": \"$gender\",'
+            '\"age\": \"$age\",'
+            '\"address\": \"$address\",'
+            '\"contactNo\":\"$contactNo\"'
+        '}'
+            ']'
+     '}}')
+
+# Template for Car Person mapping  payload
+add_car_person_template = Template('{\"car-people:car-people\":{'
+    '\"car-person\": ['
+        '{'
+           ' \"car-id\": \"$Id\",'
+            '\"person-id\": \"$personId\"'
+        '}'
+    ']'
+'}'
+'}')
+
+# Template for adding person using RPC
+add_person_rpc_payload_template = Template ( '{'
+                                                 '\"input\":'
+                                                     '{'
+                                                         '\"people:id\" : \"$personId\",'
+                                                         '\"people:gender\":\"$gender\",'
+                                                         '\"people:address\" : \"$address\",'
+                                                         '\"people:contactNo\":\"$contactNo\",'
+                                                         '\"people:age\":\"$age\"'
+                                                     '}'
+                                             '}')
+
+# Template for buing car rpc
+buy_car_rpc_template = Template ( '{'
+    '\"input\" :'
+        '{'
+            '\"car-purchase:person\" : \"/people:people/people:person[people:id=\'$personId\']\",'
+            '\"car-purchase:person-id\" : \"$personId\",'
+            '\"car-purchase:car-id\" : \"$carId\"'
+        '}'
+'}')
+
+
+
diff --git a/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/util.py b/test/tools/odl-mdsal-clustering-tests/clustering-functional-test/util.py
new file mode 100644 (file)
index 0000000..9bc86b6
--- /dev/null
@@ -0,0 +1,67 @@
+__author__ = "Basheeruddin Ahmed"
+__copyright__ = "Copyright(c) 2014, Cisco Systems, Inc."
+__license__ = "New-style BSD"
+__email__ = "syedbahm@cisco.com"
+
+
+import urllib
+from urllib import request
+import json
+import requests
+import socket
+
+
+#
+#Helps in making GET REST calls
+#
+
+def get(url, userId, password):
+
+    headers = {}
+    headers['Accept']= 'application/xml'
+
+    # Send the GET request
+    req = urllib.request.Request(url, None, headers)
+
+    # Read the response
+    return urllib.request.urlopen(req).read()
+
+#
+#Helps in making POST REST calls without outputs
+#
+def nonprintpost(url, userId, password,data):
+
+    headers = {}
+    headers['Content-Type'] = 'application/json'
+    #headers['Accept']= 'application/xml'
+
+    resp = requests.post(url,data.encode(),headers=headers)
+
+
+    return resp
+
+#
+#Helps in making POST REST calls
+#
+def post(url, userId, password,data):
+    print("post request with url "+url)
+    print("post request with data "+data)
+    headers = {}
+    headers['Content-Type'] = 'application/json'
+    #headers['Accept']= 'application/xml'
+
+    resp = requests.post(url,data.encode(),headers=headers)
+
+    #print (resp.raise_for_status())
+    print (resp.headers)
+
+    return resp
+
+#
+#Helps in making DELET REST calls
+#
+def delete(url,userId,password):
+    print("delete all resources belonging to url"+url)
+    resp=requests.delete(url)
+
+