def test_read_with_args(self): stream = self.encoding_full payload = payloads.CreateKeyPairRequestPayload() self._test_read(stream, payload, self.common_template_attribute, self.private_key_template_attribute, self.public_key_template_attribute)
def test_write_with_args(self): stream = utils.BytearrayStream() payload = payloads.CreateKeyPairRequestPayload( self.common_template_attribute, self.private_key_template_attribute, self.public_key_template_attribute) self._test_write(stream, payload, self.encoding_full)
def _create_create_key_pair_payload(self): return payloads.CreateKeyPairRequestPayload()
def test_init_with_args(self): payloads.CreateKeyPairRequestPayload( self.common_template_attribute, self.private_key_template_attribute, self.public_key_template_attribute)
def test_init_with_none(self): payloads.CreateKeyPairRequestPayload()
def test_write_with_none(self): stream = utils.BytearrayStream() payload = payloads.CreateKeyPairRequestPayload() self._test_write(stream, payload, self.encoding_empty)
def test_read_with_none(self): stream = self.encoding_empty payload = payloads.CreateKeyPairRequestPayload() self._test_read(stream, payload, None, None, None)