forked from beetbox/beets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_files.py
712 lines (571 loc) · 23 KB
/
test_files.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
# This file is part of beets.
# Copyright 2016, Adrian Sampson.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
"""Test file manipulation functionality of Item.
"""
import os
import shutil
import stat
import unittest
from os.path import join
import beets.library
from beets import util
from beets.test import _common
from beets.test._common import item, touch
from beets.util import MoveOperation, bytestring_path, syspath
class MoveTest(_common.TestCase):
def setUp(self):
super().setUp()
# make a temporary file
self.path = join(self.temp_dir, b"temp.mp3")
shutil.copy(
syspath(join(_common.RSRC, b"full.mp3")),
syspath(self.path),
)
# add it to a temporary library
self.lib = beets.library.Library(":memory:")
self.i = beets.library.Item.from_path(self.path)
self.lib.add(self.i)
# set up the destination
self.libdir = join(self.temp_dir, b"testlibdir")
os.mkdir(syspath(self.libdir))
self.lib.directory = self.libdir
self.lib.path_formats = [
("default", join("$artist", "$album", "$title"))
]
self.i.artist = "one"
self.i.album = "two"
self.i.title = "three"
self.dest = join(self.libdir, b"one", b"two", b"three.mp3")
self.otherdir = join(self.temp_dir, b"testotherdir")
def test_move_arrives(self):
self.i.move()
self.assertExists(self.dest)
def test_move_to_custom_dir(self):
self.i.move(basedir=self.otherdir)
self.assertExists(join(self.otherdir, b"one", b"two", b"three.mp3"))
def test_move_departs(self):
self.i.move()
self.assertNotExists(self.path)
def test_move_in_lib_prunes_empty_dir(self):
self.i.move()
old_path = self.i.path
self.assertExists(old_path)
self.i.artist = "newArtist"
self.i.move()
self.assertNotExists(old_path)
self.assertNotExists(os.path.dirname(old_path))
def test_copy_arrives(self):
self.i.move(operation=MoveOperation.COPY)
self.assertExists(self.dest)
def test_copy_does_not_depart(self):
self.i.move(operation=MoveOperation.COPY)
self.assertExists(self.path)
def test_reflink_arrives(self):
self.i.move(operation=MoveOperation.REFLINK_AUTO)
self.assertExists(self.dest)
def test_reflink_does_not_depart(self):
self.i.move(operation=MoveOperation.REFLINK_AUTO)
self.assertExists(self.path)
@unittest.skipUnless(_common.HAVE_REFLINK, "need reflink")
def test_force_reflink_arrives(self):
self.i.move(operation=MoveOperation.REFLINK)
self.assertExists(self.dest)
@unittest.skipUnless(_common.HAVE_REFLINK, "need reflink")
def test_force_reflink_does_not_depart(self):
self.i.move(operation=MoveOperation.REFLINK)
self.assertExists(self.path)
def test_move_changes_path(self):
self.i.move()
self.assertEqual(self.i.path, util.normpath(self.dest))
def test_copy_already_at_destination(self):
self.i.move()
old_path = self.i.path
self.i.move(operation=MoveOperation.COPY)
self.assertEqual(self.i.path, old_path)
def test_move_already_at_destination(self):
self.i.move()
old_path = self.i.path
self.i.move()
self.assertEqual(self.i.path, old_path)
def test_move_file_with_colon(self):
self.i.artist = "C:DOS"
self.i.move()
self.assertIn("C_DOS", self.i.path.decode())
def test_move_file_with_multiple_colons(self):
# print(beets.config["replace"])
self.i.artist = "COM:DOS"
self.i.move()
self.assertIn("COM_DOS", self.i.path.decode())
def test_move_file_with_colon_alt_separator(self):
old = beets.config["drive_sep_replace"]
beets.config["drive_sep_replace"] = "0"
self.i.artist = "C:DOS"
self.i.move()
self.assertIn("C0DOS", self.i.path.decode())
beets.config["drive_sep_replace"] = old
def test_read_only_file_copied_writable(self):
# Make the source file read-only.
os.chmod(syspath(self.path), 0o444)
try:
self.i.move(operation=MoveOperation.COPY)
self.assertTrue(os.access(syspath(self.i.path), os.W_OK))
finally:
# Make everything writable so it can be cleaned up.
os.chmod(syspath(self.path), 0o777)
os.chmod(syspath(self.i.path), 0o777)
def test_move_avoids_collision_with_existing_file(self):
# Make a conflicting file at the destination.
dest = self.i.destination()
os.makedirs(syspath(os.path.dirname(dest)))
touch(dest)
self.i.move()
self.assertNotEqual(self.i.path, dest)
self.assertEqual(os.path.dirname(self.i.path), os.path.dirname(dest))
@unittest.skipUnless(_common.HAVE_SYMLINK, "need symlinks")
def test_link_arrives(self):
self.i.move(operation=MoveOperation.LINK)
self.assertExists(self.dest)
self.assertTrue(os.path.islink(syspath(self.dest)))
self.assertEqual(
bytestring_path(os.readlink(syspath(self.dest))),
self.path,
)
@unittest.skipUnless(_common.HAVE_SYMLINK, "need symlinks")
def test_link_does_not_depart(self):
self.i.move(operation=MoveOperation.LINK)
self.assertExists(self.path)
@unittest.skipUnless(_common.HAVE_SYMLINK, "need symlinks")
def test_link_changes_path(self):
self.i.move(operation=MoveOperation.LINK)
self.assertEqual(self.i.path, util.normpath(self.dest))
@unittest.skipUnless(_common.HAVE_HARDLINK, "need hardlinks")
def test_hardlink_arrives(self):
self.i.move(operation=MoveOperation.HARDLINK)
self.assertExists(self.dest)
s1 = os.stat(syspath(self.path))
s2 = os.stat(syspath(self.dest))
self.assertTrue(
(s1[stat.ST_INO], s1[stat.ST_DEV])
== (s2[stat.ST_INO], s2[stat.ST_DEV])
)
@unittest.skipUnless(_common.HAVE_HARDLINK, "need hardlinks")
def test_hardlink_does_not_depart(self):
self.i.move(operation=MoveOperation.HARDLINK)
self.assertExists(self.path)
@unittest.skipUnless(_common.HAVE_HARDLINK, "need hardlinks")
def test_hardlink_changes_path(self):
self.i.move(operation=MoveOperation.HARDLINK)
self.assertEqual(self.i.path, util.normpath(self.dest))
class HelperTest(_common.TestCase):
def test_ancestry_works_on_file(self):
p = "/a/b/c"
a = ["/", "/a", "/a/b"]
self.assertEqual(util.ancestry(p), a)
def test_ancestry_works_on_dir(self):
p = "/a/b/c/"
a = ["/", "/a", "/a/b", "/a/b/c"]
self.assertEqual(util.ancestry(p), a)
def test_ancestry_works_on_relative(self):
p = "a/b/c"
a = ["a", "a/b"]
self.assertEqual(util.ancestry(p), a)
def test_components_works_on_file(self):
p = "/a/b/c"
a = ["/", "a", "b", "c"]
self.assertEqual(util.components(p), a)
def test_components_works_on_dir(self):
p = "/a/b/c/"
a = ["/", "a", "b", "c"]
self.assertEqual(util.components(p), a)
def test_components_works_on_relative(self):
p = "a/b/c"
a = ["a", "b", "c"]
self.assertEqual(util.components(p), a)
def test_forward_slash(self):
p = rb"C:\a\b\c"
a = rb"C:/a/b/c"
self.assertEqual(util.path_as_posix(p), a)
class AlbumFileTest(_common.TestCase):
def setUp(self):
super().setUp()
# Make library and item.
self.lib = beets.library.Library(":memory:")
self.lib.path_formats = [
("default", join("$albumartist", "$album", "$title"))
]
self.libdir = os.path.join(self.temp_dir, b"testlibdir")
self.lib.directory = self.libdir
self.i = item(self.lib)
# Make a file for the item.
self.i.path = self.i.destination()
util.mkdirall(self.i.path)
touch(self.i.path)
# Make an album.
self.ai = self.lib.add_album((self.i,))
# Alternate destination dir.
self.otherdir = os.path.join(self.temp_dir, b"testotherdir")
def test_albuminfo_move_changes_paths(self):
self.ai.album = "newAlbumName"
self.ai.move()
self.ai.store()
self.i.load()
self.assertTrue(b"newAlbumName" in self.i.path)
def test_albuminfo_move_moves_file(self):
oldpath = self.i.path
self.ai.album = "newAlbumName"
self.ai.move()
self.ai.store()
self.i.load()
self.assertNotExists(oldpath)
self.assertExists(self.i.path)
def test_albuminfo_move_copies_file(self):
oldpath = self.i.path
self.ai.album = "newAlbumName"
self.ai.move(operation=MoveOperation.COPY)
self.ai.store()
self.i.load()
self.assertExists(oldpath)
self.assertExists(self.i.path)
@unittest.skipUnless(_common.HAVE_REFLINK, "need reflink")
def test_albuminfo_move_reflinks_file(self):
oldpath = self.i.path
self.ai.album = "newAlbumName"
self.ai.move(operation=MoveOperation.REFLINK)
self.ai.store()
self.i.load()
self.assertTrue(os.path.exists(oldpath))
self.assertTrue(os.path.exists(self.i.path))
def test_albuminfo_move_to_custom_dir(self):
self.ai.move(basedir=self.otherdir)
self.i.load()
self.ai.store()
self.assertIn(b"testotherdir", self.i.path)
class ArtFileTest(_common.TestCase):
def setUp(self):
super().setUp()
# Make library and item.
self.lib = beets.library.Library(":memory:")
self.libdir = os.path.join(self.temp_dir, b"testlibdir")
self.lib.directory = self.libdir
self.i = item(self.lib)
self.i.path = self.i.destination()
# Make a music file.
util.mkdirall(self.i.path)
touch(self.i.path)
# Make an album.
self.ai = self.lib.add_album((self.i,))
# Make an art file too.
self.art = self.lib.get_album(self.i).art_destination("something.jpg")
touch(self.art)
self.ai.artpath = self.art
self.ai.store()
# Alternate destination dir.
self.otherdir = os.path.join(self.temp_dir, b"testotherdir")
def test_art_deleted_when_items_deleted(self):
self.assertExists(self.art)
self.ai.remove(True)
self.assertNotExists(self.art)
def test_art_moves_with_album(self):
self.assertExists(self.art)
oldpath = self.i.path
self.ai.album = "newAlbum"
self.ai.move()
self.i.load()
self.assertNotEqual(self.i.path, oldpath)
self.assertNotExists(self.art)
newart = self.lib.get_album(self.i).art_destination(self.art)
self.assertExists(newart)
def test_art_moves_with_album_to_custom_dir(self):
# Move the album to another directory.
self.ai.move(basedir=self.otherdir)
self.ai.store()
self.i.load()
# Art should be in new directory.
self.assertNotExists(self.art)
newart = self.lib.get_album(self.i).artpath
self.assertExists(newart)
self.assertIn(b"testotherdir", newart)
def test_setart_copies_image(self):
util.remove(self.art)
newart = os.path.join(self.libdir, b"newart.jpg")
touch(newart)
i2 = item()
i2.path = self.i.path
i2.artist = "someArtist"
ai = self.lib.add_album((i2,))
i2.move(operation=MoveOperation.COPY)
self.assertIsNone(ai.artpath)
ai.set_art(newart)
self.assertExists(ai.artpath)
def test_setart_to_existing_art_works(self):
util.remove(self.art)
# Original art.
newart = os.path.join(self.libdir, b"newart.jpg")
touch(newart)
i2 = item()
i2.path = self.i.path
i2.artist = "someArtist"
ai = self.lib.add_album((i2,))
i2.move(operation=MoveOperation.COPY)
ai.set_art(newart)
# Set the art again.
ai.set_art(ai.artpath)
self.assertExists(ai.artpath)
def test_setart_to_existing_but_unset_art_works(self):
newart = os.path.join(self.libdir, b"newart.jpg")
touch(newart)
i2 = item()
i2.path = self.i.path
i2.artist = "someArtist"
ai = self.lib.add_album((i2,))
i2.move(operation=MoveOperation.COPY)
# Copy the art to the destination.
artdest = ai.art_destination(newart)
shutil.copy(syspath(newart), syspath(artdest))
# Set the art again.
ai.set_art(artdest)
self.assertExists(ai.artpath)
def test_setart_to_conflicting_file_gets_new_path(self):
newart = os.path.join(self.libdir, b"newart.jpg")
touch(newart)
i2 = item()
i2.path = self.i.path
i2.artist = "someArtist"
ai = self.lib.add_album((i2,))
i2.move(operation=MoveOperation.COPY)
# Make a file at the destination.
artdest = ai.art_destination(newart)
touch(artdest)
# Set the art.
ai.set_art(newart)
self.assertNotEqual(artdest, ai.artpath)
self.assertEqual(os.path.dirname(artdest), os.path.dirname(ai.artpath))
def test_setart_sets_permissions(self):
util.remove(self.art)
newart = os.path.join(self.libdir, b"newart.jpg")
touch(newart)
os.chmod(syspath(newart), 0o400) # read-only
try:
i2 = item()
i2.path = self.i.path
i2.artist = "someArtist"
ai = self.lib.add_album((i2,))
i2.move(operation=MoveOperation.COPY)
ai.set_art(newart)
mode = stat.S_IMODE(os.stat(syspath(ai.artpath)).st_mode)
self.assertTrue(mode & stat.S_IRGRP)
self.assertTrue(os.access(syspath(ai.artpath), os.W_OK))
finally:
# Make everything writable so it can be cleaned up.
os.chmod(syspath(newart), 0o777)
os.chmod(syspath(ai.artpath), 0o777)
def test_move_last_file_moves_albumart(self):
oldartpath = self.lib.albums()[0].artpath
self.assertExists(oldartpath)
self.ai.album = "different_album"
self.ai.store()
self.ai.items()[0].move()
artpath = self.lib.albums()[0].artpath
self.assertTrue(b"different_album" in artpath)
self.assertExists(artpath)
self.assertNotExists(oldartpath)
def test_move_not_last_file_does_not_move_albumart(self):
i2 = item()
i2.albumid = self.ai.id
self.lib.add(i2)
oldartpath = self.lib.albums()[0].artpath
self.assertExists(oldartpath)
self.i.album = "different_album"
self.i.album_id = None # detach from album
self.i.move()
artpath = self.lib.albums()[0].artpath
self.assertNotIn(b"different_album", artpath)
self.assertEqual(artpath, oldartpath)
self.assertExists(oldartpath)
class RemoveTest(_common.TestCase):
def setUp(self):
super().setUp()
# Make library and item.
self.lib = beets.library.Library(":memory:")
self.libdir = os.path.join(self.temp_dir, b"testlibdir")
self.lib.directory = self.libdir
self.i = item(self.lib)
self.i.path = self.i.destination()
# Make a music file.
util.mkdirall(self.i.path)
touch(self.i.path)
# Make an album with the item.
self.ai = self.lib.add_album((self.i,))
def test_removing_last_item_prunes_empty_dir(self):
parent = os.path.dirname(self.i.path)
self.assertExists(parent)
self.i.remove(True)
self.assertNotExists(parent)
def test_removing_last_item_preserves_nonempty_dir(self):
parent = os.path.dirname(self.i.path)
touch(os.path.join(parent, b"dummy.txt"))
self.i.remove(True)
self.assertExists(parent)
def test_removing_last_item_prunes_dir_with_blacklisted_file(self):
parent = os.path.dirname(self.i.path)
touch(os.path.join(parent, b".DS_Store"))
self.i.remove(True)
self.assertNotExists(parent)
def test_removing_without_delete_leaves_file(self):
path = self.i.path
self.i.remove(False)
self.assertExists(path)
def test_removing_last_item_preserves_library_dir(self):
self.i.remove(True)
self.assertExists(self.libdir)
def test_removing_item_outside_of_library_deletes_nothing(self):
self.lib.directory = os.path.join(self.temp_dir, b"xxx")
parent = os.path.dirname(self.i.path)
self.i.remove(True)
self.assertExists(parent)
def test_removing_last_item_in_album_with_albumart_prunes_dir(self):
artfile = os.path.join(self.temp_dir, b"testart.jpg")
touch(artfile)
self.ai.set_art(artfile)
self.ai.store()
parent = os.path.dirname(self.i.path)
self.i.remove(True)
self.assertNotExists(parent)
# Tests that we can "delete" nonexistent files.
class SoftRemoveTest(_common.TestCase):
def setUp(self):
super().setUp()
self.path = os.path.join(self.temp_dir, b"testfile")
touch(self.path)
def test_soft_remove_deletes_file(self):
util.remove(self.path, True)
self.assertNotExists(self.path)
def test_soft_remove_silent_on_no_file(self):
try:
util.remove(self.path + b"XXX", True)
except OSError:
self.fail("OSError when removing path")
class SafeMoveCopyTest(_common.TestCase):
def setUp(self):
super().setUp()
self.path = os.path.join(self.temp_dir, b"testfile")
touch(self.path)
self.otherpath = os.path.join(self.temp_dir, b"testfile2")
touch(self.otherpath)
self.dest = self.path + b".dest"
def test_successful_move(self):
util.move(self.path, self.dest)
self.assertExists(self.dest)
self.assertNotExists(self.path)
def test_successful_copy(self):
util.copy(self.path, self.dest)
self.assertExists(self.dest)
self.assertExists(self.path)
@unittest.skipUnless(_common.HAVE_REFLINK, "need reflink")
def test_successful_reflink(self):
util.reflink(self.path, self.dest)
self.assertExists(self.dest)
self.assertExists(self.path)
def test_unsuccessful_move(self):
with self.assertRaises(util.FilesystemError):
util.move(self.path, self.otherpath)
def test_unsuccessful_copy(self):
with self.assertRaises(util.FilesystemError):
util.copy(self.path, self.otherpath)
@unittest.skipUnless(_common.HAVE_REFLINK, "need reflink")
def test_unsuccessful_reflink(self):
with self.assertRaises(util.FilesystemError):
util.reflink(self.path, self.otherpath)
def test_self_move(self):
util.move(self.path, self.path)
self.assertExists(self.path)
def test_self_copy(self):
util.copy(self.path, self.path)
self.assertExists(self.path)
class PruneTest(_common.TestCase):
def setUp(self):
super().setUp()
self.base = os.path.join(self.temp_dir, b"testdir")
os.mkdir(syspath(self.base))
self.sub = os.path.join(self.base, b"subdir")
os.mkdir(syspath(self.sub))
def test_prune_existent_directory(self):
util.prune_dirs(self.sub, self.base)
self.assertExists(self.base)
self.assertNotExists(self.sub)
def test_prune_nonexistent_directory(self):
util.prune_dirs(os.path.join(self.sub, b"another"), self.base)
self.assertExists(self.base)
self.assertNotExists(self.sub)
class WalkTest(_common.TestCase):
def setUp(self):
super().setUp()
self.base = os.path.join(self.temp_dir, b"testdir")
os.mkdir(syspath(self.base))
touch(os.path.join(self.base, b"y"))
touch(os.path.join(self.base, b"x"))
os.mkdir(syspath(os.path.join(self.base, b"d")))
touch(os.path.join(self.base, b"d", b"z"))
def test_sorted_files(self):
res = list(util.sorted_walk(self.base))
self.assertEqual(len(res), 2)
self.assertEqual(res[0], (self.base, [b"d"], [b"x", b"y"]))
self.assertEqual(res[1], (os.path.join(self.base, b"d"), [], [b"z"]))
def test_ignore_file(self):
res = list(util.sorted_walk(self.base, (b"x",)))
self.assertEqual(len(res), 2)
self.assertEqual(res[0], (self.base, [b"d"], [b"y"]))
self.assertEqual(res[1], (os.path.join(self.base, b"d"), [], [b"z"]))
def test_ignore_directory(self):
res = list(util.sorted_walk(self.base, (b"d",)))
self.assertEqual(len(res), 1)
self.assertEqual(res[0], (self.base, [], [b"x", b"y"]))
def test_ignore_everything(self):
res = list(util.sorted_walk(self.base, (b"*",)))
self.assertEqual(len(res), 1)
self.assertEqual(res[0], (self.base, [], []))
class UniquePathTest(_common.TestCase):
def setUp(self):
super().setUp()
self.base = os.path.join(self.temp_dir, b"testdir")
os.mkdir(syspath(self.base))
touch(os.path.join(self.base, b"x.mp3"))
touch(os.path.join(self.base, b"x.1.mp3"))
touch(os.path.join(self.base, b"x.2.mp3"))
touch(os.path.join(self.base, b"y.mp3"))
def test_new_file_unchanged(self):
path = util.unique_path(os.path.join(self.base, b"z.mp3"))
self.assertEqual(path, os.path.join(self.base, b"z.mp3"))
def test_conflicting_file_appends_1(self):
path = util.unique_path(os.path.join(self.base, b"y.mp3"))
self.assertEqual(path, os.path.join(self.base, b"y.1.mp3"))
def test_conflicting_file_appends_higher_number(self):
path = util.unique_path(os.path.join(self.base, b"x.mp3"))
self.assertEqual(path, os.path.join(self.base, b"x.3.mp3"))
def test_conflicting_file_with_number_increases_number(self):
path = util.unique_path(os.path.join(self.base, b"x.1.mp3"))
self.assertEqual(path, os.path.join(self.base, b"x.3.mp3"))
class MkDirAllTest(_common.TestCase):
def test_parent_exists(self):
path = os.path.join(self.temp_dir, b"foo", b"bar", b"baz", b"qux.mp3")
util.mkdirall(path)
self.assertIsDir(os.path.join(self.temp_dir, b"foo", b"bar", b"baz"))
def test_child_does_not_exist(self):
path = os.path.join(self.temp_dir, b"foo", b"bar", b"baz", b"qux.mp3")
util.mkdirall(path)
self.assertNotExists(path)
def suite():
return unittest.TestLoader().loadTestsFromName(__name__)
if __name__ == "__main__":
unittest.main(defaultTest="suite")