1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
|
// Copyright 2008 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Utility for running multiple test files that utilize the same
* interface as goog.testing.TestRunner. Each test is run in series and their
* results aggregated. The main usecase for the MultiTestRunner is to allow
* the testing of all tests in a project locally.
*
*/
goog.setTestOnly('goog.testing.MultiTestRunner');
goog.provide('goog.testing.MultiTestRunner');
goog.provide('goog.testing.MultiTestRunner.TestFrame');
goog.require('goog.Timer');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.dom.classlist');
goog.require('goog.events.EventHandler');
goog.require('goog.functions');
goog.require('goog.object');
goog.require('goog.string');
goog.require('goog.testing.TestCase');
goog.require('goog.ui.Component');
goog.require('goog.ui.ServerChart');
goog.require('goog.ui.TableSorter');
/**
* A component for running multiple tests within the browser.
* @param {goog.dom.DomHelper=} opt_domHelper A DOM helper.
* @extends {goog.ui.Component}
* @constructor
* @final
*/
goog.testing.MultiTestRunner = function(opt_domHelper) {
goog.ui.Component.call(this, opt_domHelper);
/**
* Array of tests to execute, when combined with the base path this should be
* a relative path to the test from the page containing the multi testrunner.
* @type {Array<string>}
* @private
*/
this.allTests_ = [];
/**
* Tests that match the filter function.
* @type {Array<string>}
* @private
*/
this.activeTests_ = [];
/**
* An event handler for handling events.
* @type {goog.events.EventHandler<!goog.testing.MultiTestRunner>}
* @private
*/
this.eh_ = new goog.events.EventHandler(this);
/**
* A table sorter for the stats.
* @type {goog.ui.TableSorter}
* @private
*/
this.tableSorter_ = new goog.ui.TableSorter(this.dom_);
/**
* Array to hold individual test reports for tests that failed.
* @type {!Array<!string>}
* @private
*/
this.failureReports_ = [];
/**
* Array of test result objects returned from G_testRunner.getTestResults for
* each individual test run.
* @private {!Array<!Object<string,!Array<!goog.testing.TestCase.IResult>>>}
*/
this.allTestResults_ = [];
};
goog.inherits(goog.testing.MultiTestRunner, goog.ui.Component);
/**
* Default maximimum amount of time to spend at each stage of the test.
* @type {number}
*/
goog.testing.MultiTestRunner.DEFAULT_TIMEOUT_MS = 45 * 1000;
/**
* Messages corresponding to the numeric states.
* @type {Array<string>}
*/
goog.testing.MultiTestRunner.STATES = [
'waiting for test runner', 'initializing tests', 'waiting for tests to finish'
];
/**
* Event type dispatched when tests are completed.
* @const
*/
goog.testing.MultiTestRunner.TESTS_FINISHED = 'testsFinished';
/**
* The test suite's name.
* @type {string} name
* @private
*/
goog.testing.MultiTestRunner.prototype.name_ = '';
/**
* The base path used to resolve files within the allTests_ array.
* @type {string}
* @private
*/
goog.testing.MultiTestRunner.prototype.basePath_ = '';
/**
* A set of tests that have finished. All extant keys map to true.
* @type {Object<boolean>}
* @private
*/
goog.testing.MultiTestRunner.prototype.finished_ = null;
/**
* Whether the report should contain verbose information about the passes.
* @type {boolean}
* @private
*/
goog.testing.MultiTestRunner.prototype.verbosePasses_ = false;
/**
* Whether to hide passing tests completely in the report, makes verbosePasses_
* obsolete.
* @type {boolean}
* @private
*/
goog.testing.MultiTestRunner.prototype.hidePasses_ = false;
/**
* Flag used to tell the test runner to stop after the current test.
* @type {boolean}
* @private
*/
goog.testing.MultiTestRunner.prototype.stopped_ = false;
/**
* Flag indicating whether the test runner is active.
* @type {boolean}
* @private
*/
goog.testing.MultiTestRunner.prototype.active_ = false;
/**
* Index of the next test to run.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.startedCount_ = 0;
/**
* Count of the results received so far.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.resultCount_ = 0;
/**
* Number of passes so far.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.passes_ = 0;
/**
* Timestamp for the current start time.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.startTime_ = 0;
/**
* Only tests whose paths patch this filter function will be
* executed.
* @type {function(string): boolean}
* @private
*/
goog.testing.MultiTestRunner.prototype.filterFn_ = goog.functions.TRUE;
/**
* Number of milliseconds to wait for loading and initialization steps.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.timeoutMs_ =
goog.testing.MultiTestRunner.DEFAULT_TIMEOUT_MS;
/**
* An array of objects containing stats about the tests.
* @type {Array<Object>?}
* @private
*/
goog.testing.MultiTestRunner.prototype.stats_ = null;
/**
* Reference to the start button element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.startButtonEl_ = null;
/**
* Reference to the stop button element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.stopButtonEl_ = null;
/**
* Reference to the log element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.logEl_ = null;
/**
* Reference to the report element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.reportEl_ = null;
/**
* Reference to the stats element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.statsEl_ = null;
/**
* Reference to the progress bar's element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.progressEl_ = null;
/**
* Reference to the progress bar's inner row element.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.progressRow_ = null;
/**
* Reference to the log tab.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.logTabEl_ = null;
/**
* Reference to the report tab.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.reportTabEl_ = null;
/**
* Reference to the stats tab.
* @type {Element}
* @private
*/
goog.testing.MultiTestRunner.prototype.statsTabEl_ = null;
/**
* The number of tests to run at a time.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.poolSize_ = 1;
/**
* The size of the stats bucket for the number of files loaded histogram.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.numFilesStatsBucketSize_ = 20;
/**
* The size of the stats bucket in ms for the run time histogram.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.prototype.runTimeStatsBucketSize_ = 500;
/**
* Sets the name for the test suite.
* @param {string} name The suite's name.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setName = function(name) {
this.name_ = name;
return this;
};
/**
* Returns the name for the test suite.
* @return {string} The name for the test suite.
*/
goog.testing.MultiTestRunner.prototype.getName = function() {
return this.name_;
};
/**
* Sets the basepath that tests added using addTests are resolved with.
* @param {string} path The relative basepath.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setBasePath = function(path) {
this.basePath_ = path;
return this;
};
/**
* Returns the basepath that tests added using addTests are resolved with.
* @return {string} The basepath that tests added using addTests are resolved
* with.
*/
goog.testing.MultiTestRunner.prototype.getBasePath = function() {
return this.basePath_;
};
/**
* Sets whether the report should contain verbose information for tests that
* pass.
* @param {boolean} verbose Whether report should be verbose.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setVerbosePasses = function(verbose) {
this.verbosePasses_ = verbose;
return this;
};
/**
* Returns whether the report should contain verbose information for tests that
* pass.
* @return {boolean} Whether the report should contain verbose information for
* tests that pass.
*/
goog.testing.MultiTestRunner.prototype.getVerbosePasses = function() {
return this.verbosePasses_;
};
/**
* Sets whether the report should contain passing tests at all, makes
* setVerbosePasses obsolete.
* @param {boolean} hide Whether report should not contain passing tests.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setHidePasses = function(hide) {
this.hidePasses_ = hide;
return this;
};
/**
* Returns whether the report should contain passing tests at all, makes
* setVerbosePasses obsolete.
* @return {boolean} Whether the report should contain passing tests at all,
* makes setVerbosePasses obsolete.
*/
goog.testing.MultiTestRunner.prototype.getHidePasses = function() {
return this.hidePasses_;
};
/**
* Sets the bucket sizes for the histograms.
* @param {number} f Bucket size for num files loaded histogram.
* @param {number} t Bucket size for run time histogram.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setStatsBucketSizes = function(f, t) {
this.numFilesStatsBucketSize_ = f;
this.runTimeStatsBucketSize_ = t;
return this;
};
/**
* Sets the number of milliseconds to wait for the page to load, initialize and
* run the tests.
* @param {number} timeout Time in milliseconds.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setTimeout = function(timeout) {
this.timeoutMs_ = timeout;
return this;
};
/**
* Returns the number of milliseconds to wait for the page to load, initialize
* and run the tests.
* @return {number} The number of milliseconds to wait for the page to load,
* initialize and run the tests.
*/
goog.testing.MultiTestRunner.prototype.getTimeout = function() {
return this.timeoutMs_;
};
/**
* Sets the number of tests that can be run at the same time. This only improves
* performance due to the amount of time spent loading the tests.
* @param {number} size The number of tests to run at a time.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setPoolSize = function(size) {
this.poolSize_ = size;
return this;
};
/**
* Returns the number of tests that can be run at the same time. This only
* improves performance due to the amount of time spent loading the tests.
* @return {number} The number of tests that can be run at the same time. This
* only improves performance due to the amount of time spent loading the
* tests.
*/
goog.testing.MultiTestRunner.prototype.getPoolSize = function() {
return this.poolSize_;
};
/**
* Sets a filter function. Only test paths that match the filter function
* will be executed.
* @param {function(string): boolean} filterFn Filters test paths.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.setFilterFunction = function(filterFn) {
this.filterFn_ = filterFn;
return this;
};
/**
* Returns a filter function. Only test paths that match the filter function
* will be executed.
* @return {function(string): boolean} A filter function. Only test paths that
* match the filter function will be executed.
*/
goog.testing.MultiTestRunner.prototype.getFilterFunction = function() {
return this.filterFn_;
};
/**
* Adds an array of tests to the tests that the test runner should execute.
* @param {Array<string>} tests Adds tests to the test runner.
* @return {!goog.testing.MultiTestRunner} Instance for chaining.
*/
goog.testing.MultiTestRunner.prototype.addTests = function(tests) {
goog.array.extend(this.allTests_, tests);
return this;
};
/**
* Returns the list of all tests added to the runner.
* @return {Array<string>} The list of all tests added to the runner.
*/
goog.testing.MultiTestRunner.prototype.getAllTests = function() {
return this.allTests_;
};
/**
* Returns the list of tests that will be run when start() is called.
* @return {!Array<string>} The list of tests that will be run when start() is
* called.
*/
goog.testing.MultiTestRunner.prototype.getTestsToRun = function() {
return goog.array.filter(this.allTests_, this.filterFn_);
};
/**
* Returns a list of tests from runner that have been marked as failed.
* @return {!Array<string>} A list of tests from runner that have been marked
* as failed.
*/
goog.testing.MultiTestRunner.prototype.getTestsThatFailed = function() {
var stats = this.stats_;
var failedTests = [];
if (stats) {
for (var i = 0, stat; stat = stats[i]; i++) {
if (!stat.success) {
failedTests.push(stat.testFile);
}
}
}
return failedTests;
};
/**
* Returns a list of reports for tests that have finished since last "start".
* @return {!Array<string>} A list of tests reports.
*/
goog.testing.MultiTestRunner.prototype.getFailureReports = function() {
return this.failureReports_;
};
/**
* Returns list of each frame's test results.
* @return {!Array<!Object<string,!Array<!goog.testing.TestCase.IResult>>>}
*/
goog.testing.MultiTestRunner.prototype.getAllTestResults = function() {
return this.allTestResults_;
};
/**
* Deletes and re-creates the progress table inside the progess element.
* @private
*/
goog.testing.MultiTestRunner.prototype.resetProgressDom_ = function() {
goog.dom.removeChildren(this.progressEl_);
var progressTable = this.dom_.createDom(goog.dom.TagName.TABLE);
var progressTBody = this.dom_.createDom(goog.dom.TagName.TBODY);
this.progressRow_ = this.dom_.createDom(goog.dom.TagName.TR);
for (var i = 0; i < this.activeTests_.length; i++) {
var progressCell = this.dom_.createDom(goog.dom.TagName.TD);
this.progressRow_.appendChild(progressCell);
}
progressTBody.appendChild(this.progressRow_);
progressTable.appendChild(progressTBody);
this.progressEl_.appendChild(progressTable);
};
/** @override */
goog.testing.MultiTestRunner.prototype.createDom = function() {
goog.testing.MultiTestRunner.superClass_.createDom.call(this);
var el = this.getElement();
el.className = goog.getCssName('goog-testrunner');
this.progressEl_ = this.dom_.createDom(goog.dom.TagName.DIV);
this.progressEl_.className = goog.getCssName('goog-testrunner-progress');
el.appendChild(this.progressEl_);
var buttons = this.dom_.createDom(goog.dom.TagName.DIV);
buttons.className = goog.getCssName('goog-testrunner-buttons');
this.startButtonEl_ =
this.dom_.createDom(goog.dom.TagName.BUTTON, null, 'Start');
this.stopButtonEl_ =
this.dom_.createDom(goog.dom.TagName.BUTTON, {'disabled': true}, 'Stop');
buttons.appendChild(this.startButtonEl_);
buttons.appendChild(this.stopButtonEl_);
el.appendChild(buttons);
this.eh_.listen(this.startButtonEl_, 'click', this.onStartClicked_);
this.eh_.listen(this.stopButtonEl_, 'click', this.onStopClicked_);
this.logEl_ = this.dom_.createElement(goog.dom.TagName.DIV);
this.logEl_.className = goog.getCssName('goog-testrunner-log');
el.appendChild(this.logEl_);
this.reportEl_ = this.dom_.createElement(goog.dom.TagName.DIV);
this.reportEl_.className = goog.getCssName('goog-testrunner-report');
this.reportEl_.style.display = 'none';
el.appendChild(this.reportEl_);
this.statsEl_ = this.dom_.createElement(goog.dom.TagName.DIV);
this.statsEl_.className = goog.getCssName('goog-testrunner-stats');
this.statsEl_.style.display = 'none';
el.appendChild(this.statsEl_);
this.logTabEl_ = this.dom_.createDom(goog.dom.TagName.DIV, null, 'Log');
this.logTabEl_.className = goog.getCssName('goog-testrunner-logtab') + ' ' +
goog.getCssName('goog-testrunner-activetab');
el.appendChild(this.logTabEl_);
this.reportTabEl_ = this.dom_.createDom(goog.dom.TagName.DIV, null, 'Report');
this.reportTabEl_.className = goog.getCssName('goog-testrunner-reporttab');
el.appendChild(this.reportTabEl_);
this.statsTabEl_ = this.dom_.createDom(goog.dom.TagName.DIV, null, 'Stats');
this.statsTabEl_.className = goog.getCssName('goog-testrunner-statstab');
el.appendChild(this.statsTabEl_);
this.eh_.listen(this.logTabEl_, 'click', this.onLogTabClicked_);
this.eh_.listen(this.reportTabEl_, 'click', this.onReportTabClicked_);
this.eh_.listen(this.statsTabEl_, 'click', this.onStatsTabClicked_);
};
/** @override */
goog.testing.MultiTestRunner.prototype.disposeInternal = function() {
goog.testing.MultiTestRunner.superClass_.disposeInternal.call(this);
this.tableSorter_.dispose();
this.eh_.dispose();
this.startButtonEl_ = null;
this.stopButtonEl_ = null;
this.logEl_ = null;
this.reportEl_ = null;
this.progressEl_ = null;
this.logTabEl_ = null;
this.reportTabEl_ = null;
this.statsTabEl_ = null;
this.statsEl_ = null;
};
/**
* Starts executing the tests.
*/
goog.testing.MultiTestRunner.prototype.start = function() {
this.startButtonEl_.disabled = true;
this.stopButtonEl_.disabled = false;
this.stopped_ = false;
this.active_ = true;
this.finished_ = {};
this.activeTests_ = this.getTestsToRun();
this.startedCount_ = 0;
this.resultCount_ = 0;
this.passes_ = 0;
this.stats_ = [];
this.startTime_ = goog.now();
this.failureReports_ = [];
this.resetProgressDom_();
goog.dom.removeChildren(this.logEl_);
this.resetReport_();
this.clearStats_();
this.showTab_(0);
// No tests to run, finish early and return.
if (this.activeTests_.length == 0) {
this.finish_();
return;
}
// Ensure the pool isn't too big.
while (this.getChildCount() > this.poolSize_) {
this.removeChildAt(0, true).dispose();
}
// Start a test in each runner.
for (var i = 0; i < this.poolSize_; i++) {
if (i >= this.getChildCount()) {
var testFrame = new goog.testing.MultiTestRunner.TestFrame(
this.basePath_, this.timeoutMs_, this.verbosePasses_, this.dom_);
this.addChild(testFrame, true);
}
this.runNextTest_(
/** @type {goog.testing.MultiTestRunner.TestFrame} */
(this.getChildAt(i)));
}
};
/**
* Logs a message to the log window.
* @param {string} msg A message to log.
*/
goog.testing.MultiTestRunner.prototype.log = function(msg) {
if (msg != '.') {
msg = this.getTimeStamp_() + ' : ' + msg;
}
this.logEl_.appendChild(this.dom_.createDom(goog.dom.TagName.DIV, null, msg));
// Autoscroll if we're near the bottom.
var top = this.logEl_.scrollTop;
var height = /** @type {!HTMLElement} */ (this.logEl_).scrollHeight -
/** @type {!HTMLElement} */ (this.logEl_).offsetHeight;
if (top == 0 || top > height - 50) {
this.logEl_.scrollTop = height;
}
};
/**
* Processes a result returned from a TestFrame. If there are tests remaining
* it will trigger the next one to be run, otherwise if there are no tests and
* all results have been received then it will call finish.
* @param {goog.testing.MultiTestRunner.TestFrame} frame The frame that just
* finished.
*/
goog.testing.MultiTestRunner.prototype.processResult = function(frame) {
var success = frame.isSuccess();
var report = frame.getReport();
var test = frame.getTestFile();
var stats = frame.getStats();
if (!stats.success) {
this.failureReports_.push(report);
}
this.allTestResults_.push(frame.getTestResults());
this.stats_.push(stats);
this.finished_[test] = true;
var prefix = success ? '' : '*** FAILURE *** ';
this.log(
prefix + this.trimFileName_(test) + ' : ' +
(success ? 'Passed' : 'Failed'));
this.resultCount_++;
if (success) {
this.passes_++;
}
this.drawProgressSegment_(test, success);
this.writeCurrentSummary_();
if (!(success && this.hidePasses_)) {
this.drawTestResult_(test, success, report);
}
if (!this.stopped_ && this.startedCount_ < this.activeTests_.length) {
this.runNextTest_(frame);
} else if (this.resultCount_ == this.activeTests_.length) {
this.finish_();
}
};
/**
* Runs the next available test, if there are any left.
* @param {goog.testing.MultiTestRunner.TestFrame} frame Where to run the test.
* @private
*/
goog.testing.MultiTestRunner.prototype.runNextTest_ = function(frame) {
if (this.startedCount_ < this.activeTests_.length) {
var nextTest = this.activeTests_[this.startedCount_++];
this.log(this.trimFileName_(nextTest) + ' : Loading');
frame.runTest(nextTest);
}
};
/**
* Handles the test finishing, processing the results and rendering the report.
* @private
*/
goog.testing.MultiTestRunner.prototype.finish_ = function() {
if (this.stopped_) {
this.log('Stopped');
} else {
this.log('Finished');
}
this.startButtonEl_.disabled = false;
this.stopButtonEl_.disabled = true;
this.active_ = false;
this.showTab_(1);
this.drawStats_();
// Remove all the test frames
while (this.getChildCount() > 0) {
this.removeChildAt(0, true).dispose();
}
// Compute tests that did not finish before the stop button was hit.
var unfinished = [];
for (var i = 0; i < this.activeTests_.length; i++) {
var test = this.activeTests_[i];
if (!this.finished_[test]) {
unfinished.push(test);
}
}
if (unfinished.length) {
this.reportEl_.appendChild(
goog.dom.createDom(
goog.dom.TagName.PRE, undefined,
'These tests did not finish:\n' + unfinished.join('\n')));
}
this.dispatchEvent({
'type': goog.testing.MultiTestRunner.TESTS_FINISHED,
'allTestResults': this.getAllTestResults()
});
};
/**
* Resets the report, clearing out all children and drawing the initial summary.
* @private
*/
goog.testing.MultiTestRunner.prototype.resetReport_ = function() {
goog.dom.removeChildren(this.reportEl_);
var summary = this.dom_.createDom(goog.dom.TagName.DIV);
summary.className = goog.getCssName('goog-testrunner-progress-summary');
this.reportEl_.appendChild(summary);
this.writeCurrentSummary_();
};
/**
* Draws the stats for the test run.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawStats_ = function() {
this.drawFilesHistogram_();
// Only show time stats if pool size is 1, otherwise times are wrong.
if (this.poolSize_ == 1) {
this.drawRunTimePie_();
this.drawTimeHistogram_();
}
this.drawWorstTestsTable_();
};
/**
* Draws the histogram showing number of files loaded.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawFilesHistogram_ = function() {
this.drawStatsHistogram_(
'numFilesLoaded', this.numFilesStatsBucketSize_, goog.functions.identity,
500,
'Histogram showing distribution of\nnumber of files loaded per test');
};
/**
* Draws the histogram showing how long each test took to complete.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawTimeHistogram_ = function() {
this.drawStatsHistogram_(
'totalTime', this.runTimeStatsBucketSize_,
function(x) { return x / 1000; }, 500,
'Histogram showing distribution of\ntime spent running tests in s');
};
/**
* Draws a stats histogram.
* @param {string} statsField Field of the stats object to graph.
* @param {number} bucketSize The size for the histogram's buckets.
* @param {function(number, ...*): *} valueTransformFn Function for
* transforming the x-labels value for display.
* @param {number} width The width in pixels of the graph.
* @param {string} title The graph's title.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawStatsHistogram_ = function(
statsField, bucketSize, valueTransformFn, width, title) {
var hist = {}, data = [], xlabels = [], ylabels = [];
var max = 0;
for (var i = 0; i < this.stats_.length; i++) {
var num = this.stats_[i][statsField];
var bucket = Math.floor(num / bucketSize) * bucketSize;
if (bucket > max) {
max = bucket;
}
if (!hist[bucket]) {
hist[bucket] = 1;
} else {
hist[bucket]++;
}
}
var maxBucketSize = 0;
for (var i = 0; i <= max; i += bucketSize) {
xlabels.push(valueTransformFn(i));
var count = hist[i] || 0;
if (count > maxBucketSize) {
maxBucketSize = count;
}
data.push(count);
}
var diff = Math.max(1, Math.ceil(maxBucketSize / 10));
for (var i = 0; i <= maxBucketSize; i += diff) {
ylabels.push(i);
}
var chart = new goog.ui.ServerChart(
goog.ui.ServerChart.ChartType.VERTICAL_STACKED_BAR, width, 250, null,
goog.ui.ServerChart.CHART_SERVER_HTTPS_URI);
chart.setTitle(title);
chart.addDataSet(data, 'ff9900');
chart.setLeftLabels(ylabels);
chart.setGridY(ylabels.length - 1);
chart.setXLabels(xlabels);
chart.render(this.statsEl_);
};
/**
* Draws a pie chart showing the percentage of time spent running the tests
* compared to loading them etc.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawRunTimePie_ = function() {
var totalTime = 0, runTime = 0;
for (var i = 0; i < this.stats_.length; i++) {
var stat = this.stats_[i];
totalTime += stat.totalTime;
runTime += stat.runTime;
}
var loadTime = totalTime - runTime;
var pie = new goog.ui.ServerChart(
goog.ui.ServerChart.ChartType.PIE, 500, 250, null,
goog.ui.ServerChart.CHART_SERVER_HTTPS_URI);
pie.setMinValue(0);
pie.setMaxValue(totalTime);
pie.addDataSet([runTime, loadTime], 'ff9900');
pie.setXLabels(
['Test execution (' + runTime + 'ms)', 'Loading (' + loadTime + 'ms)']);
pie.render(this.statsEl_);
};
/**
* Draws a pie chart showing the percentage of time spent running the tests
* compared to loading them etc.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawWorstTestsTable_ = function() {
this.stats_.sort(function(a, b) {
return b['numFilesLoaded'] - a['numFilesLoaded'];
});
var tbody = goog.bind(this.dom_.createDom, this.dom_, 'tbody');
var thead = goog.bind(this.dom_.createDom, this.dom_, 'thead');
var tr = goog.bind(this.dom_.createDom, this.dom_, 'tr');
var th = goog.bind(this.dom_.createDom, this.dom_, 'th');
var td = goog.bind(this.dom_.createDom, this.dom_, 'td');
var a = goog.bind(this.dom_.createDom, this.dom_, 'a');
var head = thead(
{'style': 'cursor: pointer'},
tr(null, th(null, ' '), th(null, 'Test file'),
th('center', 'Num files loaded'), th('center', 'Run time (ms)'),
th('center', 'Total time (ms)')));
var body = tbody();
var table = this.dom_.createDom(goog.dom.TagName.TABLE, null, head, body);
for (var i = 0; i < this.stats_.length; i++) {
var stat = this.stats_[i];
body.appendChild(
tr(null, td('center', String(i + 1)),
td(null,
a({'href': this.basePath_ + stat['testFile'], 'target': '_blank'},
stat['testFile'])),
td('center', String(stat['numFilesLoaded'])),
td('center', String(stat['runTime'])),
td('center', String(stat['totalTime']))));
}
this.statsEl_.appendChild(table);
this.tableSorter_.setDefaultSortFunction(goog.ui.TableSorter.numericSort);
this.tableSorter_.setSortFunction(
1 /* test file name */, goog.ui.TableSorter.alphaSort);
this.tableSorter_.decorate(table);
};
/**
* Clears the stats page.
* @private
*/
goog.testing.MultiTestRunner.prototype.clearStats_ = function() {
goog.dom.removeChildren(this.statsEl_);
this.tableSorter_.exitDocument();
};
/**
* Updates the report's summary.
* @private
*/
goog.testing.MultiTestRunner.prototype.writeCurrentSummary_ = function() {
var total = this.activeTests_.length;
var executed = this.resultCount_;
var passes = this.passes_;
var duration = Math.round((goog.now() - this.startTime_) / 1000);
var text = executed + ' of ' + total + ' tests executed.<br>' + passes +
' passed, ' + (executed - passes) + ' failed.<br>' +
'Duration: ' + duration + 's.';
this.reportEl_.firstChild.innerHTML = text;
};
/**
* Adds a segment to the progress bar.
* @param {string} title Title for the segment.
* @param {*} success Whether the segment should indicate a success.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawProgressSegment_ = function(
title, success) {
var part = this.progressRow_.cells[this.resultCount_ - 1];
part.title = title + ' : ' + (success ? 'SUCCESS' : 'FAILURE');
part.style.backgroundColor = success ? '#090' : '#900';
};
/**
* Draws a test result in the report pane.
* @param {string} test Test name.
* @param {*} success Whether the test succeeded.
* @param {string} report The report.
* @private
*/
goog.testing.MultiTestRunner.prototype.drawTestResult_ = function(
test, success, report) {
var text = goog.string.isEmptyOrWhitespace(report) ?
'No report for ' + test + '\n' :
report;
var el = this.dom_.createDom(goog.dom.TagName.DIV);
text = goog.string.htmlEscape(text).replace(/\n/g, '<br>');
if (success) {
el.className = goog.getCssName('goog-testrunner-report-success');
} else {
text += '<a href="' + this.basePath_ + test +
'">Run individually »</a><br> ';
el.className = goog.getCssName('goog-testrunner-report-failure');
}
el.innerHTML = text;
this.reportEl_.appendChild(el);
};
/**
* Returns the current timestamp.
* @return {string} HH:MM:SS.
* @private
*/
goog.testing.MultiTestRunner.prototype.getTimeStamp_ = function() {
var d = new Date;
return goog.string.padNumber(d.getHours(), 2) + ':' +
goog.string.padNumber(d.getMinutes(), 2) + ':' +
goog.string.padNumber(d.getSeconds(), 2);
};
/**
* Trims a filename to be less than 35-characters, ensuring that we do not break
* a path part.
* @param {string} name The file name.
* @return {string} The shortened name.
* @private
*/
goog.testing.MultiTestRunner.prototype.trimFileName_ = function(name) {
if (name.length < 35) {
return name;
}
var parts = name.split('/');
var result = '';
while (result.length < 35 && parts.length > 0) {
result = '/' + parts.pop() + result;
}
return '...' + result;
};
/**
* Shows the report and hides the log if the argument is true.
* @param {number} tab Which tab to show.
* @private
*/
goog.testing.MultiTestRunner.prototype.showTab_ = function(tab) {
var activeTabCssClass = goog.getCssName('goog-testrunner-activetab');
var logTabElement = goog.asserts.assert(this.logTabEl_);
var reportTabElement = goog.asserts.assert(this.reportTabEl_);
var statsTabElement = goog.asserts.assert(this.statsTabEl_);
if (tab == 0) {
this.logEl_.style.display = '';
goog.dom.classlist.add(logTabElement, activeTabCssClass);
} else {
this.logEl_.style.display = 'none';
goog.dom.classlist.remove(logTabElement, activeTabCssClass);
}
if (tab == 1) {
this.reportEl_.style.display = '';
goog.dom.classlist.add(reportTabElement, activeTabCssClass);
} else {
this.reportEl_.style.display = 'none';
goog.dom.classlist.remove(reportTabElement, activeTabCssClass);
}
if (tab == 2) {
this.statsEl_.style.display = '';
goog.dom.classlist.add(statsTabElement, activeTabCssClass);
} else {
this.statsEl_.style.display = 'none';
goog.dom.classlist.remove(statsTabElement, activeTabCssClass);
}
};
/**
* Handles the start button being clicked.
* @param {goog.events.BrowserEvent} e The click event.
* @private
*/
goog.testing.MultiTestRunner.prototype.onStartClicked_ = function(e) {
this.start();
};
/**
* Handles the stop button being clicked.
* @param {goog.events.BrowserEvent} e The click event.
* @private
*/
goog.testing.MultiTestRunner.prototype.onStopClicked_ = function(e) {
this.stopped_ = true;
this.finish_();
};
/**
* Handles the log tab being clicked.
* @param {goog.events.BrowserEvent} e The click event.
* @private
*/
goog.testing.MultiTestRunner.prototype.onLogTabClicked_ = function(e) {
this.showTab_(0);
};
/**
* Handles the log tab being clicked.
* @param {goog.events.BrowserEvent} e The click event.
* @private
*/
goog.testing.MultiTestRunner.prototype.onReportTabClicked_ = function(e) {
this.showTab_(1);
};
/**
* Handles the stats tab being clicked.
* @param {goog.events.BrowserEvent} e The click event.
* @private
*/
goog.testing.MultiTestRunner.prototype.onStatsTabClicked_ = function(e) {
this.showTab_(2);
};
/**
* Class used to manage the interaction with a single iframe.
* @param {string} basePath The base path for tests.
* @param {number} timeoutMs The time to wait for the test to load and run.
* @param {boolean} verbosePasses Whether to show results for passes.
* @param {goog.dom.DomHelper=} opt_domHelper Optional dom helper.
* @constructor
* @extends {goog.ui.Component}
* @final
*/
goog.testing.MultiTestRunner.TestFrame = function(
basePath, timeoutMs, verbosePasses, opt_domHelper) {
goog.ui.Component.call(this, opt_domHelper);
/**
* Base path where tests should be resolved from.
* @type {string}
* @private
*/
this.basePath_ = basePath;
/**
* The timeout for the test.
* @type {number}
* @private
*/
this.timeoutMs_ = timeoutMs;
/**
* Whether to show a summary for passing tests.
* @type {boolean}
* @private
*/
this.verbosePasses_ = verbosePasses;
/**
* An event handler for handling events.
* @type {goog.events.EventHandler<!goog.testing.MultiTestRunner.TestFrame>}
* @private
*/
this.eh_ = new goog.events.EventHandler(this);
/**
* Object to hold test results. Key is test method or file name (depending on
* failure mode) and the value is an array of failure messages.
* @private {!Object<string,!Array<!goog.testing.TestCase.IResult>>}
*/
this.testResults_ = {};
};
goog.inherits(goog.testing.MultiTestRunner.TestFrame, goog.ui.Component);
/**
* Reference to the iframe.
* @type {HTMLIFrameElement}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.iframeEl_ = null;
/**
* Whether the iframe for the current test has loaded.
* @type {boolean}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.iframeLoaded_ = false;
/**
* The test file being run.
* @type {string}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.testFile_ = '';
/**
* The report returned from the test.
* @type {string}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.report_ = '';
/**
* The total time loading and running the test in milliseconds.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.totalTime_ = 0;
/**
* The actual runtime of the test in milliseconds.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.runTime_ = 0;
/**
* The number of files loaded by the test.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.numFilesLoaded_ = 0;
/**
* Whether the test was successful, null if no result has been returned yet.
* @type {?boolean}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.isSuccess_ = null;
/**
* Timestamp for the when the test was started.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.startTime_ = 0;
/**
* Timestamp for the last state, used to determine timeouts.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.lastStateTime_ = 0;
/**
* The state of the active test.
* @type {number}
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.currentState_ = 0;
/** @override */
goog.testing.MultiTestRunner.TestFrame.prototype.disposeInternal = function() {
goog.testing.MultiTestRunner.TestFrame.superClass_.disposeInternal.call(this);
this.dom_.removeNode(this.iframeEl_);
this.eh_.dispose();
this.iframeEl_ = null;
};
/**
* Runs a test file in this test frame.
* @param {string} testFile The test to run.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.runTest = function(testFile) {
this.lastStateTime_ = this.startTime_ = goog.now();
if (!this.iframeEl_) {
this.createIframe_();
}
this.iframeLoaded_ = false;
this.currentState_ = 0;
this.isSuccess_ = null;
this.report_ = '';
this.testResults_ = {};
this.testFile_ = testFile;
try {
this.iframeEl_.src = this.basePath_ + testFile;
} catch (e) {
// Failures will trigger a JS exception on the local file system.
this.report_ = this.testFile_ + ' failed to load : ' + e.message;
this.isSuccess_ = false;
this.finish_();
return;
}
this.checkForCompletion_();
};
/**
* @return {string} The test file the TestFrame is running.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.getTestFile = function() {
return this.testFile_;
};
/**
* @return {!Object} Stats about the test run.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.getStats = function() {
return {
'testFile': this.testFile_,
'success': this.isSuccess_,
'runTime': this.runTime_,
'totalTime': this.totalTime_,
'numFilesLoaded': this.numFilesLoaded_
};
};
/**
* @return {string} The report for the test run.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.getReport = function() {
return this.report_;
};
/**
* @return {!Object<string,!Array<!goog.testing.TestCase.IResult>>} The results
* per individual test in the file. Key is the test filename concatenated
* with the test name, and the array holds failures.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.getTestResults = function() {
var results = {};
for (var testName in this.testResults_) {
var testKey = this.testFile_.replace(/\.html$/, '');
// Concatenate with ":<testName>" unless the testName is equivalent to
// testFile_, which means the test timed out or had no test methods and
// there's no way to get the test method name.
if (testName != this.testFile_) {
testKey += ':' + testName;
}
results[testKey] = this.testResults_[testName];
}
return results;
};
/**
* @return {?boolean} Whether the test frame had a success.
*/
goog.testing.MultiTestRunner.TestFrame.prototype.isSuccess = function() {
return this.isSuccess_;
};
/**
* Handles the TestFrame finishing a single test.
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.finish_ = function() {
this.totalTime_ = goog.now() - this.startTime_;
// TODO(user): Fire an event instead?
if (this.getParent() && this.getParent().processResult) {
this.getParent().processResult(this);
}
};
/**
* Creates an iframe to run the tests in. For overriding in unit tests.
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.createIframe_ = function() {
this.iframeEl_ = this.dom_.createDom(goog.dom.TagName.IFRAME);
this.getElement().appendChild(this.iframeEl_);
this.eh_.listen(this.iframeEl_, 'load', this.onIframeLoaded_);
};
/**
* Handles the iframe loading.
* @param {goog.events.BrowserEvent} e The load event.
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.onIframeLoaded_ = function(e) {
this.iframeLoaded_ = true;
};
/**
* Checks the active test for completion, keeping track of the tests' various
* execution stages.
* @private
*/
goog.testing.MultiTestRunner.TestFrame.prototype.checkForCompletion_ =
function() {
var js = goog.dom.getFrameContentWindow(this.iframeEl_);
switch (this.currentState_) {
case 0:
if (this.iframeLoaded_ && js['G_testRunner']) {
this.lastStateTime_ = goog.now();
this.currentState_++;
}
break;
case 1:
if (js['G_testRunner']['isInitialized']()) {
this.lastStateTime_ = goog.now();
this.currentState_++;
}
break;
case 2:
if (js['G_testRunner']['isFinished']()) {
var tr = js['G_testRunner'];
this.isSuccess_ = tr['isSuccess']();
this.report_ = tr['getReport'](this.verbosePasses_);
this.testResults_ = tr['getTestResults']();
// If there is a syntax error, or no tests, it's not possible to get the
// individual test method results from TestCase. So just create one here
// based on the test report and filename.
if (goog.object.isEmpty(this.testResults_)) {
// Existence of a report is a signal of a test failure by the test
// runner.
this.testResults_[this.testFile_] = this.isSuccess_ ? [] : [{
'message': this.report_,
'source': this.testFile_,
'stacktrace': ''
}];
}
this.runTime_ = tr['getRunTime']();
this.numFilesLoaded_ = tr['getNumFilesLoaded']();
this.finish_();
return;
}
}
// Check to see if the test has timed out.
if (goog.now() - this.lastStateTime_ > this.timeoutMs_) {
this.report_ = this.testFile_ + ' timed out ' +
goog.testing.MultiTestRunner.STATES[this.currentState_];
this.testResults_[this.testFile_] =
[{'message': this.report_, 'source': this.testFile_, 'stacktrace': ''}];
this.isSuccess_ = false;
this.finish_();
return;
}
// Check again in 100ms.
goog.Timer.callOnce(this.checkForCompletion_, 100, this);
};
|