Fix the validator for the 'description' attribute of Agents, allowing
it to be set to None.
Fix an API test that had two problems:
1. It was not restoring the description to the agent it had updated
2. It was retoring the description to '' instead of None.
Closes-Bug: #
1466642
Change-Id: I50723e1346be0953d26216ba24907bac008ccfb6
'is_visible': True},
'description': {'allow_post': False, 'allow_put': True,
'is_visible': True,
- 'validate': {'type:string': attr.DESCRIPTION_MAX_LEN}},
+ 'validate': {
+ 'type:string_or_none': attr.DESCRIPTION_MAX_LEN}},
},
}
"""
Restore the agent description after update test.
"""
- description = self.agent['description'] or ''
+ description = self.dyn_agent['description']
origin_agent = {'description': description}
- self.admin_client.update_agent(agent_id=self.agent['id'],
+ self.admin_client.update_agent(agent_id=self.dyn_agent['id'],
agent_info=origin_agent)