[thread-cert] add case 9.2.1 MGMTCommissionerGet using pktverify (#5952)

This commit is contained in:
Jing Ma
2020-12-14 08:34:39 -08:00
committed by GitHub
parent c455eb9cdd
commit 234562a577
4 changed files with 292 additions and 0 deletions
+7
View File
@@ -1824,6 +1824,13 @@ class NodeImpl:
self._expect('coaps response', timeout=timeout)
def commissioner_mgmtget(self, tlvs_binary=None):
cmd = 'commissioner mgmtget'
if tlvs_binary is not None:
cmd += ' -x %s' % tlvs_binary
self.send_command(cmd)
self._expect('Done')
def commissioner_mgmtset(self, tlvs_binary):
cmd = 'commissioner mgmtset -x %s' % tlvs_binary
self.send_command(cmd)