mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-30 03:26:47 -05:00
893d0fa360
Also changes the tabs to spaces. Thanks pylint.
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
#!/usr/bin/python
|
|
|
|
# Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
# Licensed under the Apache License, version 2.0:
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
import os, os.path, shutil, tempfile, unittest
|
|
import copy
|
|
|
|
class TestCopy(unittest.TestCase):
|
|
def setUp(self):
|
|
self.tempdir = os.path.realpath(tempfile.mkdtemp())
|
|
|
|
|
|
def tearDown(self):
|
|
shutil.rmtree(self.tempdir, ignore_errors=True)
|
|
|
|
|
|
def test_CopyPeers(self):
|
|
nested = tempfile.mkdtemp(dir=self.tempdir)
|
|
otherNested = tempfile.mkdtemp(dir=self.tempdir)
|
|
|
|
def mkfile():
|
|
with tempfile.NamedTemporaryFile(dir=nested, delete=False) as f:
|
|
return f.name
|
|
|
|
me = mkfile()
|
|
peerFile = os.path.basename(mkfile())
|
|
peerDir = os.path.basename(tempfile.mkdtemp(dir=nested))
|
|
peerLink = 'link'
|
|
peerLinkAbs = os.path.join(nested, 'link')
|
|
os.symlink(peerFile, peerLinkAbs)
|
|
|
|
copy.Peers(me, otherNested)
|
|
self.assertTrue(os.path.islink(os.path.join(otherNested, peerLink)))
|
|
self.assertTrue(os.path.isfile(os.path.join(otherNested, peerFile)))
|
|
self.assertTrue(os.path.isdir(os.path.join(otherNested, peerDir)))
|
|
self.assertFalse(os.path.lexists(os.path.join(otherNested, os.path.basename(me))))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|