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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# Copyright 2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
import os
from tests import TestCase, get_data_path, skipUnless
from quodlibet.util.path import normalize_path
from quodlibet.util import is_wine
from quodlibet.util import windows
@skipUnless(os.name == "nt", "Wrong platform")
class TWindows(TestCase):
def test_dir_funcs(self):
d = windows.get_personal_dir()
self.assertTrue(d is None or isinstance(d, str))
d = windows.get_appdata_dir()
self.assertTrue(d is None or isinstance(d, str))
d = windows.get_desktop_dir()
self.assertTrue(d is None or isinstance(d, str))
d = windows.get_music_dir()
self.assertTrue(d is None or isinstance(d, str))
d = windows.get_profile_dir()
self.assertTrue(d is None or isinstance(d, str))
d = windows.get_links_dir()
self.assertTrue(d is None or isinstance(d, str))
def test_get_link_target(self):
path = get_data_path("test.lnk")
d = windows.get_link_target(path)
self.assertTrue(isinstance(d, str))
self.assertEqual(
normalize_path(d), normalize_path(u"C:\\Windows\\explorer.exe"))
def test_get_link_target_unicode(self):
path = get_data_path("test2.lnk")
d = windows.get_link_target(path)
self.assertTrue(isinstance(d, str))
if is_wine():
# wine doesn't support unicode paths here..
self.assertEqual(os.path.basename(d), u"\xe1??.txt")
else:
self.assertEqual(os.path.basename(d), u"\xe1\U00016826.txt")
def test_get_link_target_non_exist(self):
with self.assertRaises(WindowsError):
windows.get_link_target(u"nopenope.lnk")
|