def test_hNetrShareSetInfo(self): dce, rpctransport = self.connect() resp = srvs.hNetrShareGetInfo(dce, 'IPC$\x00', 1) #resp.dump() oldValue = resp['InfoStruct']['ShareInfo1']['shi1_remark'] shareInfo = resp['InfoStruct']['ShareInfo1'] shareInfo['shi1_remark'] = 'BETUS\x00' resp = srvs.hNetrShareSetInfo(dce, 'IPC$\x00', 1, shareInfo) #resp.dump() resp = srvs.hNetrShareGetInfo(dce, 'IPC$\x00', 1) #resp.dump() shareInfo['shi1_remark'] = oldValue resp = srvs.hNetrShareSetInfo(dce, 'IPC$\x00', 1, shareInfo)