-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show standard clusters when custom device types are added from custom…
… xml (#1359) - Adding standalone packages without considering package category - Making sure that invalid session Packages are handled properly - Making sure that sessionPartitionIndex is updated when pacakges are not loaded in the db. Also making sure they are not look into for invalidSessionPkgs since they are already verified for existence - Adding tests to make sure custom device types are being loaded from custom xml - JIRA: ZAPP-1450
- Loading branch information
Showing
6 changed files
with
99 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<configurator> | ||
<deviceType> | ||
<name>DUT-Client</name> | ||
<domain>CUSTOM_DUT</domain> | ||
<typeName>D.U.T. Client</typeName> | ||
<zigbeeType>Coordinator</zigbeeType> | ||
<profileId editable="false">0xC001</profileId> | ||
<deviceId editable="false">0x0001</deviceId> | ||
<clusters lockOthers="true"> | ||
<include client="true" server="false" clientLocked="true" serverLocked="true" >Test Cluster</include> | ||
<include cluster="Basic" client="true" server="false" clientLocked="true" serverLocked="true"></include> | ||
</clusters> | ||
</deviceType> | ||
<deviceType> | ||
<name>DUT-Server</name> | ||
<domain>CUSTOM_DUT</domain> | ||
<typeName>D.U.T. Server</typeName> | ||
<zigbeeType>End Device</zigbeeType> | ||
<profileId editable="false">0xC001</profileId> | ||
<deviceId editable="false">0x0002</deviceId> | ||
<clusters lockOthers="true"> | ||
<include client="false" server="true" clientLocked="true" serverLocked="true" >Test Cluster</include> | ||
<include cluster="Basic" client="false" server="true" clientLocked="true" serverLocked="true"></include> | ||
</clusters> | ||
</deviceType> | ||
</configurator> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters