gecko-dev/testing/mozbase/mozdevice/sut_tests/test_cat2.py

28 строки
1.0 KiB
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import hashlib
import os
import posixpath
from dmunit import DeviceManagerTestCase
class Cat2TestCase(DeviceManagerTestCase):
def runTest(self):
"""This tests copying a binary file to and from the device the binary.
File is > 64K.
"""
testroot = posixpath.join(self.dm.getDeviceRoot(), 'infratest')
self.dm.removeDir(testroot)
self.dm.mkDir(testroot)
origFile = open(os.path.join('test-files', 'mybinary.zip'), 'rb').read()
self.dm.pushFile(
os.path.join('test-files', 'mybinary.zip'),
posixpath.join(testroot, 'mybinary.zip'))
resultFile = self.dm.catFile(posixpath.join(testroot, 'mybinary.zip'))
self.assertEqual(hashlib.md5(origFile).hexdigest(),
hashlib.md5(resultFile).hexdigest())