Diff between 5f8e548ca93a138d768c3682d707448d075e54b4 and bf1299b6950a402d27f302f2f0531384d4834375

Changed Files

File Additions Deletions Status
test/test-profile +58 -1 modified

Full Patch

diff --git a/test/test-profile b/test/test-profile
index 46879d0..5a3f955 100755
--- a/test/test-profile
+++ b/test/test-profile
@@ -11,6 +11,52 @@ import dbus.service
 import dbus.mainloop.glib
 from optparse import OptionParser, make_option
 
+hfp_record = """
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<record>
+	<attribute id="0x0000">
+		<uint32 value="0x00010002" />
+	</attribute>
+	<attribute id="0x0001">
+		<sequence>
+			<uuid value="0x111e" />
+			<uuid value="0x1203" />
+		</sequence>
+	</attribute>
+	<attribute id="0x0004">
+		<sequence>
+			<sequence>
+				<uuid value="0x0100" />
+			</sequence>
+			<sequence>
+				<uuid value="0x0003" />
+				<uint8 value="0x07" />
+			</sequence>
+		</sequence>
+	</attribute>
+	<attribute id="0x0005">
+		<sequence>
+			<uuid value="0x1002" />
+		</sequence>
+	</attribute>
+	<attribute id="0x0009">
+		<sequence>
+			<sequence>
+				<uuid value="0x111e" />
+				<uint16 value="0x0105" />
+			</sequence>
+		</sequence>
+	</attribute>
+	<attribute id="0x0100">
+		<text value="Handsfree" />
+	</attribute>
+	<attribute id="0x0311">
+		<uint16 value="0x0031" />
+	</attribute>
+</record>
+"""
+
 class Profile(dbus.service.Object):
 	@dbus.service.method("org.bluez.Profile1",
 					in_signature="", out_signature="")
@@ -63,7 +109,10 @@ if __name__ == '__main__':
 			make_option("-P", "--PSM", action="store",
 					type="int", dest="psm"),
 			make_option("-C", "--channel", action="store",
-					type="int", dest="channel")
+					type="int", dest="channel"),
+			make_option("-r", "--record", action="store",
+					type="string", dest="record",
+					default=None),
 			]
 
 	parser = OptionParser(option_list=option_list)
@@ -74,6 +123,11 @@ if __name__ == '__main__':
 
 	mainloop = GObject.MainLoop()
 
+	if options.uuid == "hfp":
+		options.channel = 7
+		options.record = hfp_record
+		options.name = "HFP HandsFree"
+
 	opts = {
 			"Name" :	options.name,
 			"AutoConnect" :	options.auto_connect,
@@ -88,6 +142,9 @@ if __name__ == '__main__':
 	if (options.channel):
 		opts["Channel"] = dbus.UInt16(options.channel)
 
+	if (options.record):
+		opts["ServiceRecord"] = options.record
+
 	manager.RegisterProfile(options.path, options.uuid, opts)
 
 	mainloop.run()