Project

General

Profile

Feature #3633

Updated by Ram Kordale 5 months ago

name: crud-ds 
 arguments: 
 "kind": "<kind>", 
 "op-type": "<op-type>", 
 "<kind>-key": "<kind>-<key>": "<value>", 
 "<kind>-<name1>": "<value1>", 
 "<kind>-<name2>": "<value2>", 
 ... 

 If <op-type> is cu, update datastore kind <kind> entry with key <key> if it exists; else create. 
 If <op-type> is d, delete datastore kind <kind> entry with key <key> if it exists. 
 If <op-type> is r or cu or d, return entry from datastore kind <kind> entry with key <key> if it exists; else say not found. 


 For this ticket, test should use: 
 -profile for <kind> 
 -email-id for <key> 
 -other for <name> 


 Example: 
 { 
   "kind": "profile", 
   "profile-key": "profile-email-id": "[email protected]", 
   "profile-other": "pirate#$%usd#$%3.99" 
 }

Back