-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add kotlin IM read test and enable im test in CI (#25636)
- Loading branch information
1 parent
d606c48
commit 2442962
Showing
7 changed files
with
149 additions
and
7 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
82 changes: 82 additions & 0 deletions
82
...troller/java/src/com/matter/controller/commands/pairing/PairOnNetworkLongImReadCommand.kt
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,82 @@ | ||
package com.matter.controller.commands.pairing | ||
|
||
import chip.devicecontroller.ChipDeviceController | ||
import chip.devicecontroller.GetConnectedDeviceCallbackJni.GetConnectedDeviceCallback | ||
import chip.devicecontroller.ReportCallback | ||
import chip.devicecontroller.model.NodeState | ||
import chip.devicecontroller.model.ChipAttributePath | ||
import chip.devicecontroller.model.ChipEventPath | ||
import com.matter.controller.commands.common.CredentialsIssuer | ||
import java.util.Collections | ||
import java.util.logging.Level | ||
import java.util.logging.Logger | ||
|
||
class PairOnNetworkLongImReadCommand( | ||
controller: ChipDeviceController, credsIssue: CredentialsIssuer? | ||
) : PairingCommand( | ||
controller, | ||
"onnetwork-long-im-read", | ||
credsIssue, | ||
PairingModeType.ON_NETWORK, | ||
PairingNetworkType.NONE, | ||
DiscoveryFilterType.LONG_DISCRIMINATOR | ||
) { | ||
private var devicePointer: Long = 0 | ||
|
||
private inner class InternalReportCallback : ReportCallback { | ||
override fun onError(attributePath: ChipAttributePath?, eventPath: ChipEventPath?, e: Exception) { | ||
logger.log(Level.INFO, "Read receive onError") | ||
setFailure("read failure") | ||
} | ||
|
||
override fun onReport(nodeState: NodeState) { | ||
logger.log(Level.INFO, "Read receve onReport") | ||
setSuccess() | ||
} | ||
|
||
} | ||
|
||
private inner class InternalGetConnectedDeviceCallback : GetConnectedDeviceCallback { | ||
override fun onDeviceConnected(devicePointer: Long) { | ||
this@PairOnNetworkLongImReadCommand.devicePointer = devicePointer | ||
logger.log(Level.INFO, "onDeviceConnected") | ||
} | ||
|
||
override fun onConnectionFailure(nodeId: Long, error: Exception?) { | ||
logger.log(Level.INFO, "onConnectionFailure") | ||
} | ||
} | ||
|
||
override fun runCommand() { | ||
val attributePathList = listOf(ChipAttributePath.newInstance( | ||
/* endpointId= */ 0, CLUSTER_ID_BASIC, ATTR_ID_LOCAL_CONFIG_DISABLED)) | ||
|
||
currentCommissioner() | ||
.pairDeviceWithAddress( | ||
getNodeId(), | ||
getRemoteAddr().getHostAddress(), | ||
MATTER_PORT, | ||
getDiscriminator(), | ||
getSetupPINCode(), | ||
null | ||
) | ||
currentCommissioner().setCompletionListener(this) | ||
waitCompleteMs(getTimeoutMillis()) | ||
currentCommissioner() | ||
.getConnectedDevicePointer(getNodeId(), InternalGetConnectedDeviceCallback()) | ||
clear() | ||
currentCommissioner() | ||
.readPath(InternalReportCallback(), devicePointer, attributePathList, Collections.emptyList(), false) | ||
waitCompleteMs(getTimeoutMillis()) | ||
} | ||
|
||
companion object { | ||
private val logger = Logger.getLogger( | ||
PairOnNetworkLongImReadCommand::class.java.name | ||
) | ||
|
||
private const val MATTER_PORT = 5540 | ||
private const val CLUSTER_ID_BASIC = 0x0028L | ||
private const val ATTR_ID_LOCAL_CONFIG_DISABLED = 16L | ||
} | ||
} |
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