Ejemplo n.º 1
0
 def test_create_index(self):
     with open(self.conf.sphinx_id_path) as f:
         sphinx_id = f.read()
     
     cmd = cmd = self.conf.sphinx_cmd_prefix or []
     utils.run(cmd + ['indexer', '--config', self.conf.sphinx_config_path,
         'index_phpbb_%s_main' % sphinx_id])
     utils.run(cmd + ['indexer', '--config', self.conf.sphinx_config_path,
         'index_phpbb_%s_delta' % sphinx_id])
Ejemplo n.º 2
0
 def test_create_schema_files(self):
     script_path = utils.our_script_path('create-schema-files')
     src = self.conf.src_path
     work_dir = os.path.join(self.conf.test_root, 'repotest')
     if not os.path.exists(work_dir):
         os.mkdir(work_dir)
     os.chmod(work_dir, 0o777)
     
     utils.run((self.conf.php_cmd_prefix or []) + [script_path, src, work_dir])
Ejemplo n.º 3
0
 def test_lint_js(self):
     prefix = self.conf.test_root_phpbb
     jshint_config_path = os.path.join(os.path.dirname(__file__), '../config/jshint.syntax.yaml')
     cmd_prefix = self.conf.node_cmd_prefix or []
     with tempfile.NamedTemporaryFile() as jshint_config_f:
         utils.yaml_to_json(input_file=jshint_config_path,
             output_file=jshint_config_f)
         jshint_config_f.flush()
         # since we run jshint under a different user account,
         # adjust permissions to be more open
         os.chmod(jshint_config_f.name, 0o644)
         if not prefix.endswith('/'):
             prefix += '/'
         # check that jshint itself works
         with tempfile.NamedTemporaryFile() as test_f:
             os.chmod(test_f.name, 0o644)
             utils.run(cmd_prefix + ['jshint', '--config', jshint_config_f.name, test_f.name])
         for root, dirs, files in os.walk(self.conf.test_root_phpbb):
             if '.git' in dirs:
                 dirs.remove('.git')
             for file in files:
                 if file.endswith('.js'):
                     # test_root should be absolute
                     path = os.path.join(root, file)
                     print 'Linting %s' % path
                     cmd = cmd_prefix + ['uglifyjs', '-o', '/dev/null', path]
                     utils.run(cmd)
                     
                     # use a temporary file in case there is a lot of output
                     with tempfile.TemporaryFile() as f:
                         cmd = cmd_prefix + ['jshint', '--config', jshint_config_f.name, path]
                         utils.run(cmd, no_check=True, stdout=f)
                         f.seek(0)
                         for line in f.readlines():
                             if 'Extra comma.' in line:
                                 relative_path = path[len(prefix):]
                                 msg = "jshint reports trailing comma in %s:\n%s" % (relative_path, line.strip())
                                 self.fail(msg)