This file is indexed.

/usr/lib/python3/dist-packages/muranopkgcheck/tests/functional/cases/case.yaml is in python3-murano-pkg-check 0.3.0-0ubuntu4.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
- case_no_errors
-
  pkg:
    manifest.yaml:
      format: yaml
      content:
        Type: Library
        FullName: org.Test
        Description: Very important package
        Name: Test
        Classes:
          org.Test: Test.yaml
    LICENSE:
      format: raw
      content: LICENSE
    logo.png:
      format: raw
      content: logo
    Classes/Test.yaml:
      format: yaml
      content:
        Namespaces:
          =: org.Test
        Name: Test
  expected: []
---
- case_no_files
-
  pkg:
    manifest.yaml:
      format: yaml
      content:
        Type: Application
        FullName: org.Test
        Description: Very important package
        Name: Test
        Classes:
          org.Test: Test.yaml
  expected:
    -
      code: E050
      msg: File "Test.yaml" is present in Manifest, but not in filesystem
    -
      code: W073
      msg: There is no UI file "ui.yaml"
    -
      code: W074
      msg: There is no Logo file "logo.png"
    -
      code: W121
      msg: Missing "LICENSE" in the package