Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | prepare regression tests about JOINed external databases |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a758113d270fa6c710d6a02e3cf24cc8 |
User & Date: | abouchez 2013-10-31 15:58:02 |
2013-11-02
| ||
08:34 | added Bind(TVarData) overloaded method to ISQLDBStatement/TSQLDBStatement check-in: c47ea6159e user: User tags: trunk | |
2013-10-31
| ||
15:58 | prepare regression tests about JOINed external databases check-in: a758113d27 user: abouchez tags: trunk | |
08:31 | let TServiceRunningContext.Request be a reference to the TSQLRestServerURIContext class (pointer not neded since it is not a record any more) check-in: 3a7d079385 user: abouchez tags: trunk | |
Changes to SQLite3/mORMotDB.pas.
292 293 294 295 296 297 298 299 300 301 302 303 304 305 ... 322 323 324 325 326 327 328 329 330 331 332 333 334 335 .... 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 |
end; {{ A Virtual Table cursor for reading a TSQLDBStatement content - this is the cursor class associated to TSQLVirtualTableExternal } TSQLVirtualTableCursorExternal = class(TSQLVirtualTableCursor) protected fStatement: ISQLDBStatement; fHasData: boolean; public /// called to begin a search in the virtual table, creating a SQL query // - the TSQLVirtualTablePrepared parameters were set by // TSQLVirtualTable.Prepare and will contain both WHERE and ORDER BY statements // (retrieved by x_BestIndex from a TSQLite3IndexInfo structure) // - Prepared will contain all prepared constraints and the corresponding ................................................................................ /// called after Search() to check if there is data to be retrieved // - should return false if reached the end of matching data function HasData: boolean; override; /// called to go to the next row of matching data // - should return false on low-level database error (but true in case of a // valid call, even if HasData will return false, i.e. no data match) function Next: boolean; override; end; {{ A SynDB-based virtual table for accessing any external database - for ORM access, you should use VirtualTableExternalRegister method to associated this virtual table module to any TSQLRecord class - transactions are handled by this module, according to the external database } TSQLVirtualTableExternal = class(TSQLVirtualTable) ................................................................................ const SQL_OPER_WITH_PARAM: array[soEqualTo..soGreaterThanOrEqualTo] of RawUTF8 = ( '=?','<>?','<?','<=?','>?','>=?'); function TSQLVirtualTableCursorExternal.Search( const Prepared: TSQLVirtualTablePrepared): boolean; var i: integer; SQL: RawUTF8; Params: TVarDataDynArray; begin result := false; if (Self=nil) or (fStatement<>nil) or (Table=nil) or (Table.Static=nil) then exit; with Table.Static as TSQLRestServerStaticExternal do begin // compute the SQL query corresponding to this prepared request SQL := fSelectAllDirectSQL; if Prepared.WhereCount<>0 then begin SetLength(Params,Prepared.WhereCount); for i := 0 to Prepared.WhereCount-1 do with Prepared.Where[i] do begin if Operation>high(SQL_OPER_WITH_PARAM) then exit; // invalid specified operator -> abort search if i=0 then SQL := SQL+' where ' else SQL := SQL+' and '; if StoredClassRecordProps.AppendFieldName(Column,SQL,true) then exit; // invalid column index -> abort search SQL := SQL+SQL_OPER_WITH_PARAM[Operation]; move(Value,Params[i],SizeOf(Value)); // fast copy bound parameter value end; end; // e.g. 'select FirstName,..,ID from PeopleExternal where FirstName=? and LastName=?' for i := 0 to Prepared.OrderByCount-1 do with Prepared.OrderBy[i] do begin if i=0 then SQL := SQL+' order by ' else SQL := SQL+', '; if StoredClassRecordProps.AppendFieldName(Column,SQL,true) then exit; // invalid column index -> abort search if Desc then SQL := SQL+' desc'; end; // execute the SQL statement try fStatement := fProperties.NewThreadSafeStatementPrepared(SQL,true); if fStatement<>nil then begin fStatement.Bind(Params); fStatement.ExecutePrepared; result := Next; // on execution success, go to the first row end; except on Exception do |
> > > < | > | | | | | | | | | | | | | | | | | | | | | | | | | | | | > | |
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 ... 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 .... 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 |
end; {{ A Virtual Table cursor for reading a TSQLDBStatement content - this is the cursor class associated to TSQLVirtualTableExternal } TSQLVirtualTableCursorExternal = class(TSQLVirtualTableCursor) protected fStatement: ISQLDBStatement; fSQL: RawUTF8; fHasData: boolean; public /// called to begin a search in the virtual table, creating a SQL query // - the TSQLVirtualTablePrepared parameters were set by // TSQLVirtualTable.Prepare and will contain both WHERE and ORDER BY statements // (retrieved by x_BestIndex from a TSQLite3IndexInfo structure) // - Prepared will contain all prepared constraints and the corresponding ................................................................................ /// called after Search() to check if there is data to be retrieved // - should return false if reached the end of matching data function HasData: boolean; override; /// called to go to the next row of matching data // - should return false on low-level database error (but true in case of a // valid call, even if HasData will return false, i.e. no data match) function Next: boolean; override; /// read-only access to the SELECT statement property SQL: RawUTF8 read fSQL; end; {{ A SynDB-based virtual table for accessing any external database - for ORM access, you should use VirtualTableExternalRegister method to associated this virtual table module to any TSQLRecord class - transactions are handled by this module, according to the external database } TSQLVirtualTableExternal = class(TSQLVirtualTable) ................................................................................ const SQL_OPER_WITH_PARAM: array[soEqualTo..soGreaterThanOrEqualTo] of RawUTF8 = ( '=?','<>?','<?','<=?','>?','>=?'); function TSQLVirtualTableCursorExternal.Search( const Prepared: TSQLVirtualTablePrepared): boolean; var i: integer; Params: TVarDataDynArray; begin result := false; if (Self=nil) or (Table=nil) or (Table.Static=nil) then exit; with Table.Static as TSQLRestServerStaticExternal do begin if fSQL='' then begin // compute the SQL query corresponding to this prepared request fSQL := fSelectAllDirectSQL; if Prepared.WhereCount<>0 then begin SetLength(Params,Prepared.WhereCount); for i := 0 to Prepared.WhereCount-1 do with Prepared.Where[i] do begin if Operation>high(SQL_OPER_WITH_PARAM) then exit; // invalid specified operator -> abort search if i=0 then fSQL := fSQL+' where ' else fSQL := fSQL+' and '; if StoredClassRecordProps.AppendFieldName(Column,fSQL,true) then exit; // invalid column index -> abort search fSQL := fSQL+SQL_OPER_WITH_PARAM[Operation]; move(Value,Params[i],SizeOf(Value)); // fast copy bound parameter value end; end; // e.g. 'select FirstName,..,ID from PeopleExternal where FirstName=? and LastName=?' for i := 0 to Prepared.OrderByCount-1 do with Prepared.OrderBy[i] do begin if i=0 then fSQL := fSQL+' order by ' else fSQL := fSQL+', '; if StoredClassRecordProps.AppendFieldName(Column,fSQL,true) then exit; // invalid column index -> abort search if Desc then fSQL := fSQL+' desc'; end; end; // execute the SQL statement try fStatement := fProperties.NewThreadSafeStatementPrepared(fSQL,true); if fStatement<>nil then begin fStatement.Bind(Params); fStatement.ExecutePrepared; result := Next; // on execution success, go to the first row end; except on Exception do |
Changes to SynSelfTests.pas.
544 545 546 547 548 549 550 551 552 553 554 555 556 557 .... 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 .... 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 .... 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 .... 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 .... 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 .... 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 |
// test.db3 SQlite3 file available in the current directory, populated with // some TSQLRecordPeople rows // - note that SQL statement caching at SQLite3 engine level makes those test // 2 times faster: nice proof of performance improvement TTestExternalDatabase = class(TSynTestCase) protected fExternalModel: TSQLModel; procedure Test(StaticVirtualTableDirect: boolean); public /// release used instances (e.g. server) and memory procedure CleanUp; override; published /// initialize needed RESTful client (and server) instances // - i.e. a RESTful direct access to an external DB ................................................................................ fName: RawUTF8; fPeople: TSQLRecordPeopleExt; published property Name: RawUTF8 index 30 read fName write fName; property People: TSQLRecordPeopleExt read fPeople write fPeople; end; // class hooks to force DMBS property for TTestExternalDatabase.AutoAdaptSQL TSQLDBConnectionPropertiesHook = class(TSQLDBConnectionProperties); TSQLRestServerStaticExternalHook = class(TSQLRestServerStaticExternal); procedure TTestExternalDatabase.ExternalRecords; var SQL: RawUTF8; begin if CheckFailed(fExternalModel=nil) then exit; // should be called once fExternalModel := TSQLModel.Create( [TSQLRecordPeople,TSQLRecordPeopleExt,TSQLRecordOnlyBlob,TSQLRecordTestJoin]); ReplaceParamsByNames(StringOfChar('?',200),SQL); Check(Hash32(SQL)=$AD27D1E0,'excludes :IF :OF'); end; procedure TTestExternalDatabase.AutoAdaptSQL; var SQLOrigin: RawUTF8; procedure Test(aDBMS: TSQLDBDefinition; AdaptShouldWork: boolean; const SQLExpected: RawUTF8=''); var Props: TSQLDBConnectionProperties; SQL: RawUTF8; begin Props := TSQLDBSQLite3ConnectionProperties.Create(':memory:','','',''); try Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordPeopleExt,Props,'SampleRecord')); with TSQLRestServerStaticExternalHook.Create(TSQLRecordPeopleExt,nil) do try SQL := SQLOrigin; TSQLDBConnectionPropertiesHook(Props).fDBMS := aDBMS; Check((Props.DBMS=aDBMS)or(aDBMS=dUnknown)); Check(AdaptSQLForEngineList(SQL)=AdaptShouldWork); Check((SQL=SQLExpected)or not AdaptShouldWork); finally Free; end; finally Props.Free; end; end; procedure Test2(const Orig,Expected: RawUTF8); var DBMS: TSQLDBDefinition; begin SQLOrigin := Orig; for DBMS := low(DBMS) to high(DBMS) do Test(DBMS,true,Expected); end; begin Test2('select rowid,firstname from PeopleExt where rowid=2', 'select id,firstname from SampleRecord where id=2'); Test2('select rowid,firstname from PeopleExt where rowid=2 order by RowID', 'select id,firstname from SampleRecord where id=2 order by ID'); Test2('select rowid,firstname from PeopleExt where firstname like :(''test''): order by lastname', 'select id,firstname from SampleRecord where firstname like :(''test''): order by lastname'); SQLOrigin := 'select rowid,firstname from PeopleExt where rowid=2 limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and id=2'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where id=2'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where id=2'); Test(dMySQL,true,'select id,firstname from SampleRecord where id=2 limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where id=2 limit 2'); SQLOrigin := 'select rowid,firstname from PeopleExt where rowid=2 order by LastName limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and id=2 order by LastName'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where id=2 order by LastName'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where id=2 order by LastName'); Test(dMySQL,true,'select id,firstname from SampleRecord where id=2 order by LastName limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where id=2 order by LastName limit 2'); SQLOrigin := 'select rowid,firstname from PeopleExt where firstname=:(''test''): limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and firstname=:(''test''):'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where firstname=:(''test''):'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where firstname=:(''test''):'); Test(dMySQL,true,'select id,firstname from SampleRecord where firstname=:(''test''): limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where firstname=:(''test''): limit 2'); SQLOrigin := 'select id,firstname from PeopleExt limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord'); Test(dJet,true,'select top 2 id,firstname from SampleRecord'); Test(dMySQL,true,'select id,firstname from SampleRecord limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord limit 2'); SQLOrigin := 'select id,firstname from PeopleExt order by firstname limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 order by firstname'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord order by firstname'); Test(dJet,true,'select top 2 id,firstname from SampleRecord order by firstname'); Test(dMySQL,true,'select id,firstname from SampleRecord order by firstname limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord order by firstname limit 2'); end; procedure TTestExternalDatabase.CleanUp; begin FreeAndNil(fExternalModel); inherited; end; procedure TTestExternalDatabase.ExternalViaREST; begin Test(true); end; procedure TTestExternalDatabase.ExternalViaVirtualTable; begin Test(false); end; procedure TTestExternalDatabase.CryptedDatabase; var R,R2: TSQLRecordPeople; Model: TSQLModel; aID: integer; Client, Client2: TSQLRestClientDB; Res: TIntegerDynArray; procedure CheckFilledRow; begin Check(R.FillRewind); while R.FillOne do if not CheckFailed(R2.FillOne) then begin Check(R.ID<>0); Check(R2.ID<>0); Check(R.FirstName=R2.FirstName); Check(R.LastName=R2.LastName); Check(R.YearOfBirth=R2.YearOfBirth); Check(R.YearOfDeath=R2.YearOfDeath); end; end; {$ifdef CPU32} const password = 'pass'; {$else} const password = ''; {$endif} begin DeleteFile('testpass.db3'); Model := TSQLModel.Create([TSQLRecordPeople]); try Client := TSQLRestClientDB.Create(Model,nil,'test.db3',TSQLRestServerDB,false,''); try R := TSQLRecordPeople.CreateAndFillPrepare(Client,''); try Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,password); try Client2.Server.DB.Synchronous := smOff; Client2.Server.DB.LockingMode := lmExclusive; Client2.Server.DB.WALMode := true; Client2.Server.CreateMissingTables; Check(Client2.TransactionBegin(TSQLRecordPeople)); Check(Client2.BatchStart(TSQLRecordPeople)); Check(Client2.BatchSend(Res)=200,'Void batch'); Client2.Commit; Check(Client2.TransactionBegin(TSQLRecordPeople)); Check(Client2.BatchStart(TSQLRecordPeople)); while R.FillOne do begin Check(R.ID<>0); Check(Client2.BatchAdd(R,true)>=0); end; Check(Client2.BatchSend(Res)=200,'INSERT batch'); Client2.Commit; finally Client2.Free; end; Check(IsSQLite3File('testpass.db3')); Check(IsSQLite3FileEncrypted('testpass.db3')=(password<>'')); // try to read then update the crypted file Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,password); try Client2.Server.DB.Synchronous := smOff; Client2.Server.DB.LockingMode := lmExclusive; R2 := TSQLRecordPeople.CreateAndFillPrepare(Client2,''); try CheckFilledRow; R2.FirstName := 'One'; aID := Client2.Add(R2,true); Check(aID<>0); R2.FillPrepare(Client2,''); CheckFilledRow; R2.ClearProperties; Check(R2.FirstName=''); Check(Client2.Retrieve(aID,R2)); Check(R2.FirstName='One'); finally R2.Free; end; finally Client2.Free; end; Check(IsSQLite3File('testpass.db3')); Check(IsSQLite3FileEncrypted('testpass.db3')=(password<>'')); {$ifdef CPU32} // now read it after uncypher ChangeSQLEncryptTablePassWord('testpass.db3',password,''); Check(IsSQLite3File('testpass.db3')); Check(not IsSQLite3FileEncrypted('testpass.db3')); Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,''); try R2 := TSQLRecordPeople.CreateAndFillPrepare(Client2,''); try CheckFilledRow; R2.ClearProperties; Check(R2.FirstName=''); Check(Client2.Retrieve(aID,R2)); Check(R2.FirstName='One'); finally R2.Free; end; finally Client2.Free; end; {$endif} finally R.Free; end; finally Client.Free; end; finally Model.Free; end; end; procedure TTestExternalDatabase.Test(StaticVirtualTableDirect: boolean); var RInt: TSQLRecordPeople; RExt: TSQLRecordPeopleExt; RBlob: TSQLRecordOnlyBlob; // Tables: TRawUTF8DynArray; aID, i, n: integer; ok: Boolean; aExternalClient: TSQLRestClientDB; fProperties: TSQLDBConnectionProperties; Start, Updated: TTimeLog; // will work with both TModTime and TCreateTime properties begin // run tests over an in-memory SQLite3 database (much faster than file) fProperties := TSQLDBSQLite3ConnectionProperties.Create(':memory:','','',''); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordPeopleExt,fProperties,'PeopleExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordOnlyBlob,fProperties,'OnlyBlobExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordTestJoin,fProperties,'TestJoinExternal')); aExternalClient := TSQLRestClientDB.Create(fExternalModel,nil,'test.db3',TSQLRestServerDB); try aExternalClient.Server.DB.Synchronous := smOff; aExternalClient.Server.DB.LockingMode := lmExclusive; { aExternalClient.Server.DB.GetTableNames(Tables); if FindRawUTF8(Tables,'PeopleExt',false)>=0 then aExternalClient.Server.EngineExecuteAll('drop table PeopleExt'); } Start := aExternalClient.ServerTimeStamp; aExternalClient.Server.StaticVirtualTableDirect := StaticVirtualTableDirect; aExternalClient.Server.CreateMissingTables; Check(aExternalClient.Server.CreateSQLMultiIndex( TSQLRecordPeopleExt,['FirstName','LastName'],false)); RInt := TSQLRecordPeople.CreateAndFillPrepare(aExternalClient,''); try Check(RInt.FillTable<>nil); Check(RInt.FillTable.RowCount>0); Check(not aExternalClient.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.TableRowCount(TSQLRecordPeopleExt)=0); Check(not aExternalClient.Server.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.Server.TableRowCount(TSQLRecordPeopleExt)=0); RExt := TSQLRecordPeopleExt.Create; try n := 0; aID := 0; while RInt.FillOne do begin RExt.Data := RInt.Data; RExt.FirstName := RInt.FirstName; RExt.LastName := RInt.LastName; RExt.YearOfBirth := RInt.YearOfBirth; RExt.YearOfDeath := RInt.YearOfDeath; RExt.fLastChange := 0; RExt.CreatedAt := 0; aID := aExternalClient.Add(RExt,true); inc(n); Check(aID<>0); Check(RExt.LastChange>=Start); Check(RExt.CreatedAt>=Start); RExt.ClearProperties; Check(RExt.YearOfBirth=0); Check(RExt.FirstName=''); Check(aExternalClient.Retrieve(aID,RExt)); Check(RExt.FirstName=RInt.FirstName); Check(RExt.LastName=RInt.LastName); Check(RExt.YearOfBirth=RInt.YearOfBirth); Check(RExt.YearOfDeath=RInt.YearOfDeath); Check(RExt.YearOfBirth<>RExt.YearOfDeath); end; Check(aExternalClient.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.TableRowCount(TSQLRecordPeopleExt)=n); Check(aExternalClient.Server.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.Server.TableRowCount(TSQLRecordPeopleExt)=n); Check(RInt.FillRewind); while RInt.FillOne do begin RExt.FillPrepare(aExternalClient,'FirstName=? and LastName=?', [RInt.FirstName,RInt.LastName]); // query will use index -> fast :) while RExt.FillOne do begin Check(RExt.FirstName=RInt.FirstName); Check(RExt.LastName=RInt.LastName); Check(RExt.YearOfBirth=RInt.YearOfBirth); Check(RExt.YearOfDeath=RInt.YearOfDeath); Check(RExt.YearOfBirth<>RExt.YearOfDeath); end; end; Updated := aExternalClient.ServerTimeStamp; for i := 1 to aID do if i mod 100=0 then begin RExt.fLastChange := 0; RExt.CreatedAt := 0; Check(aExternalClient.Retrieve(i,RExt,true),'for update'); Check(RExt.YearOfBirth<>RExt.YearOfDeath); Check(RExt.CreatedAt<=Updated); RExt.YearOfBirth := RExt.YearOfDeath; Check(aExternalClient.Update(RExt),'Update 1/100 rows'); Check(aExternalClient.UnLock(RExt)); Check(RExt.LastChange>=Updated); RExt.ClearProperties; Check(RExt.YearOfDeath=0); Check(RExt.YearOfBirth=0); Check(RExt.CreatedAt=0); Check(aExternalClient.Retrieve(i,RExt),'after update'); Check(RExt.YearOfBirth=RExt.YearOfDeath); Check(RExt.CreatedAt>=Start); Check(RExt.CreatedAt<=Updated); Check(RExt.LastChange>=Updated); end; for i := 1 to aID do if i and 127=0 then Check(aExternalClient.Delete(TSQLRecordPeopleExt,i),'Delete 1/128 rows'); n := aExternalClient.TableRowCount(TSQLRecordPeople); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); aExternalClient.Server.BackupGZ(aExternalClient.Server.DB.FileName+'.gz'); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); for i := 1 to aID do begin RExt.fLastChange := 0; RExt.CreatedAt := 0; RExt.YearOfBirth := 0; ok := aExternalClient.Retrieve(i,RExt,false); Check(ok=(i and 127<>0),'deletion'); if ok then begin Check(RExt.CreatedAt>=Start); Check(RExt.CreatedAt<=Updated); if i mod 100=0 then begin Check(RExt.YearOfBirth=RExt.YearOfDeath,'Update'); Check(RExt.LastChange>=Updated); end else begin Check(RExt.YearOfBirth<>RExt.YearOfDeath,'Update'); Check(RExt.LastChange>=Start); Check(RExt.LastChange<=Updated); end; end; end; Check(aExternalClient.Retrieve(1,RInt)); Check(RInt.fID=1); {$ifndef CPU64} RInt.YearOfBirth := 1972; Check(aExternalClient.Update(RInt)); // for RestoreGZ() below Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); {$endif} // life backup/restore does not work with current sqlite3-64.dll finally RExt.Free; end; Check(not aExternalClient.Server.TableHasRows(TSQLRecordOnlyBlob)); Check(aExternalClient.Server.TableRowCount(TSQLRecordOnlyBlob)=0); RBlob := TSQLRecordOnlyBlob.Create; try aExternalClient.ForceBlobTransfert := true; aExternalClient.TransactionBegin(TSQLRecordOnlyBlob); for i := 1 to 1000 do begin Rblob.Data := Int32ToUtf8(i); Check(aExternalClient.Add(RBlob,true)=i); Check(RBlob.ID=i); end; aExternalClient.Commit; for i := 1 to 1000 do begin Check(aExternalClient.Retrieve(i,RBlob)); Check(GetInteger(pointer(RBlob.Data))=i); end; aExternalClient.TransactionBegin(TSQLRecordOnlyBlob); for i := 1000 downto 1 do begin RBlob.ID := i; RBlob.Data := Int32ToUtf8(i*2); Check(aExternalClient.Update(RBlob)); end; aExternalClient.Commit; for i := 1 to 1000 do begin Check(aExternalClient.Retrieve(i,RBlob)); Check(GetInteger(pointer(RBlob.Data))=i*2); end; finally RBlob.Free; end; Check(aExternalClient.TableHasRows(TSQLRecordOnlyBlob)); Check(aExternalClient.TableRowCount(TSQLRecordOnlyBlob)=1000); Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); RInt.ClearProperties; {$ifndef CPU64} aExternalClient.Retrieve(1,RInt); Check(RInt.fID=1); Check(RInt.FirstName='Salvador1'); Check(RInt.YearOfBirth=1972); Check(aExternalClient.Server.RestoreGZ(aExternalClient.Server.DB.FileName+'.gz')); {$endif} // life backup/restore does not work with current sqlite3-64.dll Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); Check(aExternalClient.TableHasRows(TSQLRecordPeople)); Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); RInt.ClearProperties; aExternalClient.Retrieve(1,RInt); Check(RInt.fID=1); Check(RInt.FirstName='Salvador1'); Check(RInt.YearOfBirth=1904); finally RInt.Free; end; finally aExternalClient.Free; fProperties.Free; end; end; {$endif LVCL} type {$ifdef INCLUDE_FTS3} TSQLFTSTest = class(TSQLRecordFTS3) private fSubject: RawUTF8; fBody: RawUTF8; published property Subject: RawUTF8 read fSubject write fSubject; ................................................................................ fGUID: TGUID; fGUIDStr: TGUID; class procedure InternalRegisterCustomProperties(Props: TSQLRecordProperties); override; public property GUID: TGUID read fGUID write fGUID; property GUIDStr: TGUID read fGUIDStr write fGUIDStr; end; class procedure TSQLRecordCustomProps.InternalRegisterCustomProperties(Props: TSQLRecordProperties); begin Props.RegisterCustomFixedSizeRecordProperty(self,sizeof(TGUID),'GUID', @TSQLRecordCustomProps(nil).fGUID); end; procedure TTestSQLite3Engine._TSQLRestClientDB; var V,V2: TSQLRecordPeople; VA: TSQLRecordPeopleArray; {$ifndef LVCL} VO: TSQLRecordPeopleObject; {$endif} FV: TFV; ModelC: TSQLModel; Client: TSQLRestClientDB; ClientDist: TSQLRestClientURI; Server: TSQLRestServer; aStatic: TSQLRestServerStaticInMemory; Curr: Currency; DaVinci, s: RawUTF8; Refreshed: boolean; J: TSQLTableJSON; i, n, nupd, ndx: integer; IntArray, Results: TIntegerDynArray; List: TObjectList; Data: TSQLRawBlob; DataS: THeapMemoryStream; a,b: double; procedure checks(Leonard: boolean; Client: TSQLRestClient; const msg: string); var ID: integer; begin ID := V.ID; // ClearProperties do ID := 0; V.ClearProperties; // reset values Check(Client.Retrieve(ID,V),msg); // internaly call URL() if Leonard then Check(V.FirstName='Leonard') else Check(V.FirstName='Leonardo1',msg); Check(V.LastName=DaVinci,msg); Check(V.YearOfBirth=1452,msg); Check(V.YearOfDeath=1519,msg); end; procedure TestMany(aClient: TSQLRestClient); var MS: TSQLASource; MD, MD2: TSQLADest; i: integer; sID, dID: array[1..100] of Integer; res: TIntegerDynArray; procedure CheckOK; begin Check(MS.FillTable.RowCount>=length(sId)); while MS.FillOne do begin Check(MS.DestList.Source.fID=MS.fID); Check(MS.DestList.Dest.SignatureTime<>0); MS.ClearProperties; MS.DestList.Source.ClearProperties; MS.DestList.Dest.ClearProperties; end; MS.FillClose; end; begin MS := TSQLASource.Create; MD := TSQLADest.Create; try MD.fSignatureTime := Iso8601Now; MS.fSignatureTime := MD.fSignatureTime; Check(MS.DestList<>nil); Check(MS.DestList.InheritsFrom(TSQLRecordMany)); Check(aClient.TransactionBegin(TSQLASource)); // faster process for i := 1 to high(dID) do begin ................................................................................ CheckOK; Check(MS.FillPrepareMany(aClient,'DestList.Dest.SignatureTime<>?',[],[0])); CheckOK; Check(MS.FillPrepareMany(aClient, 'DestList.Dest.SignatureTime<>% and id>=? and DestList.AssociationTime<>0 '+ 'and SignatureTime=DestList.Dest.SignatureTime '+ 'and DestList.Dest.Signature<>"DestList.AssociationTime"',[0],[sID[1]])); Check(MS.FillTable.RowCount=length(sID)); for i := 1 to high(sID) do begin MS.SignatureTime := 0; MS.DestList.Dest.SignatureTime := 0; if CheckFailed(MS.FillOne) then break; Check(MS.fID=sID[i]); ................................................................................ end else Check(not MS.DestList.ManySelect(aClient,sID[i],dID[i])); finally MD.Free; MS.Free; end; end; procedure TestDynArray(aClient: TSQLRestClient); var i, j, k, l: integer; IDs: TIntegerDynArray; begin VA.ClearProperties; for i := 1 to n do begin aClient.Retrieve(i,VA); ................................................................................ exit; end; result := true; finally Free; T.Free; end; end; procedure Direct(const URI: RawUTF8; Hash: cardinal); var call: TSQLRestURIParams; begin call.Method :='GET'; call.Url := TSQLRestServerAuthenticationDefault.ClientSessionSign(Client,URI); call.RestAccessRights := @SUPERVISOR_ACCESS_RIGHTS; Server.URI(call); Check(Hash32(call.OutBody)=Hash); end; begin V := TSQLRecordPeople.Create; VA := TSQLRecordPeopleArray.Create; {$ifndef LVCL} VO := TSQLRecordPeopleObject.Create; {$endif} V2 := nil; ................................................................................ {$ifdef INCLUDE_FTS3} TestFTS3(Client); {$endif} TestDynArray(Client); {$ifndef LVCL} TestObject(Client); {$endif} TestMany(Client); // RegisterVirtualTableModule(TSQLVirtualTableJSON) already done TestVirtual(Client,false,'Virtual Table access via SQLite',TSQLRecordDali1); TestVirtual(Client,false,'Virtual Table access via SQLite',TSQLRecordDali2); TestVirtual(Client,true,'Direct Virtual Table access',TSQLRecordDali1); TestVirtual(Client,true,'Direct Virtual Table access',TSQLRecordDali2); // remote client access test Check(Client.Server.ExportServerNamedPipe('Test'),'declare Test server'); ClientDist := TSQLRestClientURINamedPipe.Create(ModelC,'Test'); try Check(ClientDist.SetUser('User','synopse')); {$ifdef INCLUDE_FTS3} TestFTS3(ClientDist); {$endif}TestDynArray(ClientDist); {$ifndef LVCL} TestObject(ClientDist); {$endif}TestMany(ClientDist); TestVirtual(ClientDist,false,'Remote Virtual Table access via SQLite',TSQLRecordDali1); TestVirtual(ClientDist,false,'Remote Virtual Table access via SQLite',TSQLRecordDali2); TestVirtual(ClientDist,true,'Remote Direct Virtual Table access',TSQLRecordDali1); TestVirtual(ClientDist,true,'Remote Direct Virtual Table access',TSQLRecordDali2); Check(Test(ClientDist.List([TSQLRecordPeople],'*',s)),'through URI and JSON'); for i := 0 to high(IntArray) do begin Check(ClientDist.RetrieveBlob(TSQLRecordPeople,IntArray[i],'Data',Data)); Check((length(Data)=4) and (PInteger(pointer(Data))^=IntArray[i])); V2.ID := IntArray[i]; // debug use - do NOT set ID in your programs! Check(V2.DataAsHex(ClientDist)=SynCommons.BinToHex(Data)); a := Random; b := Random; CheckSame(TSQLRecordPeople.Sum(Client,a,b,false),a+b); CheckSame(TSQLRecordPeople.Sum(Client,a,b,true),a+b); end; V.FirstName := 'Leonardo1'; Check(ClientDist.Update(V)); checks(false,ClientDist,'check remote UPDATE/POST'); V.FirstName := 'Leonard'; Check(ClientDist.Update(V)); checks(true,ClientDist,'check remote UPDATE/POST'); // time := GetTickCount; while time=GetTickCount do; time := GetTickCount; for i := 1 to 400 do // speed test: named pipes are OK checks(true,ClientDist,'caching speed test'); // writeln('NamedPipe connection time is ',GetTickCount-time,'ms'); finally ClientDist.Free; end; if IsMemory then begin // this is a bit time consuming, so do it once Server := TSQLRestServerTest.Create(ModelC,false); try Server.NoAJAXJSON := true; DeleteFile('People.json'); DeleteFile('People.data'); Server.StaticDataCreate(TSQLRecordPeople,'People.data',true); |
> < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > > > > | < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < > > | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 .... 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 .... 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 .... 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 .... 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 .... 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 .... 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 |
// test.db3 SQlite3 file available in the current directory, populated with // some TSQLRecordPeople rows // - note that SQL statement caching at SQLite3 engine level makes those test // 2 times faster: nice proof of performance improvement TTestExternalDatabase = class(TSynTestCase) protected fExternalModel: TSQLModel; fPeopleData: TSQLTable; procedure Test(StaticVirtualTableDirect: boolean); public /// release used instances (e.g. server) and memory procedure CleanUp; override; published /// initialize needed RESTful client (and server) instances // - i.e. a RESTful direct access to an external DB ................................................................................ fName: RawUTF8; fPeople: TSQLRecordPeopleExt; published property Name: RawUTF8 index 30 read fName write fName; property People: TSQLRecordPeopleExt read fPeople write fPeople; end; {$ifdef INCLUDE_FTS3} TSQLFTSTest = class(TSQLRecordFTS3) private fSubject: RawUTF8; fBody: RawUTF8; published property Subject: RawUTF8 read fSubject write fSubject; ................................................................................ fGUID: TGUID; fGUIDStr: TGUID; class procedure InternalRegisterCustomProperties(Props: TSQLRecordProperties); override; public property GUID: TGUID read fGUID write fGUID; property GUIDStr: TGUID read fGUIDStr write fGUIDStr; end; // class hooks to force DMBS property for TTestExternalDatabase.AutoAdaptSQL TSQLDBConnectionPropertiesHook = class(TSQLDBConnectionProperties); TSQLRestServerStaticExternalHook = class(TSQLRestServerStaticExternal); class procedure TSQLRecordCustomProps.InternalRegisterCustomProperties(Props: TSQLRecordProperties); begin Props.RegisterCustomFixedSizeRecordProperty(self,sizeof(TGUID),'GUID', @TSQLRecordCustomProps(nil).fGUID); end; /// will be re-used by both TTestSQLite3Engine and TTestExternalDatabase procedure InternalTestMany(Test: TSynTestCase; aClient: TSQLRestClient); var MS: TSQLASource; MD, MD2: TSQLADest; i: integer; sID, dID: array[1..100] of Integer; res: TIntegerDynArray; procedure CheckOK; begin if Test.CheckFailed(MS.FillTable<>nil) then exit; Test.Check(MS.FillTable.RowCount>=length(sId)); while MS.FillOne do begin Test.Check(MS.DestList.Source.fID=MS.fID); Test.Check(MS.DestList.Dest.SignatureTime<>0); MS.ClearProperties; MS.DestList.Source.ClearProperties; MS.DestList.Dest.ClearProperties; end; MS.FillClose; end; begin MS := TSQLASource.Create; MD := TSQLADest.Create; with Test do try MD.fSignatureTime := Iso8601Now; MS.fSignatureTime := MD.fSignatureTime; Check(MS.DestList<>nil); Check(MS.DestList.InheritsFrom(TSQLRecordMany)); Check(aClient.TransactionBegin(TSQLASource)); // faster process for i := 1 to high(dID) do begin ................................................................................ CheckOK; Check(MS.FillPrepareMany(aClient,'DestList.Dest.SignatureTime<>?',[],[0])); CheckOK; Check(MS.FillPrepareMany(aClient, 'DestList.Dest.SignatureTime<>% and id>=? and DestList.AssociationTime<>0 '+ 'and SignatureTime=DestList.Dest.SignatureTime '+ 'and DestList.Dest.Signature<>"DestList.AssociationTime"',[0],[sID[1]])); if CheckFailed(MS.FillTable<>nil) then exit; Check(MS.FillTable.RowCount=length(sID)); for i := 1 to high(sID) do begin MS.SignatureTime := 0; MS.DestList.Dest.SignatureTime := 0; if CheckFailed(MS.FillOne) then break; Check(MS.fID=sID[i]); ................................................................................ end else Check(not MS.DestList.ManySelect(aClient,sID[i],dID[i])); finally MD.Free; MS.Free; end; end; procedure TTestExternalDatabase.ExternalRecords; var SQL: RawUTF8; begin if CheckFailed(fExternalModel=nil) then exit; // should be called once fExternalModel := TSQLModel.Create( [TSQLRecordPeopleExt,TSQLRecordOnlyBlob,TSQLRecordTestJoin, TSQLASource,TSQLADest,TSQLADests,TSQLRecordPeople]); ReplaceParamsByNames(StringOfChar('?',200),SQL); Check(Hash32(SQL)=$AD27D1E0,'excludes :IF :OF'); end; procedure TTestExternalDatabase.AutoAdaptSQL; var SQLOrigin: RawUTF8; procedure Test(aDBMS: TSQLDBDefinition; AdaptShouldWork: boolean; const SQLExpected: RawUTF8=''); var Props: TSQLDBConnectionProperties; SQL: RawUTF8; begin Props := TSQLDBSQLite3ConnectionProperties.Create(':memory:','','',''); try Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordPeopleExt, Props,'SampleRecord')); with TSQLRestServerStaticExternalHook.Create(TSQLRecordPeopleExt,nil) do try SQL := SQLOrigin; TSQLDBConnectionPropertiesHook(Props).fDBMS := aDBMS; Check((Props.DBMS=aDBMS)or(aDBMS=dUnknown)); Check(AdaptSQLForEngineList(SQL)=AdaptShouldWork); Check((SQL=SQLExpected)or not AdaptShouldWork); finally Free; end; finally Props.Free; end; end; procedure Test2(const Orig,Expected: RawUTF8); var DBMS: TSQLDBDefinition; begin SQLOrigin := Orig; for DBMS := low(DBMS) to high(DBMS) do Test(DBMS,true,Expected); end; begin Test2('select rowid,firstname from PeopleExt where rowid=2', 'select id,firstname from SampleRecord where id=2'); Test2('select rowid,firstname from PeopleExt where rowid=2 order by RowID', 'select id,firstname from SampleRecord where id=2 order by ID'); Test2('select rowid,firstname from PeopleExt where firstname like :(''test''): order by lastname', 'select id,firstname from SampleRecord where firstname like :(''test''): order by lastname'); SQLOrigin := 'select rowid,firstname from PeopleExt where rowid=2 limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and id=2'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where id=2'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where id=2'); Test(dMySQL,true,'select id,firstname from SampleRecord where id=2 limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where id=2 limit 2'); SQLOrigin := 'select rowid,firstname from PeopleExt where rowid=2 order by LastName limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and id=2 order by LastName'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where id=2 order by LastName'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where id=2 order by LastName'); Test(dMySQL,true,'select id,firstname from SampleRecord where id=2 order by LastName limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where id=2 order by LastName limit 2'); SQLOrigin := 'select rowid,firstname from PeopleExt where firstname=:(''test''): limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 and firstname=:(''test''):'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord where firstname=:(''test''):'); Test(dJet,true,'select top 2 id,firstname from SampleRecord where firstname=:(''test''):'); Test(dMySQL,true,'select id,firstname from SampleRecord where firstname=:(''test''): limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord where firstname=:(''test''): limit 2'); SQLOrigin := 'select id,firstname from PeopleExt limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord'); Test(dJet,true,'select top 2 id,firstname from SampleRecord'); Test(dMySQL,true,'select id,firstname from SampleRecord limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord limit 2'); SQLOrigin := 'select id,firstname from PeopleExt order by firstname limit 2'; Test(dUnknown,false); Test(dDefault,false); Test(dOracle,true,'select id,firstname from SampleRecord where rownum<=2 order by firstname'); Test(dMSSQL,true,'select top(2) id,firstname from SampleRecord order by firstname'); Test(dJet,true,'select top 2 id,firstname from SampleRecord order by firstname'); Test(dMySQL,true,'select id,firstname from SampleRecord order by firstname limit 2'); Test(dSQLite,true,'select id,firstname from SampleRecord order by firstname limit 2'); end; procedure TTestExternalDatabase.CleanUp; begin FreeAndNil(fExternalModel); FreeAndNil(fPeopleData); inherited; end; procedure TTestExternalDatabase.ExternalViaREST; begin Test(true); end; procedure TTestExternalDatabase.ExternalViaVirtualTable; begin Test(false); end; procedure TTestExternalDatabase.CryptedDatabase; var R,R2: TSQLRecordPeople; Model: TSQLModel; aID: integer; Client, Client2: TSQLRestClientDB; Res: TIntegerDynArray; procedure CheckFilledRow; begin Check(R.FillRewind); while R.FillOne do if not CheckFailed(R2.FillOne) then begin Check(R.ID<>0); Check(R2.ID<>0); Check(R.FirstName=R2.FirstName); Check(R.LastName=R2.LastName); Check(R.YearOfBirth=R2.YearOfBirth); Check(R.YearOfDeath=R2.YearOfDeath); end; end; {$ifdef CPU32} const password = 'pass'; {$else} const password = ''; {$endif} begin DeleteFile('testpass.db3'); Model := TSQLModel.Create([TSQLRecordPeople]); try Client := TSQLRestClientDB.Create(Model,nil,'test.db3',TSQLRestServerDB,false,''); try R := TSQLRecordPeople.Create; Assert(fPeopleData=nil); fPeopleData := Client.List([TSQLRecordPeople],'*'); R.FillPrepare(fPeopleData); try Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,password); try Client2.Server.DB.Synchronous := smOff; Client2.Server.DB.LockingMode := lmExclusive; Client2.Server.DB.WALMode := true; Client2.Server.CreateMissingTables; Check(Client2.TransactionBegin(TSQLRecordPeople)); Check(Client2.BatchStart(TSQLRecordPeople)); Check(Client2.BatchSend(Res)=200,'Void batch'); Client2.Commit; Check(Client2.TransactionBegin(TSQLRecordPeople)); Check(Client2.BatchStart(TSQLRecordPeople)); while R.FillOne do begin Check(R.ID<>0); Check(Client2.BatchAdd(R,true)>=0); end; Check(Client2.BatchSend(Res)=200,'INSERT batch'); Client2.Commit; finally Client2.Free; end; Check(IsSQLite3File('testpass.db3')); Check(IsSQLite3FileEncrypted('testpass.db3')=(password<>'')); // try to read then update the crypted file Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,password); try Client2.Server.DB.Synchronous := smOff; Client2.Server.DB.LockingMode := lmExclusive; R2 := TSQLRecordPeople.CreateAndFillPrepare(Client2,''); try CheckFilledRow; R2.FirstName := 'One'; aID := Client2.Add(R2,true); Check(aID<>0); R2.FillPrepare(Client2,''); CheckFilledRow; R2.ClearProperties; Check(R2.FirstName=''); Check(Client2.Retrieve(aID,R2)); Check(R2.FirstName='One'); finally R2.Free; end; finally Client2.Free; end; Check(IsSQLite3File('testpass.db3')); Check(IsSQLite3FileEncrypted('testpass.db3')=(password<>'')); {$ifdef CPU32} // now read it after uncypher ChangeSQLEncryptTablePassWord('testpass.db3',password,''); Check(IsSQLite3File('testpass.db3')); Check(not IsSQLite3FileEncrypted('testpass.db3')); Client2 := TSQLRestClientDB.Create(Model,nil,'testpass.db3',TSQLRestServerDB,false,''); try R2 := TSQLRecordPeople.CreateAndFillPrepare(Client2,''); try CheckFilledRow; R2.ClearProperties; Check(R2.FirstName=''); Check(Client2.Retrieve(aID,R2)); Check(R2.FirstName='One'); finally R2.Free; end; finally Client2.Free; end; {$endif} finally R.Free; end; finally Client.Free; end; finally Model.Free; end; end; procedure TTestExternalDatabase.Test(StaticVirtualTableDirect: boolean); var RInt: TSQLRecordPeople; RExt: TSQLRecordPeopleExt; RBlob: TSQLRecordOnlyBlob; Tables: TRawUTF8DynArray; aID, i, n: integer; ok: Boolean; aExternalClient: TSQLRestClientDB; fProperties: TSQLDBConnectionProperties; Start, Updated: TTimeLog; // will work with both TModTime and TCreateTime properties begin // run tests over an in-memory SQLite3 external database (much faster than file) fProperties := TSQLDBSQLite3ConnectionProperties.Create(':memory:','','',''); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordPeopleExt,fProperties,'PeopleExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordOnlyBlob,fProperties,'OnlyBlobExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLRecordTestJoin,fProperties,'TestJoinExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLASource,fProperties,'SourceExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLADest,fProperties,'DestExternal')); Check(VirtualTableExternalRegister(fExternalModel,TSQLADests,fProperties,'DestsExternal')); DeleteFile('testExternal.db3'); // need a file for backup testing aExternalClient := TSQLRestClientDB.Create(fExternalModel,nil,'testExternal.db3',TSQLRestServerDB); try aExternalClient.Server.DB.Synchronous := smOff; aExternalClient.Server.DB.LockingMode := lmExclusive; aExternalClient.Server.DB.GetTableNames(Tables); Check(Tables=nil); // we reset the testExternal.db3 file Start := aExternalClient.ServerTimeStamp; aExternalClient.Server.StaticVirtualTableDirect := StaticVirtualTableDirect; aExternalClient.Server.CreateMissingTables; Check(aExternalClient.Server.CreateSQLMultiIndex( TSQLRecordPeopleExt,['FirstName','LastName'],false)); //InternalTestMany(self,aExternalClient); assert(fPeopleData<>nil); RInt := TSQLRecordPeople.Create; try RInt.FillPrepare(fPeopleData); Check(RInt.FillTable<>nil); Check(RInt.FillTable.RowCount>0); Check(not aExternalClient.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.TableRowCount(TSQLRecordPeopleExt)=0); Check(not aExternalClient.Server.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.Server.TableRowCount(TSQLRecordPeopleExt)=0); RExt := TSQLRecordPeopleExt.Create; try n := 0; aID := 0; while RInt.FillOne do begin if RInt.fID<100 then // some real entries for for backup testing aExternalClient.Add(RInt,true,true); RExt.Data := RInt.Data; RExt.FirstName := RInt.FirstName; RExt.LastName := RInt.LastName; RExt.YearOfBirth := RInt.YearOfBirth; RExt.YearOfDeath := RInt.YearOfDeath; RExt.fLastChange := 0; RExt.CreatedAt := 0; aID := aExternalClient.Add(RExt,true); inc(n); Check(aID<>0); Check(RExt.LastChange>=Start); Check(RExt.CreatedAt>=Start); RExt.ClearProperties; Check(RExt.YearOfBirth=0); Check(RExt.FirstName=''); Check(aExternalClient.Retrieve(aID,RExt)); Check(RExt.FirstName=RInt.FirstName); Check(RExt.LastName=RInt.LastName); Check(RExt.YearOfBirth=RInt.YearOfBirth); Check(RExt.YearOfDeath=RInt.YearOfDeath); Check(RExt.YearOfBirth<>RExt.YearOfDeath); end; Check(n=fPeopleData.RowCount); Check(aExternalClient.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.TableRowCount(TSQLRecordPeopleExt)=n); Check(aExternalClient.Server.TableHasRows(TSQLRecordPeopleExt)); Check(aExternalClient.Server.TableRowCount(TSQLRecordPeopleExt)=n); Check(RInt.FillRewind); while RInt.FillOne do begin RExt.FillPrepare(aExternalClient,'FirstName=? and LastName=?', [RInt.FirstName,RInt.LastName]); // query will use index -> fast :) while RExt.FillOne do begin Check(RExt.FirstName=RInt.FirstName); Check(RExt.LastName=RInt.LastName); Check(RExt.YearOfBirth=RInt.YearOfBirth); Check(RExt.YearOfDeath=RInt.YearOfDeath); Check(RExt.YearOfBirth<>RExt.YearOfDeath); end; end; Updated := aExternalClient.ServerTimeStamp; for i := 1 to aID do if i mod 100=0 then begin RExt.fLastChange := 0; RExt.CreatedAt := 0; Check(aExternalClient.Retrieve(i,RExt,true),'for update'); Check(RExt.YearOfBirth<>RExt.YearOfDeath); Check(RExt.CreatedAt<=Updated); RExt.YearOfBirth := RExt.YearOfDeath; Check(aExternalClient.Update(RExt),'Update 1/100 rows'); Check(aExternalClient.UnLock(RExt)); Check(RExt.LastChange>=Updated); RExt.ClearProperties; Check(RExt.YearOfDeath=0); Check(RExt.YearOfBirth=0); Check(RExt.CreatedAt=0); Check(aExternalClient.Retrieve(i,RExt),'after update'); Check(RExt.YearOfBirth=RExt.YearOfDeath); Check(RExt.CreatedAt>=Start); Check(RExt.CreatedAt<=Updated); Check(RExt.LastChange>=Updated); end; for i := 1 to aID do if i and 127=0 then Check(aExternalClient.Delete(TSQLRecordPeopleExt,i),'Delete 1/128 rows'); n := aExternalClient.TableRowCount(TSQLRecordPeople); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); aExternalClient.Server.BackupGZ(aExternalClient.Server.DB.FileName+'.gz'); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); for i := 1 to aID do begin RExt.fLastChange := 0; RExt.CreatedAt := 0; RExt.YearOfBirth := 0; ok := aExternalClient.Retrieve(i,RExt,false); Check(ok=(i and 127<>0),'deletion'); if ok then begin Check(RExt.CreatedAt>=Start); Check(RExt.CreatedAt<=Updated); if i mod 100=0 then begin Check(RExt.YearOfBirth=RExt.YearOfDeath,'Update'); Check(RExt.LastChange>=Updated); end else begin Check(RExt.YearOfBirth<>RExt.YearOfDeath,'Update'); Check(RExt.LastChange>=Start); Check(RExt.LastChange<=Updated); end; end; end; RInt.ClearProperties; Check(aExternalClient.Retrieve(1,RInt)); Check(RInt.fID=1); {$ifndef CPU64} RInt.YearOfBirth := 1972; Check(aExternalClient.Update(RInt)); // for RestoreGZ() below Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); {$endif} // life backup/restore does not work with current sqlite3-64.dll finally RExt.Free; end; Check(not aExternalClient.Server.TableHasRows(TSQLRecordOnlyBlob)); Check(aExternalClient.Server.TableRowCount(TSQLRecordOnlyBlob)=0); RBlob := TSQLRecordOnlyBlob.Create; try aExternalClient.ForceBlobTransfert := true; aExternalClient.TransactionBegin(TSQLRecordOnlyBlob); for i := 1 to 1000 do begin Rblob.Data := Int32ToUtf8(i); Check(aExternalClient.Add(RBlob,true)=i); Check(RBlob.ID=i); end; aExternalClient.Commit; for i := 1 to 1000 do begin Check(aExternalClient.Retrieve(i,RBlob)); Check(GetInteger(pointer(RBlob.Data))=i); end; aExternalClient.TransactionBegin(TSQLRecordOnlyBlob); for i := 1000 downto 1 do begin RBlob.ID := i; RBlob.Data := Int32ToUtf8(i*2); Check(aExternalClient.Update(RBlob)); end; aExternalClient.Commit; for i := 1 to 1000 do begin Check(aExternalClient.Retrieve(i,RBlob)); Check(GetInteger(pointer(RBlob.Data))=i*2); end; finally RBlob.Free; end; Check(aExternalClient.TableHasRows(TSQLRecordOnlyBlob)); Check(aExternalClient.TableRowCount(TSQLRecordOnlyBlob)=1000); Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); RInt.ClearProperties; {$ifndef CPU64} aExternalClient.Retrieve(1,RInt); Check(RInt.fID=1); Check(RInt.FirstName='Salvador1'); Check(RInt.YearOfBirth=1972); Check(aExternalClient.Server.RestoreGZ(aExternalClient.Server.DB.FileName+'.gz')); {$endif} // life backup/restore does not work with current sqlite3-64.dll Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeople]=nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordPeopleExt]<>nil); Check(aExternalClient.Server.StaticVirtualTable[TSQLRecordOnlyBlob]<>nil); Check(aExternalClient.TableHasRows(TSQLRecordPeople)); Check(aExternalClient.TableRowCount(TSQLRecordPeople)=n); RInt.ClearProperties; aExternalClient.Retrieve(1,RInt); Check(RInt.fID=1); Check(RInt.FirstName='Salvador1'); Check(RInt.YearOfBirth=1904); finally RInt.Free; end; finally aExternalClient.Free; fProperties.Free; end; end; {$endif LVCL} procedure TTestSQLite3Engine._TSQLRestClientDB; var V,V2: TSQLRecordPeople; VA: TSQLRecordPeopleArray; {$ifndef LVCL} VO: TSQLRecordPeopleObject; {$endif} FV: TFV; ModelC: TSQLModel; Client: TSQLRestClientDB; Server: TSQLRestServer; aStatic: TSQLRestServerStaticInMemory; Curr: Currency; DaVinci, s: RawUTF8; Refreshed: boolean; J: TSQLTableJSON; i, n, nupd, ndx: integer; IntArray, Results: TIntegerDynArray; List: TObjectList; Data: TSQLRawBlob; DataS: THeapMemoryStream; a,b: double; procedure checks(Leonard: boolean; Client: TSQLRestClient; const msg: string); var ID: integer; begin ID := V.ID; // ClearProperties do ID := 0; V.ClearProperties; // reset values Check(Client.Retrieve(ID,V),msg); // internaly call URL() if Leonard then Check(V.FirstName='Leonard') else Check(V.FirstName='Leonardo1',msg); Check(V.LastName=DaVinci,msg); Check(V.YearOfBirth=1452,msg); Check(V.YearOfDeath=1519,msg); end; procedure TestDynArray(aClient: TSQLRestClient); var i, j, k, l: integer; IDs: TIntegerDynArray; begin VA.ClearProperties; for i := 1 to n do begin aClient.Retrieve(i,VA); ................................................................................ exit; end; result := true; finally Free; T.Free; end; end; procedure TestClientDist(ClientDist: TSQLRestClientURI); var i: integer; begin try Check(ClientDist.SetUser('User','synopse')); {$ifdef INCLUDE_FTS3} TestFTS3(ClientDist); {$endif}TestDynArray(ClientDist); {$ifndef LVCL} TestObject(ClientDist); {$endif} InternalTestMany(self,ClientDist); TestVirtual(ClientDist,false,'Remote Virtual Table access via SQLite',TSQLRecordDali1); TestVirtual(ClientDist,false,'Remote Virtual Table access via SQLite',TSQLRecordDali2); TestVirtual(ClientDist,true,'Remote Direct Virtual Table access',TSQLRecordDali1); TestVirtual(ClientDist,true,'Remote Direct Virtual Table access',TSQLRecordDali2); Check(Test(ClientDist.List([TSQLRecordPeople],'*',s)),'through URI and JSON'); for i := 0 to high(IntArray) do begin Check(ClientDist.RetrieveBlob(TSQLRecordPeople,IntArray[i],'Data',Data)); Check((length(Data)=4) and (PInteger(pointer(Data))^=IntArray[i])); V2.ID := IntArray[i]; // debug use - do NOT set ID in your programs! Check(V2.DataAsHex(ClientDist)=SynCommons.BinToHex(Data)); a := Random; b := Random; CheckSame(TSQLRecordPeople.Sum(Client,a,b,false),a+b); CheckSame(TSQLRecordPeople.Sum(Client,a,b,true),a+b); end; V.FirstName := 'Leonardo1'; Check(ClientDist.Update(V)); checks(false,ClientDist,'check remote UPDATE/POST'); V.FirstName := 'Leonard'; Check(ClientDist.Update(V)); checks(true,ClientDist,'check remote UPDATE/POST'); // time := GetTickCount; while time=GetTickCount do; time := GetTickCount; for i := 1 to 400 do // speed test: named pipes are OK checks(true,ClientDist,'caching speed test'); // writeln('NamedPipe connection time is ',GetTickCount-time,'ms'); finally ClientDist.Free; end; end; procedure Direct(const URI: RawUTF8; Hash: cardinal); var call: TSQLRestURIParams; begin call.Method :='GET'; call.Url := TSQLRestServerAuthenticationDefault.ClientSessionSign(Client,URI); call.RestAccessRights := @SUPERVISOR_ACCESS_RIGHTS; Server.URI(call); Check(Hash32(call.OutBody)=Hash); end; var ClientDist: TSQLRestClientURI; begin V := TSQLRecordPeople.Create; VA := TSQLRecordPeopleArray.Create; {$ifndef LVCL} VO := TSQLRecordPeopleObject.Create; {$endif} V2 := nil; ................................................................................ {$ifdef INCLUDE_FTS3} TestFTS3(Client); {$endif} TestDynArray(Client); {$ifndef LVCL} TestObject(Client); {$endif} InternalTestMany(self,Client); // RegisterVirtualTableModule(TSQLVirtualTableJSON) already done TestVirtual(Client,false,'Virtual Table access via SQLite',TSQLRecordDali1); TestVirtual(Client,false,'Virtual Table access via SQLite',TSQLRecordDali2); TestVirtual(Client,true,'Direct Virtual Table access',TSQLRecordDali1); TestVirtual(Client,true,'Direct Virtual Table access',TSQLRecordDali2); // remote client access test (via named pipes) Check(Client.Server.ExportServerNamedPipe('Test'),'declare Test server'); TestClientDist(TSQLRestClientURINamedPipe.Create(ModelC,'Test')); // test per-one and batch requests if IsMemory then begin // this is a bit time consuming, so do it once Server := TSQLRestServerTest.Create(ModelC,false); try Server.NoAJAXJSON := true; DeleteFile('People.json'); DeleteFile('People.data'); Server.StaticDataCreate(TSQLRecordPeople,'People.data',true); |