Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | |
michael@0 | 5 | import os |
michael@0 | 6 | import posixpath |
michael@0 | 7 | |
michael@0 | 8 | from dmunit import DeviceManagerTestCase |
michael@0 | 9 | |
michael@0 | 10 | class Push1TestCase(DeviceManagerTestCase): |
michael@0 | 11 | |
michael@0 | 12 | def runTest(self): |
michael@0 | 13 | """This tests copying a directory structure to the device. |
michael@0 | 14 | """ |
michael@0 | 15 | dvroot = self.dm.getDeviceRoot() |
michael@0 | 16 | dvpath = posixpath.join(dvroot, 'infratest') |
michael@0 | 17 | self.dm.removeDir(dvpath) |
michael@0 | 18 | self.dm.mkDir(dvpath) |
michael@0 | 19 | |
michael@0 | 20 | p1 = os.path.join('test-files', 'push1') |
michael@0 | 21 | # Set up local stuff |
michael@0 | 22 | try: |
michael@0 | 23 | os.rmdir(p1) |
michael@0 | 24 | except: |
michael@0 | 25 | pass |
michael@0 | 26 | |
michael@0 | 27 | if not os.path.exists(p1): |
michael@0 | 28 | os.makedirs(os.path.join(p1, 'sub.1', 'sub.2')) |
michael@0 | 29 | if not os.path.exists(os.path.join(p1, 'sub.1', 'sub.2', 'testfile')): |
michael@0 | 30 | file(os.path.join(p1, 'sub.1', 'sub.2', 'testfile'), 'w').close() |
michael@0 | 31 | |
michael@0 | 32 | self.dm.pushDir(p1, posixpath.join(dvpath, 'push1')) |
michael@0 | 33 | |
michael@0 | 34 | self.assertTrue( |
michael@0 | 35 | self.dm.dirExists(posixpath.join(dvpath, 'push1', 'sub.1'))) |
michael@0 | 36 | self.assertTrue(self.dm.dirExists( |
michael@0 | 37 | posixpath.join(dvpath, 'push1', 'sub.1', 'sub.2'))) |