initial import
[vuplus_webkit] / Tools / BuildSlaveSupport / build.webkit.org-config / public_html / TestFailures / scripts / checkout.js
1 /*
2  * Copyright (C) 2011 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 var checkout = checkout || {};
27
28 (function() {
29
30 var kWebKitTrunk = 'http://svn.webkit.org/repository/webkit/trunk/';
31
32 var g_haveSeenCheckoutAvailable = false;
33
34 function callIfCheckoutAvailable(callback, checkoutUnavailable)
35 {
36     if (g_haveSeenCheckoutAvailable) {
37         callback();
38         return;
39     }
40     checkout.isAvailable(function(isAvailable) {
41         if (isAvailable) {
42             g_haveSeenCheckoutAvailable = true;
43             callback();
44             return;
45         }
46         if (checkoutUnavailable)
47             checkoutUnavailable();
48     });
49 }
50
51 checkout.subversionURLForTest = function(testName)
52 {
53     return kWebKitTrunk + 'LayoutTests/' + testName;
54 };
55
56 checkout.isAvailable = function(callback)
57 {
58     net.ajax({
59         url: config.kLocalServerURL + '/ping',
60         success: function() {
61             callback(true);
62         },
63         error: function() {
64             callback(false);
65         },
66     });
67 };
68
69 checkout.updateExpectations = function(failureInfoList, callback, checkoutUnavailable)
70 {
71     callIfCheckoutAvailable(function() {
72         net.post(config.kLocalServerURL + '/updateexpectations', JSON.stringify(failureInfoList), function() {
73             callback();
74         });
75     }, checkoutUnavailable);
76 };
77
78 checkout.optimizeBaselines = function(testName, callback, checkoutUnavailable)
79 {
80     callIfCheckoutAvailable(function() {
81         net.post(config.kLocalServerURL + '/optimizebaselines?' + $.param({
82             'test': testName,
83         }), function() {
84             callback();
85         });
86     }, checkoutUnavailable);
87 };
88
89 checkout.rollout = function(revision, reason, callback, checkoutUnavailable)
90 {
91     callIfCheckoutAvailable(function() {
92         net.post(config.kLocalServerURL + '/rollout?' + $.param({
93             'revision': revision,
94             'reason': reason
95         }), function() {
96             callback();
97         });
98     }, checkoutUnavailable);
99 };
100
101 checkout.rebaseline = function(failureInfoList, callback, progressCallback, checkoutUnavailable)
102 {
103     callIfCheckoutAvailable(function() {
104         base.callInSequence(function(failureInfo, callback) {
105             net.post(config.kLocalServerURL + '/rebaseline?' + $.param({
106                 'builder': failureInfo.builderName,
107                 'test': failureInfo.testName,
108             }), function() {
109                 if (progressCallback)
110                     progressCallback(failureInfo);
111                 callback();
112             });
113         }, failureInfoList, function() {
114             var testNameList = base.uniquifyArray(failureInfoList.map(function(failureInfo) { return failureInfo.testName; }));
115             base.callInSequence(checkout.optimizeBaselines, testNameList, callback);
116         });
117     }, checkoutUnavailable);
118 };
119
120 })();