Esempio n. 1
0
 it('should log withBindings stats', function(done) {
   runBenchmark({
     url: URL,
     id: 'ng2.compile.withBindings',
     params: [{name: 'elements', value: 150, scale: 'linear'}],
     work: function() {
       browser.executeScript('document.querySelector("#compileWithBindings").click()');
       browser.sleep(500);
     }
   }).then(done, done.fail);
 });
 it('should run scroll benchmark and collect stats for appSize = ' + appSize, function(done) {
   runBenchmark({
     url: URL,
     id: 'ng2.naive_infinite_scroll',
     work: function() {
       browser.wait(protractor.until.elementLocated(protractor.By.css('body /deep/ #scrollDiv')),
                    5000);
       $('#reset-btn').click();
       $('#run-btn').click();
       browser.wait(protractor.until.elementLocated(protractor.By.css('#done')), 10000);
     },
     params: [
       {name: 'appSize', value: appSize},
       {name: 'iterationCount', value: 20, scale: 'linear'},
       {name: 'scrollIncrement', value: 40}
     ]
   }).then(done, done.fail);
 });
 it('should run scroll benchmark and collect stats for appSize = ' + appSize, function(done) {
   runBenchmark({
     url: URL,
     id: 'ng2.naive_infinite_scroll',
     work: function() {
       $('#reset-btn').click();
       $('#run-btn').click();
       browser.wait(() => {
         return $('#done').getText().then(function() { return true; },
                                          function() { return false; });
       }, 10000);
     },
     params: [
       {name: 'appSize', value: appSize},
       {name: 'iterationCount', value: 20, scale: 'linear'},
       {name: 'scrollIncrement', value: 40}
     ]
   }).then(done, done.fail);
 });
 it('should run scroll benchmark and collect stats for appSize = ' + appSize, function(done) {
   runBenchmark({
     url: URL,
     id: 'ng1-dart1.x.naive_infinite_scroll',
     work: function() {
       $('#reset-btn').click();
       $('#run-btn').click();
       var s = 1000;
       if (appSize > 4) {
         s = s + appSize * 100;
       }
       browser.sleep(s);
     },
     params: [
       {name: 'appSize', value: appSize},
       {name: 'iterationCount', value: 20, scale: 'linear'},
       {name: 'scrollIncrement', value: 40}
     ]
   }).then(done, done.fail);
 });