delphimvcframework/unittests/general/TestServer/TestServerControllerJSONRPCU.pas

241 lines
6.1 KiB
ObjectPascal
Raw Normal View History

unit TestServerControllerJSONRPCU;
interface
uses
MVCFramework, MVCFramework.Commons, MVCFramework.JSONRPC, JsonDataObjects;
type
TTestJSONRPCController = class(TMVCJSONRPCController)
public
2020-05-02 16:39:32 +02:00
function Subtract(Value1, Value2: Int64): Integer;
procedure MyNotify;
2020-08-06 17:40:56 +02:00
function MyRequest: Boolean;
2020-05-02 16:39:32 +02:00
function Add(Value1, Value2, Value3: Int64): TJsonObject;
function GetListFromTo(aFrom, aTo: Int64): TJsonArray;
function MultiplyString(aString: string; Multiplier: Int64): string;
end;
TTestJSONRPCClass = class(TObject)
public
2020-05-02 16:39:32 +02:00
function Subtract(Value1, Value2: Int64): Integer;
procedure MyNotify;
2020-05-02 16:39:32 +02:00
function Add(Value1, Value2, Value3: Int64): TJsonObject;
function GetListFromTo(aFrom, aTo: Int64): TJsonArray;
function MultiplyString(aString: string; Multiplier: Int64): string;
function AddTimeToDateTime(aDateTime: TDateTime; aTime: TTime): TDateTime;
end;
2020-08-05 09:50:06 +02:00
TTestJSONRPCHookClass = class(TObject)
private
fJSONReq: TJsonObject;
fHistory: string;
fJSONRPCKind: TJSONRPCRequestType;
public
procedure OnBeforeRoutingHook(const Context: TWebContext; const JSON: TJsonObject);
procedure OnBeforeCallHook(const Context: TWebContext; const JSON: TJsonObject);
procedure OnAfterCallHook(const Context: TWebContext; const JSON: TJsonObject);
function error_OnBeforeRoutingHook: Boolean;
function error_OnBeforeCallHook: Boolean;
function error_OnAfterCallHook: Boolean;
procedure Notif1;
2020-08-06 17:40:56 +02:00
procedure NotifWithError;
2020-08-05 09:50:06 +02:00
function Request1: string;
function RequestWithError: string;
end;
implementation
uses
System.SysUtils, MVCFramework.Logger, System.StrUtils;
{ TTestJSONRPCController }
2020-05-02 16:39:32 +02:00
function TTestJSONRPCController.Add(Value1, Value2, Value3: Int64): TJsonObject;
begin
Result := TJsonObject.Create;
2020-05-02 16:39:32 +02:00
Result.I['res'] := Value1 + Value2 + Value3;
end;
function TTestJSONRPCController.GetListFromTo(aFrom, aTo: Int64): TJsonArray;
var
2019-08-02 12:32:23 +02:00
I: Cardinal;
begin
Result := TJsonArray.Create;
for I := aFrom to aTo do
Result.Add(I);
end;
function TTestJSONRPCController.MultiplyString(aString: string;
Multiplier: Int64): string;
var
I: Integer;
begin
Result := aString;
for I := 2 to Multiplier do
begin
Result := Result + aString;
end;
end;
procedure TTestJSONRPCController.MyNotify;
begin
// this is a notify with no parameters and no result code
Self.ClassName;
end;
2020-08-06 17:40:56 +02:00
function TTestJSONRPCController.MyRequest: Boolean;
begin
Result := True;
end;
2020-05-02 16:39:32 +02:00
function TTestJSONRPCController.Subtract(Value1, Value2: Int64): Integer;
begin
2020-05-02 16:39:32 +02:00
Result := Value1 - Value2;
end;
{ TTestJSONRPCClass }
2020-05-02 16:39:32 +02:00
function TTestJSONRPCClass.Add(Value1, Value2, Value3: Int64): TJsonObject;
begin
Result := TJsonObject.Create;
2020-05-02 16:39:32 +02:00
Result.I['res'] := Value1 + Value2 + Value3;
end;
function TTestJSONRPCClass.AddTimeToDateTime(aDateTime: TDateTime;
aTime: TTime): TDateTime;
begin
Result := aDateTime + aTime;
end;
function TTestJSONRPCClass.GetListFromTo(aFrom, aTo: Int64): TJsonArray;
var
2019-08-02 12:32:23 +02:00
I: Cardinal;
begin
Result := TJsonArray.Create;
for I := aFrom to aTo do
Result.Add(I);
end;
function TTestJSONRPCClass.MultiplyString(aString: string;
Multiplier: Int64): string;
var
I: Integer;
begin
Result := aString;
for I := 2 to Multiplier do
begin
Result := Result + aString;
end;
end;
procedure TTestJSONRPCClass.MyNotify;
begin
// this is a notify with no parameters and no result code
Self.ClassName;
end;
2020-05-02 16:39:32 +02:00
function TTestJSONRPCClass.Subtract(Value1, Value2: Int64): Integer;
begin
2020-05-02 16:39:32 +02:00
Result := Value1 - Value2;
end;
2020-08-05 09:50:06 +02:00
{ TTestJSONRPCHookClass }
function TTestJSONRPCHookClass.error_OnAfterCallHook: Boolean;
begin
// do nothing
2020-08-06 17:40:56 +02:00
Result := True;
2020-08-05 09:50:06 +02:00
end;
function TTestJSONRPCHookClass.error_OnBeforeCallHook: Boolean;
begin
// do nothing
2020-08-06 17:40:56 +02:00
Result := True;
2020-08-05 09:50:06 +02:00
end;
function TTestJSONRPCHookClass.error_OnBeforeRoutingHook: Boolean;
begin
// do nothing
2020-08-06 17:40:56 +02:00
Result := True;
2020-08-05 09:50:06 +02:00
end;
procedure TTestJSONRPCHookClass.Notif1;
begin
// do nothing
end;
2020-08-06 17:40:56 +02:00
procedure TTestJSONRPCHookClass.NotifWithError;
begin
raise Exception.Create('BOOM NOTIF');
end;
2020-08-05 09:50:06 +02:00
procedure TTestJSONRPCHookClass.OnAfterCallHook(const Context: TWebContext; const JSON: TJsonObject);
begin
2020-08-06 00:28:54 +02:00
try
if SameText(fJSONReq.S['method'], 'error_OnAfterCallHook') then
raise Exception.Create('error_OnAfterCallHook');
fHistory := fHistory + '|OnAfterCallHook';
// do nothing
if fJSONRPCKind = TJSONRPCRequestType.Request then
begin
Assert(Assigned(JSON));
LogD('TTestJSONRPCHookClass.OnAfterCallHook: ' + JSON.ToJSON());
end
else
begin
2020-08-06 17:40:56 +02:00
if Assigned(JSON) then
Assert(JSON.Contains('error'), 'ERROR! Notification has a response but is not an error');
2020-08-06 00:28:54 +02:00
LogD('TTestJSONRPCHookClass.OnAfterCallHook: Param is nil');
end;
2020-08-06 17:40:56 +02:00
if Assigned(JSON) then
if JSON.Contains('error') then
fHistory := fHistory + '|error';
2020-08-06 00:28:54 +02:00
Context.Response.CustomHeaders.Values['x-history'] := fHistory;
finally
FreeAndNil(fJSONReq);
2020-08-05 09:50:06 +02:00
end;
end;
procedure TTestJSONRPCHookClass.OnBeforeCallHook(const Context: TWebContext; const JSON: TJsonObject);
begin
if SameText(JSON.S['method'], 'error_OnBeforeCallHook') then
raise Exception.Create('error_OnBeforeCallHook');
fHistory := fHistory + '|OnBeforeCallHook';
Assert(Assigned(JSON), 'JSON not assigned in OnBeforeCallHook');
LogD('TTestJSONRPCHookClass.OnBeforeCallHook: ' + JSON.ToJSON());
end;
procedure TTestJSONRPCHookClass.OnBeforeRoutingHook(const Context: TWebContext; const JSON: TJsonObject);
begin
fJSONReq := JSON.Clone;
if SameText(JSON.S['method'], 'error_OnBeforeRoutingHook') then
raise Exception.Create('error_OnBeforeRoutingHook');
fHistory := 'OnBeforeRoutingHook';
// do nothing
Assert(Assigned(JSON), 'JSON not assigned in OnBeforeRoutingHook');
LogD('TTestJSONRPCHookClass.OnBeforeRoutingHook: ' + JSON.ToJSON());
if JSON.Contains('id') then
fJSONRPCKind := TJSONRPCRequestType.Request
else
fJSONRPCKind := TJSONRPCRequestType.Notification;
end;
function TTestJSONRPCHookClass.Request1: string;
begin
Result := 'empty';
end;
function TTestJSONRPCHookClass.RequestWithError: string;
begin
2020-08-06 17:40:56 +02:00
raise Exception.Create('BOOM REQUEST');
2020-08-05 09:50:06 +02:00
end;
end.