linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ] test/test-mesh: Initialize required properties
@ 2019-07-25 18:31 Inga Stotland
  2019-07-26 16:20 ` Gix, Brian
  0 siblings, 1 reply; 2+ messages in thread
From: Inga Stotland @ 2019-07-25 18:31 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: brian.gix, Inga Stotland

This initialized required "Models" and "VendorModels" properties
wheher the actual models exist or not, according to the mesh-api.txt.
In case when an element does not contain either SIG defined models or
vendor defineed models, the corresponding properties should contain
empty arrays.
---
 test/test-mesh | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/test/test-mesh b/test/test-mesh
index 6e9196366..3c5ded7b3 100755
--- a/test/test-mesh
+++ b/test/test-mesh
@@ -537,10 +537,8 @@ class Element(dbus.service.Object):
 		sig_models = self._get_sig_models()
 
 		props = {'Index' : dbus.Byte(self.index)}
-		if len(sig_models) != 0:
-			props['Models'] = dbus.Array(sig_models, signature='q')
-		if len(vendor_models) != 0:
-			props['VendorModels'] = dbus.Array(vendor_models,
+		props['Models'] = dbus.Array(sig_models, signature='q')
+		props['VendorModels'] = dbus.Array(vendor_models,
 							signature='(qq)')
 		#print(props)
 		return { MESH_ELEMENT_IFACE: props }
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH BlueZ] test/test-mesh: Initialize required properties
  2019-07-25 18:31 [PATCH BlueZ] test/test-mesh: Initialize required properties Inga Stotland
@ 2019-07-26 16:20 ` Gix, Brian
  0 siblings, 0 replies; 2+ messages in thread
From: Gix, Brian @ 2019-07-26 16:20 UTC (permalink / raw)
  To: linux-bluetooth, Stotland, Inga

Applied

On Thu, 2019-07-25 at 11:31 -0700, Inga Stotland wrote:
> This initialized required "Models" and "VendorModels" properties
> wheher the actual models exist or not, according to the mesh-api.txt.
> In case when an element does not contain either SIG defined models or
> vendor defineed models, the corresponding properties should contain
> empty arrays.
> ---
>  test/test-mesh | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/test/test-mesh b/test/test-mesh
> index 6e9196366..3c5ded7b3 100755
> --- a/test/test-mesh
> +++ b/test/test-mesh
> @@ -537,10 +537,8 @@ class Element(dbus.service.Object):
>  		sig_models = self._get_sig_models()
>  
>  		props = {'Index' : dbus.Byte(self.index)}
> -		if len(sig_models) != 0:
> -			props['Models'] = dbus.Array(sig_models, signature='q')
> -		if len(vendor_models) != 0:
> -			props['VendorModels'] = dbus.Array(vendor_models,
> +		props['Models'] = dbus.Array(sig_models, signature='q')
> +		props['VendorModels'] = dbus.Array(vendor_models,
>  							signature='(qq)')
>  		#print(props)
>  		return { MESH_ELEMENT_IFACE: props }

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-26 16:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-25 18:31 [PATCH BlueZ] test/test-mesh: Initialize required properties Inga Stotland
2019-07-26 16:20 ` Gix, Brian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).