summaryrefslogtreecommitdiff
path: root/test/test-health
Commit message (Collapse)AuthorAgeFilesLines
* test: changes for Python3Diego Rondini2022-04-191-2/+2
| | | | | | | Remove some leftover usage of Python2 code. In particular replace iteritems() with items() to fix the following error: AttributeError: 'dbus.Dictionary' object has no attribute 'iteritems'
* test: Add SPDX License IdentifierTedd Ho-Jeong An2020-09-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- LGPL-2.1-or-later : 35 License: LGPL-2.1-or-later test/agent.py test/bluezutils.py test/dbusdef.py test/example-advertisement test/example-endpoint test/example-gatt-client test/example-gatt-server test/example-player test/exchange-business-cards test/ftp-client test/get-managed-objects test/get-obex-capabilities test/list-devices test/list-folders test/map-client test/monitor-bluetooth test/opp-client test/pbap-client test/sap_client.py test/simple-endpoint test/simple-obex-agent test/simple-player test/test-adapter test/test-device test/test-discovery test/test-gatt-profile test/test-health test/test-health-sink test/test-hfp test/test-manager test/test-mesh test/test-nap test/test-network test/test-profile test/test-sap-server
* test: Fix getting devices in health test scriptsSzymon Janc2014-07-031-1/+11
|
* test: Python import cleanupPetri Gynther2014-01-181-4/+7
| | | | | | | | | | | | | Some test scripts use "from gi.repository import GObject" whereas others use "import gobject". gi.repository is not always available on embedded systems, so convert all instances to this format: try: from gi.repository import GObject except ImportError: import gobject as GObject Also, sort the imports in this order: system, dbus, gobject, bluezutils
* health: Use lower-case strings for enum values (for consistency)Johan Hedberg2012-12-211-8/+8
|
* health: Append version to Health interfacesLuiz Augusto von Dentz2012-12-141-10/+15
|
* dbus: Rename to org.bluez.Adapter1Mikel Astiz2012-12-051-2/+2
| | | | | Trivially add the numbering suffix to org.bluez.Adapter according to the proposal for BlueZ 5.
* test: Use ObjectManager instead of Adapters propertyMikel Astiz2012-12-051-2/+7
| | | | | Use the objects and interfaces reported by the ObjectManager in order to list the available adapters.
* manager: remove deprecated ListAdapters() methodGustavo Padovan2012-07-041-1/+1
|
* adapter: remove deprecated ListDevices() methodGustavo Padovan2012-07-041-1/+1
|
* Update tests to be compatible with gi and python3Steve Langasek2012-06-151-30/+32
| | | | | | | | | This patch makes the python tests source-compatible with python 3, while leaving the interpreter at python 2 for now. The tradeoff is that this source is no longer compatible with python versions < 2.6, and requires gobject-introspection for the glib-based tests.
* Fix common misspelled wordsLucas De Marchi2011-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Accounting of misspelled words, as detected by codespell: acording 2 ancilliary 1 appropiate 1 atribute 1 cant 1 comming 2 gracefull 1 lenght 1 mispelled 1 occured 1 occurences 1 ocurred 3 prefered 1 presense 1 reponse 1 seperate 1 succesful 1 successully 1 sucessfull 1 sucessfully 1
* Modify test-health script to make it more interactiveJose Antonio Santos Cadenas2010-10-211-7/+200
|
* Update test script and create a new oneJose Antonio Santos Cadenas2010-10-061-1/+1
|
* Add simple test for health pluginSantiago Carot-Nemesio2010-09-171-0/+24