1# Copyright (c) 2021 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13import("//build/test.gni") 14 15module_output_path = "kv_store/distributeddb" 16 17mul_sources = [ 18 "common/distributeddb/src/auto_launch_callback.cpp", 19 "common/distributeddb/src/delegate_callback.cpp", 20 "common/distributeddb/src/delegate_kv_mgr_callback.cpp", 21 "common/distributeddb/src/distributed_test_tools.cpp", 22 "common/distributeddb/src/kv_store_observer_impl.cpp", 23 "common/distributeddb/src/kv_store_snapshot_callback.cpp", 24] 25 26############################################################################### 27config("module_private_config") { 28 visibility = [ ":*" ] 29 30 include_dirs = [ 31 "../../../common/include/cloud", 32 "../../../interfaces/include/cloud", 33 "../../../storage/src/cloud", 34 "../../../storage/src/kv", 35 "../../../storage/src/gaussdb_rd", 36 "../../../storage/src/relational", 37 "../../../syncer/src/cloud", 38 "../../../syncer/src/device", 39 "../../../storage/src/sqlite/kv", 40 "../../../syncer/src/device/multiver", 41 "../../../syncer/src/device/singlever", 42 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include", 43 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include", 44 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src", 45 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver", 46 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite", 47 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include", 48 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include", 49 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src", 50 51 # "../adapter/include/communicator", 52 "common/distributeddb/include", 53 "include", 54 "//foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include", 55 ] 56 57 defines = [ 58 "_LARGEFILE64_SOURCE", 59 "_FILE_OFFSET_BITS=64", 60 "SQLITE_HAS_CODEC", 61 "USE_SQLITE_SYMBOLS", 62 "USING_HILOG_LOGGER", 63 "TESTCASES_USING_GTEST_EXT", 64 "OMIT_JSON", 65 "LOW_LEVEL_MEM_DEV", 66 "RELEASE_MODE_V2", 67 "RELEASE_MODE_V3", 68 "OMIT_MULTI_VER", 69 "OPENSSL_SUPPRESS_DEPRECATED", 70 ] 71 ldflags = [ "-Wl,--exclude-libs,ALL" ] 72} 73 74##############################moduletest########################################## 75ohos_moduletest("DistributeddbKvTransactionTest") { 76 module_out_path = module_output_path 77 78 sources = [ 79 "common/distributeddb/src/distributed_test_sysinfo.cpp", 80 "common/distributeddb/src/distributeddb_data_generator.cpp", 81 "src/distributed_crud_transaction_tools.cpp", 82 "src/distributeddb_kv_transaction_test.cpp", 83 ] 84 sources += mul_sources 85 configs = [ ":module_private_config" ] 86 87 deps = [ 88 "../../../distributeddb:distributeddb", 89 ] 90 external_deps = [ 91 "c_utils:utils", 92 "googletest:gmock", 93 "googletest:gtest_main", 94 "hilog:libhilog", 95 "openssl:libcrypto_shared", 96 "sqlite:sqlite", 97 ] 98 part_name = "datamgr_service" 99} 100 101ohos_moduletest("DistributeddbKvTransactionPerfTest") { 102 module_out_path = module_output_path 103 104 sources = [ 105 "common/distributeddb/src/distributed_test_sysinfo.cpp", 106 "common/distributeddb/src/distributeddb_data_generator.cpp", 107 "src/distributed_crud_transaction_tools.cpp", 108 "src/distributeddb_kv_transaction_perf_test.cpp", 109 ] 110 sources += mul_sources 111 configs = [ ":module_private_config" ] 112 113 deps = [ 114 "../../../distributeddb:distributeddb", 115 ] 116 external_deps = [ 117 "c_utils:utils", 118 "googletest:gmock", 119 "googletest:gtest_main", 120 "hilog:libhilog", 121 "openssl:libcrypto_shared", 122 "sqlite:sqlite", 123 ] 124 part_name = "datamgr_service" 125} 126ohos_moduletest("DistributeddbKvConcurrencyCrudTest") { 127 module_out_path = module_output_path 128 129 sources = [ 130 "common/distributeddb/src/distributed_test_sysinfo.cpp", 131 "common/distributeddb/src/distributeddb_data_generator.cpp", 132 "src/distributeddb_kv_concurrency_crud_test.cpp", 133 ] 134 sources += mul_sources 135 configs = [ ":module_private_config" ] 136 137 deps = [ 138 "../../../distributeddb:distributeddb", 139 ] 140 external_deps = [ 141 "c_utils:utils", 142 "googletest:gmock", 143 "googletest:gtest_main", 144 "hilog:libhilog", 145 "openssl:libcrypto_shared", 146 "sqlite:sqlite", 147 ] 148 part_name = "datamgr_service" 149} 150ohos_moduletest("DistributeddbKvBatchCrudTest") { 151 module_out_path = module_output_path 152 153 sources = [ 154 "common/distributeddb/src/distributed_test_sysinfo.cpp", 155 "common/distributeddb/src/distributeddb_data_generator.cpp", 156 "src/distributeddb_kv_batch_crud_test.cpp", 157 ] 158 sources += mul_sources 159 configs = [ ":module_private_config" ] 160 161 deps = [ 162 "../../../distributeddb:distributeddb", 163 ] 164 external_deps = [ 165 "c_utils:utils", 166 "googletest:gmock", 167 "googletest:gtest_main", 168 "hilog:libhilog", 169 "openssl:libcrypto_shared", 170 "sqlite:sqlite", 171 ] 172 part_name = "datamgr_service" 173} 174ohos_moduletest("DistributeddbKvCreateTest") { 175 module_out_path = module_output_path 176 177 sources = [ 178 "common/distributeddb/src/distributed_test_sysinfo.cpp", 179 "common/distributeddb/src/distributeddb_data_generator.cpp", 180 "src/distributeddb_kv_create_test.cpp", 181 ] 182 sources += mul_sources 183 configs = [ ":module_private_config" ] 184 185 deps = [ 186 "../../../distributeddb:distributeddb", 187 ] 188 external_deps = [ 189 "c_utils:utils", 190 "googletest:gmock", 191 "googletest:gtest_main", 192 "hilog:libhilog", 193 "openssl:libcrypto_shared", 194 "sqlite:sqlite", 195 ] 196 part_name = "datamgr_service" 197} 198ohos_moduletest("DistributeddbKvCrudTest") { 199 module_out_path = module_output_path 200 201 sources = [ 202 "common/distributeddb/src/distributed_test_sysinfo.cpp", 203 "common/distributeddb/src/distributeddb_data_generator.cpp", 204 "src/distributeddb_kv_crud_test.cpp", 205 ] 206 sources += mul_sources 207 configs = [ ":module_private_config" ] 208 209 deps = [ 210 "../../../distributeddb:distributeddb", 211 ] 212 external_deps = [ 213 "c_utils:utils", 214 "googletest:gmock", 215 "googletest:gtest_main", 216 "hilog:libhilog", 217 "openssl:libcrypto_shared", 218 "sqlite:sqlite", 219 ] 220 part_name = "datamgr_service" 221} 222ohos_moduletest("DistributeddbKvObserverTest") { 223 module_out_path = module_output_path 224 225 sources = [ 226 "common/distributeddb/src/distributed_test_sysinfo.cpp", 227 "common/distributeddb/src/distributeddb_data_generator.cpp", 228 "src/distributeddb_kv_observer_test.cpp", 229 ] 230 sources += mul_sources 231 configs = [ ":module_private_config" ] 232 233 deps = [ 234 "../../../distributeddb:distributeddb", 235 ] 236 external_deps = [ 237 "c_utils:utils", 238 "googletest:gmock", 239 "googletest:gtest_main", 240 "hilog:libhilog", 241 "openssl:libcrypto_shared", 242 "sqlite:sqlite", 243 ] 244 part_name = "datamgr_service" 245} 246ohos_moduletest("DistributeddbKvObserverSnapTest") { 247 module_out_path = module_output_path 248 249 sources = [ 250 "common/distributeddb/src/distributed_test_sysinfo.cpp", 251 "common/distributeddb/src/distributeddb_data_generator.cpp", 252 "src/distributeddb_kv_observer_snap_test.cpp", 253 ] 254 sources += mul_sources 255 configs = [ ":module_private_config" ] 256 257 deps = [ 258 "../../../distributeddb:distributeddb", 259 ] 260 external_deps = [ 261 "c_utils:utils", 262 "googletest:gmock", 263 "googletest:gtest_main", 264 "hilog:libhilog", 265 "openssl:libcrypto_shared", 266 "sqlite:sqlite", 267 ] 268 part_name = "datamgr_service" 269} 270 271ohos_moduletest("DistributeddbKvBackupTest") { 272 module_out_path = module_output_path 273 sources = [ 274 "common/distributeddb/src/distributeddb_constant.cpp", 275 "common/distributeddb/src/distributeddb_data_generator.cpp", 276 "src/distributeddb_kv_backup_test.cpp", 277 ] 278 sources += mul_sources 279 configs = [ ":module_private_config" ] 280 deps = [ 281 "../../../distributeddb:distributeddb", 282 ] 283 external_deps = [ 284 "c_utils:utils", 285 "googletest:gmock", 286 "googletest:gtest_main", 287 "hilog:libhilog", 288 "openssl:libcrypto_shared", 289 "sqlite:sqlite", 290 ] 291 part_name = "datamgr_service" 292} 293 294ohos_moduletest("DistributeddbKvRealdelTest") { 295 module_out_path = module_output_path 296 sources = [ 297 "common/distributeddb/src/distributeddb_constant.cpp", 298 "common/distributeddb/src/distributeddb_data_generator.cpp", 299 "src/distributeddb_kv_realdel_test.cpp", 300 ] 301 sources += mul_sources 302 configs = [ ":module_private_config" ] 303 304 deps = [ 305 "../../../distributeddb:distributeddb", 306 ] 307 external_deps = [ 308 "c_utils:utils", 309 "googletest:gmock", 310 "googletest:gtest_main", 311 "hilog:libhilog", 312 "openssl:libcrypto_shared", 313 "sqlite:sqlite", 314 ] 315 part_name = "datamgr_service" 316} 317 318ohos_moduletest("DistributeddbNbCreateTest") { 319 module_out_path = module_output_path 320 321 sources = [ 322 "common/distributeddb/src/distributeddb_constant.cpp", 323 "common/distributeddb/src/distributeddb_data_generator.cpp", 324 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 325 "src/distributeddb_nb_create_test.cpp", 326 ] 327 sources += mul_sources 328 configs = [ ":module_private_config" ] 329 330 deps = [ 331 "../../../distributeddb:distributeddb", 332 ] 333 external_deps = [ 334 "c_utils:utils", 335 "googletest:gmock", 336 "googletest:gtest_main", 337 "hilog:libhilog", 338 "openssl:libcrypto_shared", 339 "sqlite:sqlite", 340 ] 341 part_name = "datamgr_service" 342} 343ohos_moduletest("DistributeddbNbCrudTest") { 344 module_out_path = module_output_path 345 346 sources = [ 347 "common/distributeddb/src/distributeddb_constant.cpp", 348 "common/distributeddb/src/distributeddb_data_generator.cpp", 349 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 350 "src/distributeddb_nb_crud_test.cpp", 351 ] 352 sources += mul_sources 353 configs = [ ":module_private_config" ] 354 355 deps = [ 356 "../../../distributeddb:distributeddb", 357 ] 358 external_deps = [ 359 "c_utils:utils", 360 "googletest:gmock", 361 "googletest:gtest_main", 362 "hilog:libhilog", 363 "openssl:libcrypto_shared", 364 "sqlite:sqlite", 365 ] 366 part_name = "datamgr_service" 367} 368ohos_moduletest("DistributeddbNbObserverTest") { 369 module_out_path = module_output_path 370 371 sources = [ 372 "common/distributeddb/src/distributeddb_constant.cpp", 373 "common/distributeddb/src/distributeddb_data_generator.cpp", 374 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 375 "src/distributeddb_nb_observer_test.cpp", 376 ] 377 sources += mul_sources 378 configs = [ ":module_private_config" ] 379 380 deps = [ 381 "../../../distributeddb:distributeddb", 382 ] 383 external_deps = [ 384 "c_utils:utils", 385 "googletest:gmock", 386 "googletest:gtest_main", 387 "hilog:libhilog", 388 "openssl:libcrypto_shared", 389 "sqlite:sqlite", 390 ] 391 part_name = "datamgr_service" 392} 393 394ohos_moduletest("DistributeddbNbCursorTest") { 395 module_out_path = module_output_path 396 397 sources = [ 398 "common/distributeddb/src/distributeddb_constant.cpp", 399 "common/distributeddb/src/distributeddb_data_generator.cpp", 400 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 401 "src/distributeddb_nb_cursor_test.cpp", 402 "src/distributeddb_nb_cursor_testcase.cpp", 403 ] 404 sources += mul_sources 405 configs = [ ":module_private_config" ] 406 407 deps = [ 408 "../../../distributeddb:distributeddb", 409 ] 410 external_deps = [ 411 "c_utils:utils", 412 "googletest:gmock", 413 "googletest:gtest_main", 414 "hilog:libhilog", 415 "openssl:libcrypto_shared", 416 "sqlite:sqlite", 417 ] 418 part_name = "datamgr_service" 419} 420 421ohos_moduletest("DistributeddbNbBackupTest") { 422 module_out_path = module_output_path 423 424 sources = [ 425 "common/distributeddb/src/distributeddb_constant.cpp", 426 "common/distributeddb/src/distributeddb_data_generator.cpp", 427 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 428 "src/distributeddb_nb_backup_test.cpp", 429 ] 430 sources += mul_sources 431 configs = [ ":module_private_config" ] 432 433 deps = [ 434 "//foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb:distributeddb", 435 ] 436 437 external_deps = [ 438 "c_utils:utils", 439 "googletest:gmock", 440 "googletest:gtest_main", 441 "hilog:libhilog", 442 "openssl:libcrypto_shared", 443 "sqlite:sqlite", 444 ] 445 part_name = "datamgr_service" 446} 447 448ohos_moduletest("DistributeddbNbBatchCrudTest") { 449 module_out_path = module_output_path 450 451 sources = [ 452 "common/distributeddb/src/distributeddb_constant.cpp", 453 "common/distributeddb/src/distributeddb_data_generator.cpp", 454 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 455 "src/distributeddb_nb_batch_crud_test.cpp", 456 ] 457 sources += mul_sources 458 configs = [ ":module_private_config" ] 459 460 deps = [ 461 "../../../distributeddb:distributeddb", 462 ] 463 external_deps = [ 464 "c_utils:utils", 465 "googletest:gmock", 466 "googletest:gtest_main", 467 "hilog:libhilog", 468 "openssl:libcrypto_shared", 469 "sqlite:sqlite", 470 ] 471 part_name = "datamgr_service" 472} 473 474ohos_moduletest("DistributeddbNbLocalBatchCrudTest") { 475 module_out_path = module_output_path 476 477 sources = [ 478 "common/distributeddb/src/distributeddb_constant.cpp", 479 "common/distributeddb/src/distributeddb_data_generator.cpp", 480 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 481 "src/distributeddb_nb_local_batch_crud_test.cpp", 482 ] 483 sources += mul_sources 484 configs = [ ":module_private_config" ] 485 486 deps = [ 487 "../../../distributeddb:distributeddb", 488 ] 489 external_deps = [ 490 "c_utils:utils", 491 "googletest:gmock", 492 "googletest:gtest_main", 493 "hilog:libhilog", 494 "openssl:libcrypto_shared", 495 "sqlite:sqlite", 496 ] 497 part_name = "datamgr_service" 498} 499 500ohos_moduletest("DistributeddbNbSchemaDbTest") { 501 module_out_path = module_output_path 502 503 sources = [ 504 "common/distributeddb/src/distributeddb_constant.cpp", 505 "common/distributeddb/src/distributeddb_data_generator.cpp", 506 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 507 "src/distributeddb_nb_schema_test.cpp", 508 ] 509 sources += mul_sources 510 configs = [ ":module_private_config" ] 511 deps = [ 512 "../../../distributeddb:distributeddb", 513 ] 514 external_deps = [ 515 "c_utils:utils", 516 "googletest:gmock", 517 "googletest:gtest_main", 518 "hilog:libhilog", 519 "openssl:libcrypto_shared", 520 "sqlite:sqlite", 521 ] 522 part_name = "datamgr_service" 523} 524 525ohos_moduletest("DistributeddbNbPredicateQueryTest") { 526 module_out_path = module_output_path 527 528 sources = [ 529 "common/distributeddb/src/distributeddb_constant.cpp", 530 "common/distributeddb/src/distributeddb_data_generator.cpp", 531 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 532 "src/distributeddb_nb_predicate_query_test.cpp", 533 ] 534 sources += mul_sources 535 configs = [ ":module_private_config" ] 536 537 deps = [ 538 "../../../distributeddb:distributeddb", 539 ] 540 external_deps = [ 541 "c_utils:utils", 542 "googletest:gmock", 543 "googletest:gtest_main", 544 "hilog:libhilog", 545 "openssl:libcrypto_shared", 546 "sqlite:sqlite", 547 ] 548 part_name = "datamgr_service" 549} 550 551ohos_moduletest("DistributeddbNbPredicateQueryExpandTest") { 552 module_out_path = module_output_path 553 sources = [ 554 "common/distributeddb/src/distributeddb_constant.cpp", 555 "common/distributeddb/src/distributeddb_data_generator.cpp", 556 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 557 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 558 "src/distributeddb_nb_predicate_query_expand_test.cpp", 559 ] 560 sources += mul_sources 561 configs = [ ":module_private_config" ] 562 563 deps = [ 564 "../../../distributeddb:distributeddb", 565 ] 566 external_deps = [ 567 "c_utils:utils", 568 "googletest:gmock", 569 "googletest:gtest_main", 570 "hilog:libhilog", 571 "openssl:libcrypto_shared", 572 "sqlite:sqlite", 573 ] 574 part_name = "datamgr_service" 575} 576 577ohos_moduletest("DistributeddbNbAutolaunchTest") { 578 module_out_path = module_output_path 579 sources = [ 580 "common/distributeddb/src/distributeddb_constant.cpp", 581 "common/distributeddb/src/distributeddb_data_generator.cpp", 582 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 583 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 584 "src/distributeddb_nb_autolaunch_test.cpp", 585 ] 586 sources += mul_sources 587 configs = [ ":module_private_config" ] 588 589 deps = [ 590 "../../../distributeddb:distributeddb", 591 ] 592 external_deps = [ 593 "c_utils:utils", 594 "googletest:gmock", 595 "googletest:gtest_main", 596 "hilog:libhilog", 597 "openssl:libcrypto_shared", 598 "sqlite:sqlite", 599 ] 600 part_name = "datamgr_service" 601} 602 603ohos_moduletest("DistributedbNbDbDamageTest") { 604 module_out_path = module_output_path 605 sources = [ 606 "common/distributeddb/src/distributeddb_constant.cpp", 607 "common/distributeddb/src/distributeddb_data_generator.cpp", 608 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 609 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 610 "src/distributeddb_nb_db_damage_test.cpp", 611 ] 612 sources += mul_sources 613 configs = [ ":module_private_config" ] 614 615 deps = [ 616 "../../../distributeddb:distributeddb", 617 ] 618 external_deps = [ 619 "c_utils:utils", 620 "googletest:gmock", 621 "googletest:gtest_main", 622 "hilog:libhilog", 623 "openssl:libcrypto_shared", 624 "sqlite:sqlite", 625 ] 626 part_name = "datamgr_service" 627} 628 629ohos_moduletest("DistributeddbNbCrudPowerTest") { 630 module_out_path = module_output_path 631 sources = [ 632 "common/distributeddb/src/distributeddb_constant.cpp", 633 "common/distributeddb/src/distributeddb_data_generator.cpp", 634 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 635 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 636 "src/distributeddb_nb_crud_power_test.cpp", 637 ] 638 sources += mul_sources 639 configs = [ ":module_private_config" ] 640 641 deps = [ 642 "../../../distributeddb:distributeddb", 643 ] 644 external_deps = [ 645 "c_utils:utils", 646 "googletest:gmock", 647 "googletest:gtest_main", 648 "hilog:libhilog", 649 "openssl:libcrypto_shared", 650 "sqlite:sqlite", 651 ] 652 part_name = "datamgr_service" 653} 654 655ohos_moduletest("DistributeddbNbSchemaTest") { 656 module_out_path = module_output_path 657 sources = [ 658 "common/distributeddb/src/distributeddb_constant.cpp", 659 "common/distributeddb/src/distributeddb_data_generator.cpp", 660 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 661 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 662 "src/distributeddb_nb_schema_test.cpp", 663 ] 664 sources += mul_sources 665 configs = [ ":module_private_config" ] 666 667 deps = [ 668 "../../../distributeddb:distributeddb", 669 ] 670 external_deps = [ 671 "c_utils:utils", 672 "googletest:gmock", 673 "googletest:gtest_main", 674 "hilog:libhilog", 675 "openssl:libcrypto_shared", 676 "sqlite:sqlite", 677 ] 678 part_name = "datamgr_service" 679} 680 681ohos_moduletest("DistributeddbNbSchemaUpgradeTest") { 682 module_out_path = module_output_path 683 sources = [ 684 "common/distributeddb/src/distributeddb_constant.cpp", 685 "common/distributeddb/src/distributeddb_data_generator.cpp", 686 "common/distributeddb/src/distributeddb_nb_test_tools.cpp", 687 "common/distributeddb/src/distributeddb_schema_test_tools.cpp", 688 "src/distributeddb_nb_schema_upgrade_test.cpp", 689 ] 690 sources += mul_sources 691 configs = [ ":module_private_config" ] 692 693 deps = [ 694 "../../../distributeddb:distributeddb", 695 ] 696 external_deps = [ 697 "c_utils:utils", 698 "googletest:gmock", 699 "googletest:gtest_main", 700 "hilog:libhilog", 701 "openssl:libcrypto_shared", 702 "sqlite:sqlite", 703 ] 704 part_name = "datamgr_service" 705} 706 707############################################################################### 708group("moduletest") { 709 testonly = true 710 711 deps = [ 712 ":DistributedbNbDbDamageTest", 713 ":DistributeddbKvBackupTest", 714 ":DistributeddbKvBatchCrudTest", 715 ":DistributeddbKvConcurrencyCrudTest", 716 ":DistributeddbKvCreateTest", 717 ":DistributeddbKvCrudTest", 718 ":DistributeddbKvObserverSnapTest", 719 ":DistributeddbKvObserverTest", 720 ":DistributeddbKvRealdelTest", 721 ":DistributeddbKvTransactionPerfTest", 722 ":DistributeddbKvTransactionTest", 723 ":DistributeddbNbAutolaunchTest", 724 ":DistributeddbNbBackupTest", 725 ":DistributeddbNbBatchCrudTest", 726 ":DistributeddbNbCreateTest", 727 ":DistributeddbNbCrudPowerTest", 728 ":DistributeddbNbCrudTest", 729 ":DistributeddbNbCursorTest", 730 ":DistributeddbNbLocalBatchCrudTest", 731 ":DistributeddbNbObserverTest", 732 ":DistributeddbNbPredicateQueryExpandTest", 733 ":DistributeddbNbPredicateQueryTest", 734 ":DistributeddbNbSchemaTest", 735 ":DistributeddbNbSchemaUpgradeTest", 736 ] 737} 738