示例#1
0
文件: test_art.py 项目: dreewoo/beets
 def test_precedence_amongst_correct_files(self):
     _common.touch(os.path.join(self.dpath, 'back.jpg'))
     _common.touch(os.path.join(self.dpath, 'front.jpg'))
     _common.touch(os.path.join(self.dpath, 'front-cover.jpg'))
     fn = fetchart.art_in_path(self.dpath,
                               ('cover', 'front', 'back'), False)
     self.assertEqual(fn, os.path.join(self.dpath, 'front-cover.jpg'))
示例#2
0
 def test_precedence_amongst_correct_files(self):
     _common.touch(os.path.join(self.dpath, 'back.jpg'))
     _common.touch(os.path.join(self.dpath, 'front.jpg'))
     _common.touch(os.path.join(self.dpath, 'front-cover.jpg'))
     fn = fetchart.art_in_path(self.dpath, ('cover', 'front', 'back'),
                               False)
     self.assertEqual(fn, os.path.join(self.dpath, 'front-cover.jpg'))
示例#3
0
文件: test_art.py 项目: Lugoues/beets
 def test_non_image_file_not_identified(self):
     _common.touch(os.path.join(self.dpath, 'a.txt'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, None)
示例#4
0
文件: test_art.py 项目: Lugoues/beets
 def test_appropriately_named_file_takes_precedence(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     _common.touch(os.path.join(self.dpath, 'cover.jpg'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, os.path.join(self.dpath, 'cover.jpg'))
示例#5
0
文件: test_art.py 项目: Lugoues/beets
 def test_finds_jpg_in_directory(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, os.path.join(self.dpath, 'a.jpg'))
示例#6
0
 def test_empty_dir(self):
     fn = fetchart.art_in_path(self.dpath, ('art', ), True)
     self.assertEqual(fn, None)
示例#7
0
 def test_cautious_skips_fallback(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     fn = fetchart.art_in_path(self.dpath, ('art', ), True)
     self.assertEqual(fn, None)
示例#8
0
 def test_non_image_file_not_identified(self):
     _common.touch(os.path.join(self.dpath, 'a.txt'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, None)
示例#9
0
 def test_appropriately_named_file_takes_precedence(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     _common.touch(os.path.join(self.dpath, 'cover.jpg'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, os.path.join(self.dpath, 'cover.jpg'))
示例#10
0
 def test_finds_jpg_in_directory(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     fn = fetchart.art_in_path(self.dpath)
     self.assertEqual(fn, os.path.join(self.dpath, 'a.jpg'))
示例#11
0
文件: test_art.py 项目: SUTJael/beets
 def test_empty_dir(self):
     fn = fetchart.art_in_path(self.dpath, ('art',), True)
     self.assertEqual(fn, None)
示例#12
0
文件: test_art.py 项目: SUTJael/beets
 def test_cautious_skips_fallback(self):
     _common.touch(os.path.join(self.dpath, 'a.jpg'))
     fn = fetchart.art_in_path(self.dpath, ('art',), True)
     self.assertEqual(fn, None)