2011-03-10 09:55:46 +00:00
|
|
|
import unittest
|
|
|
|
import os
|
|
|
|
from os import path as op
|
2011-03-13 18:43:24 +00:00
|
|
|
import send2trash.plat_other
|
|
|
|
from send2trash.plat_other import send2trash as s2t
|
2011-03-10 09:55:46 +00:00
|
|
|
from configparser import ConfigParser
|
2011-03-13 19:17:13 +00:00
|
|
|
from tempfile import mkdtemp, NamedTemporaryFile, mktemp
|
2011-03-13 18:43:24 +00:00
|
|
|
import shutil
|
|
|
|
import stat
|
|
|
|
# Could still use cleaning up. But no longer relies on ramfs.
|
2011-03-12 10:48:19 +00:00
|
|
|
|
2011-03-13 18:43:24 +00:00
|
|
|
def touch(path):
|
|
|
|
with open(path, 'a'):
|
|
|
|
os.utime(path, None)
|
2011-03-12 10:48:19 +00:00
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
class TestHomeTrash(unittest.TestCase):
|
|
|
|
def setUp(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
self.file = NamedTemporaryFile(dir=op.expanduser("~"),
|
|
|
|
prefix='send2trash_test', delete=False)
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
def test_trash(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
s2t(self.file.name)
|
|
|
|
self.assertFalse(op.exists(self.file.name))
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
hometrash = send2trash.plat_other.HOMETRASH
|
|
|
|
name = op.basename(self.file.name)
|
|
|
|
os.remove(op.join(hometrash, 'files', name))
|
|
|
|
os.remove(op.join(hometrash, 'info', name+'.trashinfo'))
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
#
|
2011-03-13 18:43:24 +00:00
|
|
|
# Tests for files on some other volume than the user's home directory.
|
|
|
|
#
|
|
|
|
# What we need to stub:
|
|
|
|
# * plat_other.get_dev (to make sure the file will not be on the home dir dev)
|
|
|
|
# * os.path.ismount (to make our topdir look like a top dir)
|
2011-03-10 09:55:46 +00:00
|
|
|
#
|
2011-03-13 18:43:24 +00:00
|
|
|
class TestExtVol(unittest.TestCase):
|
2011-03-10 09:55:46 +00:00
|
|
|
def setUp(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
self.trashTopdir = mkdtemp(prefix='s2t')
|
2011-03-10 09:55:46 +00:00
|
|
|
self.fileName = 'test.txt'
|
2011-03-13 18:43:24 +00:00
|
|
|
self.filePath = op.join(self.trashTopdir, self.fileName)
|
|
|
|
touch(self.filePath)
|
|
|
|
|
|
|
|
self.old_ismount = old_ismount = op.ismount
|
|
|
|
self.old_getdev = send2trash.plat_other.get_dev
|
|
|
|
def s_getdev(path):
|
|
|
|
from send2trash.plat_other import is_parent
|
|
|
|
st = os.lstat(path)
|
|
|
|
if is_parent(self.trashTopdir, path):
|
|
|
|
return 'dev'
|
|
|
|
return st
|
|
|
|
def s_ismount(path):
|
|
|
|
if op.realpath(path) == op.realpath(self.trashTopdir):
|
|
|
|
return True
|
|
|
|
return old_ismount(path)
|
|
|
|
|
|
|
|
send2trash.plat_other.os.path.ismount = s_ismount
|
|
|
|
send2trash.plat_other.get_dev = s_getdev
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
send2trash.plat_other.get_dev = self.old_getdev
|
|
|
|
send2trash.plat_other.os.path.ismount = self.old_ismount
|
|
|
|
shutil.rmtree(self.trashTopdir)
|
2011-03-10 09:55:46 +00:00
|
|
|
|
2011-03-13 18:43:24 +00:00
|
|
|
class TestTopdirTrash(TestExtVol):
|
2011-03-10 09:55:46 +00:00
|
|
|
def setUp(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
TestExtVol.setUp(self)
|
2011-03-10 09:55:46 +00:00
|
|
|
# Create a .Trash dir w/ a sticky bit
|
2011-03-13 18:43:24 +00:00
|
|
|
self.trashDir = op.join(self.trashTopdir, '.Trash')
|
|
|
|
os.mkdir(self.trashDir, 0o777|stat.S_ISVTX)
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
def test_trash(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
s2t(self.filePath)
|
2011-03-10 09:55:46 +00:00
|
|
|
self.assertFalse(op.exists(self.filePath))
|
2011-03-13 18:43:24 +00:00
|
|
|
self.assertTrue(op.exists(op.join(self.trashDir, str(os.getuid()), 'files', self.fileName)))
|
|
|
|
self.assertTrue(op.exists(op.join(self.trashDir, str(os.getuid()), 'info', self.fileName + '.trashinfo')))
|
2011-03-10 09:55:46 +00:00
|
|
|
# info relative path (if another test is added, with the same fileName/Path,
|
|
|
|
# then it gets renamed etc.)
|
|
|
|
cfg = ConfigParser()
|
2011-03-13 18:43:24 +00:00
|
|
|
cfg.read(op.join(self.trashDir, str(os.getuid()), 'info', self.fileName + '.trashinfo'))
|
2011-03-10 09:55:46 +00:00
|
|
|
self.assertEqual(self.fileName, cfg.get('Trash Info', 'Path', 1))
|
|
|
|
|
|
|
|
# Test .Trash-UID
|
2011-03-13 18:43:24 +00:00
|
|
|
class TestTopdirTrashFallback(TestExtVol):
|
2011-03-10 09:55:46 +00:00
|
|
|
def test_trash(self):
|
2011-03-13 18:43:24 +00:00
|
|
|
touch(self.filePath)
|
|
|
|
s2t(self.filePath)
|
2011-03-10 09:55:46 +00:00
|
|
|
self.assertFalse(op.exists(self.filePath))
|
2011-03-13 18:43:24 +00:00
|
|
|
self.assertTrue(op.exists(op.join(self.trashTopdir, '.Trash-' + str(os.getuid()), 'files', self.fileName)))
|
2011-03-10 09:55:46 +00:00
|
|
|
|
|
|
|
# Test failure
|
2011-03-13 18:43:24 +00:00
|
|
|
class TestTopdirFailure(TestExtVol):
|
|
|
|
def setUp(self):
|
|
|
|
TestExtVol.setUp(self)
|
|
|
|
os.chmod(self.trashTopdir, 0o500) # not writable to induce the exception
|
2011-03-10 09:55:46 +00:00
|
|
|
|
2011-03-13 18:43:24 +00:00
|
|
|
def test_trash(self):
|
2011-03-10 09:55:46 +00:00
|
|
|
with self.assertRaises(OSError):
|
2011-03-13 18:43:24 +00:00
|
|
|
s2t(self.filePath)
|
2011-03-10 09:55:46 +00:00
|
|
|
self.assertTrue(op.exists(self.filePath))
|
|
|
|
|
2011-03-13 18:43:24 +00:00
|
|
|
def tearDown(self):
|
|
|
|
os.chmod(self.trashTopdir, 0o700) # writable to allow deletion
|
|
|
|
TestExtVol.tearDown(self)
|
|
|
|
|
2011-03-13 19:17:13 +00:00
|
|
|
# Make sure it will find the mount point properly for a file in a symlinked path
|
|
|
|
class TestSymlink(TestExtVol):
|
|
|
|
def setUp(self):
|
|
|
|
TestExtVol.setUp(self)
|
|
|
|
# Use mktemp (race conditioney but no symlink equivalent)
|
|
|
|
# Since is_parent uses realpath(), and our getdev uses is_parent,
|
|
|
|
# this should work
|
|
|
|
self.slDir = mktemp(prefix='s2t', dir=op.expanduser('~'))
|
2011-03-13 19:35:14 +00:00
|
|
|
|
|
|
|
os.mkdir(op.join(self.trashTopdir, 'subdir'), 0o700)
|
|
|
|
self.filePath = op.join(self.trashTopdir, 'subdir', self.fileName)
|
|
|
|
touch(self.filePath)
|
|
|
|
os.symlink(op.join(self.trashTopdir, 'subdir'), self.slDir)
|
2011-03-13 19:17:13 +00:00
|
|
|
|
|
|
|
def test_trash(self):
|
|
|
|
s2t(op.join(self.slDir, self.fileName))
|
|
|
|
self.assertFalse(op.exists(self.filePath))
|
2011-03-13 19:35:14 +00:00
|
|
|
self.assertTrue(op.exists(op.join(self.trashTopdir, '.Trash-' + str(os.getuid()), 'files', self.fileName)))
|
2011-03-13 19:17:13 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
os.remove(self.slDir)
|
|
|
|
TestExtVol.tearDown(self)
|
|
|
|
|
2011-03-10 09:55:46 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|