हमारा सुझाव है कि 27 मार्च, 2025 से AOSP को बनाने और उसमें योगदान देने के लिए, aosp-main
के बजाय android-latest-release
का इस्तेमाल करें. ज़्यादा जानकारी के लिए, AOSP में हुए बदलाव लेख पढ़ें.
TF में डिवाइसों के साथ काम करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Trade Federation, जांच करने के लिए ITestDevice
नाम के एब्स्ट्रैक्शन का इस्तेमाल करता है. यह एब्स्ट्रैक्शन, सबसे कम कॉमन डिनोमिनेटर वाले Android डिवाइस को ऑब्जेक्ट बनाता है:
- उसमें सीरियल नंबर हो
- इसका स्टेटस: ऑनलाइन, उपलब्ध, रिकवरी या उपलब्ध नहीं है
- इसमें भरोसेमंद होने की कोई धारणा होती है. उदाहरण के लिए, अगर हम कोई निर्देश देते हैं, तो हम इस बात का पता लगा सकते हैं कि निर्देश पूरा हो गया है या नहीं, डिवाइस पर निर्देश देने की सुविधा काम कर रही है या नहीं, और निर्देश देने के दौरान डिवाइस काम कर रहा है या नहीं.
डिवाइस क्लास
ITestDevice
के तीन मुख्य तरीके, इसके तीन सामान्य इस्तेमाल के उदाहरण हैं.
फ़िज़िकल डिवाइस
यह एक असल हार्डवेयर है, जो यूएसबी या फिर adb की टीसीपी सुविधा का इस्तेमाल करके, TF होस्ट मशीन से कनेक्ट होता है. TestDevice क्लास, ddmlib लाइब्रेरी के ऊपर होती है. यह adb का Java इंटरफ़ेस है. इसलिए, adb devices
में दिए गए किसी भी डिवाइस को इंस्टैंशिएट किया जा सकता है और उसका इस्तेमाल TestDevice
के तौर पर किया जा सकता है.
एम्युलेटर
एमुलेटर को खास तौर पर TF मैनेज करता है, क्योंकि वे किसी दूसरी प्रोसेस में मौजूद होते हैं. किसी एमुलेटर के साथ इंटरैक्ट करने के लिए, निर्देश के लिए --emulator
आर्ग्युमेंट तय करें. ज़्यादा जानकारी के लिए,
LocalSdkBuildProvider और
SdkAvdPreparer देखें.
कोई डिवाइस नहीं
मान लें कि आपके पास ऐसा टेस्ट है जो किसी डिवाइस के साथ इंटरैक्ट नहीं करता. उदाहरण के लिए, हो सकता है कि यह किसी सेवा से सिर्फ़ फ़ाइल डाउनलोड करे और पुष्टि करे कि फ़ाइल मान्य है या नहीं. NullDevice एक ऐसा ITestDevice
है जो सिर्फ़ एक स्टब है. इसका सीरियल नंबर null-device-N
जैसा होता है. साथ ही, ज़्यादातर ऑपरेशन या तो बिना किसी कार्रवाई के पूरे हो जाते हैं या फिर गड़बड़ी का मैसेज दिखाते हैं.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Work with devices in TF\n\nTrade Federation uses an abstraction called\n[ITestDevice](/reference/com/android/tradefed/device/ITestDevice) to\nrun tests. This abstraction objectifies the lowest-common-denominator Android device:\n\n- It has a serial number\n- It has a state: Online, Available, Recovery, or Not Available\n- It has some notion of reliability. For instance, if we run a command, we can differentiate between the case where the command hasn't finished yet, the case where the device doesn't support running commands, and the case where the device has become unresponsive while running the command.\n\nDevice classes\n--------------\n\nThe three primary implementations of `ITestDevice` represent three common\nusecases.\n\n### Physical device\n\nThis is an actual piece of hardware, connected to the TF host machine either by USB, or by using\nadb's TCP feature. The [TestDevice](/reference/com/android/tradefed/device/TestDevice) class sits atop the ddmlib library, which is a Java interface to adb. So any\nphysical device listed in `adb devices` can be instantiated and used as a\n`TestDevice`.\n\n### Emulator\n\nEmulators are handled specially by TF because they live in another process. To interact with an\nEmulator, specify the `--emulator` argument for the command. See\n[LocalSdkBuildProvider](/reference/com/android/tradefed/build/LocalSdkBuildProvider) and\n[SdkAvdPreparer](/reference/com/android/tradefed/targetprep/SdkAvdPreparer) for more info.\n\n### No device\n\nSuppose you have a test that doesn't interact with a device at all. For instance, it might just\ndownload a file from some service and verify that the file itself is valid. The\n[NullDevice](/reference/com/android/tradefed/device/NullDevice) is an `ITestDevice` that is just a stub. It has a serial number like\n`null-device-N`, and most attempted operations either no-op silently or throw."]]