This file is indexed.

/usr/lib/python2.7/dist-packages/asrun/unittest/301_development_long.py is in code-aster-run 1.13.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os
import os.path as osp
import re
import shutil
import unittest

from common import dict_conf, execcmd, tmpdir, aster_version
from data   import catalo_export


class TestDevelopLong(unittest.TestCase):

    def test03_catalo(self):
        from asrun.run import AsRunFactory
        run = AsRunFactory()
        orig_cata = osp.join(run.get_version_path(aster_version),
                             "catalo", "compelem", "grandeur_simple__.cata")
        export = osp.join(tmpdir, "catalo.export")
        open(export, "w").write(catalo_export % dict_conf)
        shutil.copy(orig_cata, osp.join(tmpdir, "catalo.cata"))

        cmd = dict_conf["as_run"] + [export]
        iret, out = execcmd(cmd, "dvp.3", return_output=True)
        assert iret == 0
        assert re.search("DIAGNOSTIC JOB : OK", out) \
          or re.search("DIAGNOSTIC JOB :.*ALARM", out)



if __name__ == "__main__":
    unittest.main()