[devtools] qunit: use new async testing APIs
http://qunitjs.com/cookbook/#asynchronous-callbacks
QUnit keeps track of all the assert.async() objects created inside the
test functions and expects all done() functions to be called. Failure to
do so will result in the test being failed.
Unlike .start and .stop which were internal APIs, assert.async() is
stricter and fails tests if assert methods are used *after* all done()
functions are called (see "test callback execution order").
Related to #5533333.
# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr## This file is part of CubicWeb.## CubicWeb is free software: you can redistribute it and/or modify it under the# terms of the GNU Lesser General Public License as published by the Free# Software Foundation, either version 2.1 of the License, or (at your option)# any later version.## CubicWeb is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more# details.## You should have received a copy of the GNU Lesser General Public License along# with CubicWeb. If not, see <http://www.gnu.org/licenses/>."""cubicweb post creation script, set user's workflow"""# insert versionscreate_entity('CWProperty',pkey=u'system.version.cubicweb',value=unicode(config.cubicweb_version()))forcubeinconfig.cubes():create_entity('CWProperty',pkey=u'system.version.%s'%cube.lower(),value=unicode(config.cube_version(cube)))# some entities have been added before schema entities, fix the 'is' and# 'is_instance_of' relationsforrtypein('is','is_instance_of'):sql('INSERT INTO %s_relation ''SELECT X.eid, ET.cw_eid FROM entities as X, cw_CWEType as ET ''WHERE X.type=ET.cw_name AND NOT EXISTS('' SELECT 1 from is_relation '' WHERE eid_from=X.eid AND eid_to=ET.cw_eid)'%rtype)# user workflowuserwf=add_workflow(_('default user workflow'),'CWUser')activated=userwf.add_state(_('activated'),initial=True)deactivated=userwf.add_state(_('deactivated'))userwf.add_transition(_('deactivate'),(activated,),deactivated,requiredgroups=('managers',))userwf.add_transition(_('activate'),(deactivated,),activated,requiredgroups=('managers',))# create anonymous user if all-in-one config and anonymous user has been specifiedifhasattr(config,'anonymous_user'):anonlogin,anonpwd=config.anonymous_user()ifanonlogin==session.user.login:print'you are using a manager account as anonymous user.'print'Hopefully this is not a production instance...'elifanonlogin:fromcubicweb.serverimportcreate_usercreate_user(session,unicode(anonlogin),anonpwd,'guests')# need this since we already have at least one user in the database (the default admin)foruserinrql('Any X WHERE X is CWUser').entities():rql('SET X in_state S WHERE X eid %(x)s, S eid %(s)s',{'x':user.eid,'s':activated.eid})# on interactive mode, ask for level 0 persistent optionsifinteractive_mode:cfg=config.persistent_options_configuration()cfg.input_config(inputlevel=0)forsection,optionsincfg.options_by_section():foroptname,optdict,valueinoptions:key='%s.%s'%(section,optname)default=cfg.option_default(optname,optdict)# only record values differing from defaultifvalue!=default:rql('INSERT CWProperty X: X pkey %(k)s, X value %(v)s',{'k':key,'v':value})