[rset] New method: ResultSet.one()
This method will return exactly one entity while enforcing its existence and unicity.
The idea is shamelessly borowed from SQLAlchemy Query.one().
Closes #3352314
[jcr: use len(self) instead of len(self.rows)]
fromcubicwebimportUnknownEidsource,=__args__sql("DELETE FROM entities WHERE type='Int'")ecnx=session.cnxset.connection(source)foreinrql('Any X WHERE X cw_source S, S name %(name)s',{'name':source}).entities():meta=e.cw_metainformation()assertmeta['source']['uri']==sourcetry:suri=ecnx.describe(meta['extid'])[1]exceptUnknownEid:print'cant describe',e.cw_etype,e.eid,metacontinueifsuri!='system':try:print'deleting',e.cw_etype,e.eid,suri,e.dc_title().encode('utf8')repo.delete_info(session,e,suri,scleanup=e.eid)exceptUnknownEid:print' cant delete',e.cw_etype,e.eid,metacommit()