| OLD | NEW |
| 1 # Copyright (C) 2012 Google Inc. All rights reserved. | 1 # Copyright (C) 2012 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 if sys.platform in ('cygwin', 'win32'): | 44 if sys.platform in ('cygwin', 'win32'): |
| 45 return | 45 return |
| 46 | 46 |
| 47 def fake_pid(_): | 47 def fake_pid(_): |
| 48 host.filesystem.write_text_file('/tmp/WebKit/httpd.pid', '42') | 48 host.filesystem.write_text_file('/tmp/WebKit/httpd.pid', '42') |
| 49 return True | 49 return True |
| 50 | 50 |
| 51 host = MockHost() | 51 host = MockHost() |
| 52 host.executive = MockExecutive(should_log=True) | 52 host.executive = MockExecutive(should_log=True) |
| 53 test_port = test.TestPort(host) | 53 test_port = test.TestPort(host) |
| 54 host.filesystem.write_text_file(test_port._path_to_apache_config_file(),
'') | 54 host.filesystem.write_text_file(test_port.path_to_apache_config_file(),
'') |
| 55 | 55 |
| 56 server = LayoutTestApacheHttpd(test_port, "/mock/output_dir", number_of_
servers=4) | 56 server = LayoutTestApacheHttpd(test_port, "/mock/output_dir", number_of_
servers=4) |
| 57 server._check_that_all_ports_are_available = lambda: True | 57 server._check_that_all_ports_are_available = lambda: True |
| 58 server._is_server_running_on_all_ports = lambda: True | 58 server._is_server_running_on_all_ports = lambda: True |
| 59 server._wait_for_action = fake_pid | 59 server._wait_for_action = fake_pid |
| 60 oc = OutputCapture() | 60 oc = OutputCapture() |
| 61 try: | 61 try: |
| 62 oc.capture_output() | 62 oc.capture_output() |
| 63 server.start() | 63 server.start() |
| 64 server.stop() | 64 server.stop() |
| 65 finally: | 65 finally: |
| 66 _, _, logs = oc.restore_output() | 66 _, _, logs = oc.restore_output() |
| 67 self.assertIn("StartServers 4", logs) | 67 self.assertIn("StartServers 4", logs) |
| 68 self.assertIn("MinSpareServers 4", logs) | 68 self.assertIn("MinSpareServers 4", logs) |
| 69 self.assertIn("MaxSpareServers 4", logs) | 69 self.assertIn("MaxSpareServers 4", logs) |
| 70 self.assertTrue(host.filesystem.exists("/mock/output_dir/httpd.conf")) | |
| OLD | NEW |