# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import os from future import Future class _Response(object): def __init__(self): self.content = '' self.headers = { 'content-type': 'none' } self.status_code = 200 class FakeUrlFetcher(object): def __init__(self, base_path): self._base_path = base_path def _ReadFile(self, filename): with open(os.path.join(self._base_path, filename), 'r') as f: return f.read() def _ListDir(self, directory): # In some tests, we need to test listing a directory from the HTML returned # from SVN. This reads an HTML file that has the directories HTML. if not os.path.isdir(os.path.join(self._base_path, directory)): return self._ReadFile(directory[:-1]) files = os.listdir(os.path.join(self._base_path, directory)) html = '