OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 Google Inc. All rights reserved. | |
2 # Copyright (C) 2014 Samsung Electronics. 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 are | |
6 # met: | |
7 # | |
8 # * Redistributions of source code must retain the above copyright | |
9 # notice, this list of conditions and the following disclaimer. | |
10 # * Redistributions in binary form must reproduce the above | |
11 # copyright notice, this list of conditions and the following disclaimer | |
12 # in the documentation and/or other materials provided with the | |
13 # distribution. | |
14 # * Neither the name of Google Inc. nor the names of its | |
15 # contributors may be used to endorse or promote products derived from | |
16 # this software without specific prior written permission. | |
17 # | |
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
29 | |
30 import time | |
31 import json | |
32 import BaseHTTPServer | |
33 import subprocess | |
34 from subprocess import Popen, PIPE, STDOUT | |
35 | |
36 from webkitpy.common.webkit_finder import WebKitFinder | |
37 from webkitpy.common.system.filesystem import FileSystem | |
38 from webkitpy.tool.servers.reflectionhandler import ReflectionHandler | |
39 | |
40 | |
41 class LayoutTestsHTTPServer(BaseHTTPServer.HTTPServer): | |
42 def __init__(self, httpd_port, config): | |
43 server_name = "" | |
44 server_address = ("", httpd_port) | |
45 BaseHTTPServer.HTTPServer.__init__(self, server_address, LayoutTestsServ erHTTPRequestHandler) | |
46 | |
47 | |
48 class LayoutTestsServerHTTPRequestHandler(ReflectionHandler): | |
49 | |
50 def do_POST(self): | |
51 # Fixme : Has to be json object | |
Dirk Pranke
2014/09/19 18:34:26
nit: we tend to use FIXME: in all caps.
patro
2014/09/20 17:11:31
Done.
| |
52 json_raw_data = self.rfile.read(int(self.headers.getheader('content-leng th'))) | |
53 filesystem = FileSystem() | |
54 webkit_finder = WebKitFinder(filesystem) | |
55 script_dir = webkit_finder.path_from_webkit_base('Tools', 'Scripts') | |
56 executable_path = script_dir + "/run-webkit-tests" | |
57 cmd = "python " + executable_path + " --no-show-results " | |
58 cmd += json_raw_data | |
59 process = subprocess.Popen(cmd, shell=True, cwd=script_dir, env=None, st dout=subprocess.PIPE, stderr=STDOUT) | |
60 self.send_response(200) | |
61 self.send_header('Access-Control-Allow-Origin', '*') | |
62 self.send_header("Content-type", "text/html") | |
63 self.end_headers() | |
64 while process.poll() is None: | |
65 html_output = '<br>' + str(process.stdout.readline()) | |
66 self.wfile.write(html_output) | |
67 self.wfile.flush() | |
68 time.sleep(0.05) | |
69 process.wait() | |
70 | |
71 def do_OPTIONS(self): | |
72 self.send_response(200, "ok") | |
73 self.send_header('Access-Control-Allow-Origin', '*') | |
74 self.send_header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS') | |
75 self.send_header("Access-Control-Allow-Headers", "Content-type") | |
OLD | NEW |