This file is indexed.

/usr/lib/python3/dist-packages/subuserlib/test.py is in subuser 0.6.1-3.

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
# -*- coding: utf-8 -*-

"""
This is a "magic" module used to transmit the global testing flag, so modules will know if they are being tested.  (Some modules use mock objects, others don't do certain actions during testing.)
"""

#external imports
import os
#internal imports
#import ...

if "SUBUSER_TESTING" in os.environ:
  testing = True
  import os
  homeDir = os.getcwd()
  hashtestDir = homeDir+"/hashtest"
  def getUser():
    from subuserlib.classes.user import User
    return User(homeDir=homeDir)
else:
  testing = False