[devtools] Allow to specify short desc on `newcube` command line
authorJérémy Bobbio <jeremy.bobbio@irq7.fr>
Mon, 17 Jun 2019 17:23:36 +0200
changeset 12661 3bbfd5e54c76
parent 12658 fdd7165fe1f3
child 12662 4b612e5b9d05
[devtools] Allow to specify short desc on `newcube` command line In order to implement automated testing of `cubicweb-ctl newcube`, we need to avoid any user interaction. So we add a `-s` switch to specify a short description on the command-line instead of requiring an input.
cubicweb/devtools/devctl.py
--- a/cubicweb/devtools/devctl.py	Wed Jun 19 16:33:15 2019 +0200
+++ b/cubicweb/devtools/devctl.py	Mon Jun 17 17:23:36 2019 +0200
@@ -612,6 +612,11 @@
           'help': 'verbose mode: will ask all possible configuration questions',
           }
          ),
+        ("short-description",
+         {'short': 's', 'type': 'string', 'metavar': '<short description>',
+          'help': 'short description for the cube',
+         }
+         ),
         ("author",
          {'short': 'a', 'type' : 'string', 'metavar': '<author>',
           'default': 'LOGILAB S.A. (Paris, FRANCE)',
@@ -707,7 +712,7 @@
         if osp.exists(cubedir):
             self.fail("%s already exists!" % cubedir)
         skeldir = osp.join(BASEDIR, 'skeleton')
-        longdesc = shortdesc = input(
+        longdesc = shortdesc = self['short-description'] or input(
             'Enter a short description for your cube: ')
         if verbose:
             longdesc = input(