summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozdevice/sut_tests/test_pull.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mozbase/mozdevice/sut_tests/test_pull.py')
-rw-r--r--testing/mozbase/mozdevice/sut_tests/test_pull.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/mozbase/mozdevice/sut_tests/test_pull.py b/testing/mozbase/mozdevice/sut_tests/test_pull.py
new file mode 100644
index 000000000..753d8ddd5
--- /dev/null
+++ b/testing/mozbase/mozdevice/sut_tests/test_pull.py
@@ -0,0 +1,34 @@
+# 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
+from mozdevice.devicemanager import DMError
+
+
+class PullTestCase(DeviceManagerTestCase):
+
+ def runTest(self):
+ """Tests the "pull" command with a binary file.
+ """
+ orig = hashlib.md5()
+ new = hashlib.md5()
+ local_test_file = os.path.join('test-files', 'mybinary.zip')
+ orig.update(file(local_test_file, 'r').read())
+
+ testroot = self.dm.deviceRoot
+ remote_test_file = posixpath.join(testroot, 'mybinary.zip')
+ self.dm.removeFile(remote_test_file)
+ self.dm.pushFile(local_test_file, remote_test_file)
+ new.update(self.dm.pullFile(remote_test_file))
+ # Use hexdigest() instead of digest() since values are printed
+ # if assert fails
+ self.assertEqual(orig.hexdigest(), new.hexdigest())
+
+ remote_missing_file = posixpath.join(testroot, 'doesnotexist')
+ self.dm.removeFile(remote_missing_file) # Just to be sure
+ self.assertRaises(DMError, self.dm.pullFile, remote_missing_file)