54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
#
|
|
# Copyright (C) 2017 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
import android_device
|
|
import json
|
|
import unittest
|
|
|
|
_DATA_NAME = 'dataName'
|
|
_DATA_TYPE = 'dataType'
|
|
_DATA_FILE = 'dataFile'
|
|
|
|
class _TradefedTestClass(unittest.TestCase):
|
|
""" A base test class to extends to receive a device object for testing in python
|
|
|
|
All tests should extends this class to be properly supported by Tradefed.
|
|
"""
|
|
|
|
def setUpDevice(self, serial, stream, options):
|
|
""" Setter method that will allow the test to receive the device object
|
|
|
|
Args:
|
|
serial: The serial of the device allocated for the test.
|
|
stream: The output stream.
|
|
options: Additional options given to the tests that can be used.
|
|
"""
|
|
self.serial = serial
|
|
self.stream = stream
|
|
self.extra_options = options
|
|
self.android_device = android_device.AndroidTestDevice(serial, stream)
|
|
|
|
def logFileToTradefed(self, name, filePath, fileType):
|
|
""" Callback to log a file that will be picked up by Tradefed.
|
|
|
|
Args:
|
|
name: The name under which log the particular data.
|
|
filePath: Absolute file path of the file to be logged.
|
|
fileType: The type of the file. (TEXT, PNG, etc.)
|
|
"""
|
|
resp = {_DATA_NAME: name, _DATA_TYPE: fileType, _DATA_FILE: filePath}
|
|
self.stream.write('TEST_LOG %s\n' % json.dumps(resp))
|