This file is indexed.

/usr/lib/python2.7/dist-packages/asrun/unittest/320_astout_dvp.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os
import re
import unittest

from common import dict_conf, execcmd, tmpdir
from data   import astout_dvp_export

import asrun


class TestUsingDvpt(unittest.TestCase):

    def test01_using_api(self):
        assert os.path.exists(os.path.join(tmpdir, "aster.exe")), \
                "testcase 'compilation@development' must have been run before!"
        export = os.path.join(tmpdir, "astout_dvp.export")
        open(export, "w").write(astout_dvp_export % dict_conf)
        cmd = dict_conf["as_run"] + ["--only_nook", export]
        iret = execcmd(cmd, "astout_dvp.1")
        assert iret == 0
        mess = os.path.join(tmpdir, "astout_dvp.resu_test", "adlv100a.mess")
        content = open(mess, "r").read()
        assert len(re.findall("MCTEST_EXE_OK", content)) == 1
        mess = os.path.join(tmpdir, "astout_dvp.resu_test", "forma01a.mess")
        content = open(mess, "r").read()
        assert len(re.findall("MCTEST_EXE_OK", content)) == 1


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