unit RESTAdapterTestsU; interface uses MVCFramework.RESTAdapter, TestFramework, BusinessObjectsU, Generics.Collections, {$IF CompilerVersion < 27} Data.DBXJSON, Data.SqlExpr, DBXCommon, {$ELSE} System.JSON, {$ENDIF} ObjectsMappers, MVCFramework.RESTClient, MVCFramework; type [Headers('User-Agent', 'RESTAdapter-Test')] ITESTService = interface(IInvokable) ['{58B9FA23-92F4-4B8E-814B-05232F32A41F}'] [RESTResource(HttpGet, '/people')] [MapperListOf(TPerson)] function GetPeople: TObjectList; [RESTResource(HttpGet, '/people')] [MapperListOf(TPerson)] [Mapping(TPeople)] procedure GetPeopleAsynch(AAsynchRequest: IAsynchRequest); [RESTResource(HttpGet, '/people/1')] function GetTonyStark: TPerson; [RESTResource(HttpGet, '/people/1')] [Mapping(TPerson)] procedure GetTonyStarkAsynch(AAsynchRequest: IAsynchRequest); [RESTResource(HttpGet, '/people/{personid}')] function GetPersonByID([Param('personid')] APersonID: integer): TPerson; [RESTResource(httpPOST, '/people')] function SendPerson([Body] ABody: TPerson): TPerson; [RESTResource(HttpGet, '/people')] function GetPersonInJSONArray: TJSONArray; [Headers('Accept', 'application/json')] [Headers('ContentType', 'application/json')] [RESTResource(HttpGet, '/testconsumejson')] function HeadersApplicationJSON: TJSONValue; [Headers('Accept', 'text/plain')] [Headers('ContentType', 'text/plain')] [RESTResource(HttpGet, '/testconsumes')] function HeadersTextPlain: string; [Headers('Accept', 'text/plain')] [Headers('ContentType', 'text/plain')] [RESTResource(HttpGet, '/testconsumejson')] function ApplicationJSONWithTextPlainHeader: IRESTResponse; end; TTestRESTAdapter = class(TTestCase) private RESTAdapter: TRESTAdapter; TESTService: ITESTService; protected procedure SetUp; override; published procedure TestGetPeople; procedure TestGetPeopleAsynch; procedure TestGetTonyStark; procedure TestGetTonyStarkAsynch; procedure TestPostPerson; procedure TestGetPersonByID; procedure TestHeadersApplicationJSON; procedure TestHeadersTextPlain; procedure TestApplicationJSONWithHeaderTextPlain; procedure TestGetPersonInJSONArray; end; implementation uses System.SysUtils, System.Rtti, System.SyncObjs; { TTestRESTAdapter } procedure TTestRESTAdapter.SetUp; begin inherited; RESTAdapter := TRESTAdapter.Create; TESTService := RESTAdapter.Build('localhost', 9999); end; procedure TTestRESTAdapter.TestGetPersonByID; var Person: TPerson; begin; Person := TESTService.GetPersonByID(1); try CheckEquals('Tony', Person.FirstName); CheckEquals('Stark', Person.LastName); CheckTrue(Person.Married); finally Person.Free; end; end; procedure TTestRESTAdapter.TestGetPersonInJSONArray; var JSONArray: TJSONArray; begin JSONArray := TESTService.GetPersonInJSONArray; try CheckTrue(JSONArray.ToString.Contains('Tony')); CheckTrue(JSONArray.ToString.Contains('Stark')); CheckTrue(JSONArray.ToString.Contains('Bruce')); CheckTrue(JSONArray.ToString.Contains('Banner')); finally JSONArray.Free; end; end; procedure TTestRESTAdapter.TestGetTonyStark; var Person: TPerson; begin; Person := TESTService.GetTonyStark; try CheckEquals('Tony', Person.FirstName); CheckEquals('Stark', Person.LastName); CheckTrue(Person.Married); finally Person.Free; end; end; procedure TTestRESTAdapter.TestGetTonyStarkAsynch; var AsynchRequest: IAsynchRequest; Person: TPerson; LEvt: TEvent; begin LEvt := TEvent.Create; try AsynchRequest := TAsynchRequest.Create( procedure(AValue: TValue) begin Person := AValue.AsType; LEvt.SetEvent; end); TESTService.GetTonyStarkAsynch(AsynchRequest); // attend for max 5 seconds CheckTrue(TWaitResult.wrSignaled = LEvt.WaitFor(5000), 'Timeout request'); CheckNotNull(Person); try CheckEquals('Tony', Person.FirstName); CheckEquals('Stark', Person.LastName); CheckTrue(Person.Married); finally Person.Free; end; finally LEvt.Free; end; end; procedure TTestRESTAdapter.TestHeadersApplicationJSON; var Res: TJSONObject; begin Res := TESTService.HeadersApplicationJSON as TJSONObject; try CheckEquals('Hello World', Res.GetValue('key').Value); finally Res.Free; end; end; procedure TTestRESTAdapter.TestHeadersTextPlain; var Res: string; begin Res := TESTService.HeadersTextPlain; CheckEquals('Hello World', Res); end; procedure TTestRESTAdapter.TestPostPerson; var Person: TPerson; RetPerson: TPerson; begin Person := TPerson.GetNew('Peter', 'Parker', 0, false); RetPerson := TESTService.SendPerson(Person); try CheckEquals('Peter', RetPerson.FirstName); CheckEquals('Parker', RetPerson.LastName); CheckFalse(RetPerson.Married); finally RetPerson.Free; end; end; procedure TTestRESTAdapter.TestApplicationJSONWithHeaderTextPlain; var Resp: IRESTResponse; begin // expected 404 because is not consumed text/plain Resp := TESTService.ApplicationJSONWithTextPlainHeader; CheckEquals(404, Resp.ResponseCode); end; procedure TTestRESTAdapter.TestGetPeople; var ListPerson: TObjectList; begin ListPerson := TESTService.GetPeople; try CheckTrue(ListPerson.Count > 0); CheckEquals('Tony', ListPerson[0].FirstName); CheckEquals('Stark', ListPerson[0].LastName); finally ListPerson.Free; end; end; procedure TTestRESTAdapter.TestGetPeopleAsynch; var AsynchRequest: IAsynchRequest; People: TPeople; LEvt: TEvent; begin LEvt := TEvent.Create; try AsynchRequest := TAsynchRequest.Create( procedure(AValue: TValue) begin People := AValue.AsType; LEvt.SetEvent; end); TESTService.GetPeopleAsynch(AsynchRequest); // attend for max 5 seconds CheckTrue(TWaitResult.wrSignaled = LEvt.WaitFor(5000), 'Timeout request'); CheckNotNull(People); try CheckTrue(People.Count > 0); CheckEquals('Tony', People[0].FirstName); CheckEquals('Stark', People[0].LastName); finally People.Free; end; finally LEvt.Free; end; end; initialization RegisterTest(TTestRESTAdapter.suite); finalization end.