summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* test/simple-endpoint: Fix ClearConfiguration signatureLuiz Augusto von Dentz2016-05-301-3/+3
|
* test: Update GATT examples with the new APILuiz Augusto von Dentz2016-05-183-50/+172
|
* tests/example-gatt-client: Fix using invalid propertyLuiz Augusto von Dentz2016-03-241-20/+22
| | | | | | | | | | | | | | This fixes the following trace caused by GattServices1 no longer containing a property called Characteristics: Traceback (most recent call last): File "./example-gatt-client", line 221, in <module> main() File "./example-gatt-client", line 207, in main if not process_hr_service(service_path): File "./example-gatt-client", line 167, in process_hr_service chrc_paths = service_props['Characteristics'] KeyError: 'Characteristics'
* test/example-gatt-server: Don't order objectsLuiz Augusto von Dentz2016-03-071-2/+1
| | | | | | This tests if the code is actually handling registration with objects out of order which seems very common practice with ObjectManager implementation.
* test: Fix scripts to run with python 3Kurt McAlpine2016-02-262-13/+20
|
* test: Add device discovery filterGowtham Anandha Babu2016-01-191-0/+32
| | | | | | This patch adds the below mentioned device discovery filters. UUIDs, RSSI, Pathloss, Transport.
* test/example-gatt-server: Make use of RegisterApplicationLuiz Augusto von Dentz2016-01-071-31/+41
| | | | This updates example-gatt-server to use RegisterApplication.
* test: Fix ftp-client not printing progressGowtham Anandha Babu2015-12-041-3/+5
| | | | This patch fixes the keyError while printing transfer progress.
* test/test-discovery: Remove dead codeƁukasz Rymanowski2015-11-171-8/+0
| | | | | | PropertyChanged is left over from BlueZ 4.x now it is PropertiesChanged. However in this test it does not make sense to register for this signal as StopDiscovery is never called from this test.
* test: Add test-gatt-profileLuiz Augusto von Dentz2015-09-031-0/+60
| | | | | test-gatt-profile can be used to register a GATT based profile using GattManager1 interface.
* audio/avrcp: Add player name supportBharat Panda2015-08-311-0/+1
| | | | Add support to player name mapping it to Identity property from MPRIS.
* tests/example-advertisement: Change type to peripheralLuiz Augusto von Dentz2015-05-221-1/+1
| | | | | With broadcast type it won't be connectable which is much more convenient when testing.
* test/example-gatt-server: Add encrypt attributesLuiz Augusto von Dentz2015-04-281-2/+50
| | | | This adds new attributes that requires encryption for TestService.
* test/example-advertisement: Use IncludeTxPowerArman Uguray2015-04-231-1/+1
| | | | | This patch changes the example-advertisement script to use IncludeTxPower rather than IncludeTXPower.
* test: add IncludeTXPower to example-advertisementMichael Janssen2015-04-161-0/+4
|
* test/test-nap: Run indefinitelyLuiz Augusto von Dentz2015-04-071-7/+10
| | | | This makes test-nap run indefinitely until ctrl+c is pressed.
* test: improvements to example-advertisementMichael Janssen2015-04-071-4/+8
| | | | | | | | | Improves the example-advertisement script in two ways: It uses 16-bit service UUIDs so that it does not overflow the Advertisement Data It turns the adapter's power on so that it works out of the box.
* test: Add Python GATT client exampleArman Uguray2015-04-011-0/+218
| | | | | This patch introduces test/example-gatt-client which implements a simple D-Bus client application for a remote Heart Rate service.
* test/example-gatt-server: Align string constantsArman Uguray2015-04-011-4/+4
| | | | Aligned the string constants for better readability.
* test/example-gatt-server: Use parens. with printArman Uguray2015-03-311-23/+23
| | | | Added parenthesese around print statements to conform to Python 3.
* test: Reorganize LE Python example scriptsArman Uguray2015-03-312-0/+533
| | | | | | | | | This patch moves tools/gatt-example to test/ and renames it to example-gatt-server in preparation for example-gatt-client. The same naming convention (example-*) is also adopted for test/advertisement-example, so it's now called test/example-advertisement. Also, both scripts now have the execute set appropriately to be consistent with the other Python scripts.
* build: Move advertisement-example script into test directoryMarcel Holtmann2015-03-281-0/+170
|
* test/pbap-client: Add support to fetch spd,fav PBGowtham Anandha Babu2015-02-051-1/+1
| | | | | Adds support to fetch spd,fav phonebook. Tested using PTS test case TC_PCE_PBB_BV_01_C.
* test/simple-player: Fix parameter typesLuiz Augusto von Dentz2014-09-221-3/+3
|
* test: Allow to pass custom DataType to test-health-sinkSzymon Janc2014-07-031-1/+5
|
* test: Fix getting devices in health test scriptsSzymon Janc2014-07-032-2/+22
|
* tools: Remove simple-serviceLuiz Augusto von Dentz2014-04-221-128/+0
| | | | | simple-service no longer works since the API it uses no longer exists and Profile API already has a similar tool.
* test: Fix cyclingspeed manager interface nameAndrzej Kaczmarek2014-03-191-1/+1
|
* test: Add missing import in cyclingspeedAndrzej Kaczmarek2014-03-191-0/+1
|
* build: Move gatt-service test utility into tools directoryMarcel Holtmann2014-03-061-267/+0
|
* test: Add registering external serviceClaudio Takahasi2014-03-061-0/+67
| | | | | This patch extends gatt-service to call RegisterService() when org.bluez service gets connected to the system bus.
* test: Add signal handling for gatt-serviceClaudio Takahasi2014-03-061-0/+79
| | | | | This patch implements signal handling to run cleanup tasks before exiting.
* test: Add external service GATT skeletonClaudio Takahasi2014-03-061-0/+121
| | | | | This patch adds the initial code for an external GATT service example. It implements the API defined at doc/gatt-api.txt
* test: Python import cleanupPetri Gynther2014-01-1824-83/+133
| | | | | | | | | | | | | 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
* test/test-hfp: Fix passing missing backlog parameter to sco.listen()Johan Hedberg2013-09-291-1/+1
|
* test/test-nap: Fix interface nameLuiz Augusto von Dentz2013-08-211-1/+1
|
* test: Fix ProximityMonitor1 interface name typo in test-proximityAnderson Lizardo2013-07-261-1/+1
|
* cyclingspeed: Fix MultipleLocationsSupported property name usageAnderson Lizardo2013-07-231-2/+2
| | | | | MultipleLocationsSupported is the correct property name, as implemented in profiles/cyclingspeed/cyclingspeed.c.
* test/ftp-client: Fix syntax error for python 3.0Emilio Pozuelo Monfort2013-05-171-1/+1
|
* test: Fix opp-client not printing progressLuiz Augusto von Dentz2013-04-171-5/+7
| | | | This avoid KeyError expection and fixes print usage.
* test: Add -p/--push option to map-clientLuiz Augusto von Dentz2013-02-071-2/+11
| | | | | This option can be used to push messages, it takes as a parameter a file location which should contain the message in bmsg format.
* test: Fix missing call to parser.parse_args() in test-proximityJohan Hedberg2013-02-041-0/+2
|
* test: Use a 60-second timeout for pairingJohan Hedberg2013-01-251-1/+2
|
* tools: Fix pbap-client to use new print syntaxLuiz Augusto von Dentz2013-01-231-9/+9
|
* tools: Fix map-client to use new print syntaxLuiz Augusto von Dentz2013-01-141-1/+1
| | | | | | | print now requires () on newer python: File "./map-client", line 101 print err ^
* test: Update test-player to register using MPRIS interfaceLuiz Augusto von Dentz2013-01-101-14/+21
|
* test: Adapt simple-player to the new API of MediaPlayer1Luiz Augusto von Dentz2013-01-101-44/+18
|
* test: Update test-adapter to deal with the new Alias propertyJohan Hedberg2013-01-041-4/+10
|
* test: Make OBEX related scripts python 3 compatibleLuiz Augusto von Dentz2012-12-215-33/+49
|
* test: Port simple-obex-agent to the new APILuiz Augusto von Dentz2012-12-211-70/+9
|