3 # Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above
10 # copyright notice, this list of conditions and the following
12 # 2. Redistributions in binary form must reproduce the above
13 # copyright notice, this list of conditions and the following
14 # disclaimer in the documentation and/or other materials
15 # provided with the distribution.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "AS IS" AND ANY
18 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
21 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
22 # OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 import unittest2 as unittest
35 from webkitpy.common.system.outputcapture import OutputCapture
36 from webkitpy.w3c.test_importer import TestImporter
39 class TestImporterTest(unittest.TestCase):
41 def test_import_dir_with_no_tests(self):
42 """ Tests do_import() with a directory that contains no tests """
44 importer = TestImporter(None, optparse.Values({"overwrite": False}))
45 importer.source_directory = importer.path_from_webkit_root("Source", "WebCore", "css")
46 importer.destination_directory = tempfile.mkdtemp(prefix='csswg')
54 shutil.rmtree(importer.destination_directory, ignore_errors=True)
56 # FIXME: Need more tests, but need to add a mock filesystem w/ sample data.