summaryrefslogtreecommitdiff
path: root/tests/scanner/test_scanner.py
blob: 91c120f106a29f08eee33341966e6f74ca996b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import unittest
import optparse
import os

from giscanner.scannermain import get_source_root_dirs


class TestScanner(unittest.TestCase):

    def test_get_source_root_dirs_options(self):
        options = optparse.Values({"sources_top_dirs": ["foo"]})
        paths = get_source_root_dirs(options, ["nope"])
        self.assertEqual(len(paths), 1)
        self.assertTrue(os.path.isabs(paths[0]))
        self.assertEqual(os.path.normcase(paths[0]),
                         os.path.normcase(os.path.join(os.getcwd(), "foo")))

    def test_get_source_root_dirs_guess(self):
        options = optparse.Values({"sources_top_dirs": []})
        cwd = os.getcwd()
        paths = get_source_root_dirs(
            options, [os.path.join(cwd, "foo"), os.path.join(cwd, "bar")])
        self.assertEqual(len(paths), 1)
        self.assertEqual(os.path.normcase(paths[0]), os.path.normcase(cwd))

        paths = get_source_root_dirs(options, [])
        self.assertEqual(paths, [])

    @unittest.skipUnless(os.name == "nt", "Windows only")
    def test_get_source_root_dirs_different_drives(self):
        options = optparse.Values({"sources_top_dirs": []})
        names = [
            os.path.join("X:", os.sep, "foo"),
            os.path.join("Y:", os.sep, "bar"),
        ]
        paths = get_source_root_dirs(options, names)
        self.assertEqual(paths, list(map(os.path.dirname, names)))


if __name__ == '__main__':
    unittest.main()