summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozdevice/sut_tests/test_pull.py
blob: 753d8ddd5347a864b39ee1ce205c235fc6c84f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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)