browser_ui_000_data.js
Go to the documentation of this file.
1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * The Original Code is mozilla.org code.
15  *
16  * The Initial Developer of the Original Code is
17  * Mozilla Corporation.
18  * Portions created by the Initial Developer are Copyright (C) 2008
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  * Dietrich Ayala <dietrich@mozilla.com>
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37 
38 /*
39 
40 Sets up the database for subsequent performance
41 tests, and test the speed of adding to history
42 and bookmarks.
43 
44 - add XXX visits distributed over XXX days
45 - add XXX bookmarks distributed over XXX days
46 
47 */
48 
49 /*********************** begin header **********************/
51 
52 const TEST_IDENTIFIER = "ui-perf-test";
53 const TEST_SUITE = "places";
54 
55 const Cc = Components.classes;
56 const Ci = Components.interfaces;
57 const Cr = Components.results;
58 
59 var wm = Cc["@mozilla.org/appshell/window-mediator;1"].
60  getService(Ci.nsIWindowMediator);
61 var win = wm.getMostRecentWindow("navigator:browser");
62 
63 var ios = Cc["@mozilla.org/network/io-service;1"].
64  getService(Ci.nsIIOService);
65 var hs = Cc["@mozilla.org/browser/nav-history-service;1"].
66  getService(Ci.nsINavHistoryService);
67 var bs = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
68  getService(Ci.nsINavBookmarksService);
69 
70 function add_visit(aURI, aDate) {
71  var placeID = hs.addVisit(aURI,
72  aDate,
73  null, // no referrer
74  hs.TRANSITION_TYPED, // user typed in URL bar
75  false, // not redirect
76  0);
77  return placeID;
78 }
79 
80 function add_bookmark(aURI) {
81  var bId = bs.insertBookmark(bs.unfiledBookmarksFolder, aURI,
82  bs.DEFAULT_INDEX, "bookmark/" + aURI.spec);
83  return bId;
84 }
85 
86 function make_test_report(testName, result, units) {
87  return [TEST_IDENTIFIER, TEST_SUITE, testName, result, units||"ms"].join(":");
88 }
89 
90 // Each test is an obj w/ a name property and run method
91 var ptests = [];
92 
93 /*********************** end header **********************/
94 
95 // add visits and bookmarks
96 ptests.push({
97  run: function() {
98  bs.runInBatchMode({
99  runBatched: function(aUserData) {
100  // timespan - same as default history pref for now
101  var days = 90;
102 
103  // add visits, distributed across the timespan
104  var total_visits = 300;
105  var visits_per_day = total_visits/days;
106 
107  var visit_date_microsec = Date.now() * 1000;
108  var day_counter = 0;
109 
110  var start = Date.now();
111  for (var i = 0; i < days; i++) {
112  visit_date_microsec -= 86400 * 1000 * 1000; // remove a day
113  var spec = "http://example.com/" + visit_date_microsec;
114  for (var j = 0; j < visits_per_day; j++) {
115  var uri = ios.newURI(spec + j, null, null);
116  add_visit(uri, visit_date_microsec);
117  }
118  }
119  var duration = Date.now() - start;
120  var report = make_test_report("add_visits", duration);
121  ok(true, report);
122 
123  // add bookmarks
124  var bookmarks_total = total_visits/10; // bookmark a tenth of the URLs in history
125  var bookmarks_per_day = bookmarks_total/days;
126 
127  // reset visit date counter
128  visit_date_microsec = Date.now() * 1000;
129  var bookmark_counter = 0;
130  start = Date.now();
131  for (var i = 0; i < days; i++) {
132  visit_date_microsec -= 86400 * 1000 * 1000; // remove a day
133  var spec = "http://example.com/" + visit_date_microsec;
134  for (var j = 0; j < visits_per_day; j++) {
135  var uri = ios.newURI(spec + j, null, null);
136  if (bookmark_counter < bookmarks_per_day) {
137  add_bookmark(uri);
138  bookmark_counter++;
139  }
140  else
141  bookmark_counter = 0;
142  }
143  }
144  duration = Date.now() - start;
145  report = make_test_report("add_bookmarks", duration);
146  ok(true, report);
147  runNextTest();
148  }
149  }, null);
150  }
151 });
152 
153 function test() {
154  // kick off tests
155  runNextTest();
156 }
157 
158 function runNextTest() {
159  if (ptests.length > 0)
160  ptests.shift().run();
161  else
162  finish();
163 }
function start(ch)
var hs
var ios
const Cr
var win
getService(Ci.sbIFaceplateManager)
_hideDatepicker duration
function add_bookmark(aURI)
const TEST_SUITE
waitForExplicitFinish()
var wm
return null
Definition: FeedWriter.js:1143
function runNextTest()
var uri
Definition: FeedWriter.js:1135
function add_visit(aURI, aDate)
function make_test_report(testName, result, units)
const Ci
const Cc
var ptests
_getSelectedPageStyle s i
function test()
var bs
const TEST_IDENTIFIER