java - Automate Testing of OData webservice with Bearer authetication and 17 input Paramenters -
i have odata web service pulls data database.
here steps,
- following parameters passed retrieve token
grant_type=password&username=biobookuser&password=ddsf8jcx&client_id=iefqc44
once token received, have pass token along url an
'bearer +token received'
normally query
/proteinchemistry/adccellbioinvitro?$filter=(labdefinition_id eq 80) , ((date(requestdate) ge 2016-06-14) , (date(requestdate) le 2016-06-23)) , (contains(containervolume,'2.00 ml') or contains(containervolume,'0.10 ml')) , (contains(containerconcentration,'1.00 mm') or contains(containerconcentration,'1.00 mm')) , (materialdef eq 'linker payload' or materialdef eq 'payload') , (assaytype eq 'tritum assay, atp assay' or assaytype eq 'atp assay') , (classofpayload eq 'pbd') , (potencyrange eq 'pico molar' or potencyrange eq 'nano molar')
it has 17 input parameters..
no question is,
i need automatic testing tool can test permutation , combinations passing different input values , ensure web service capable of send data without throwing error
Comments
Post a Comment