This file is indexed.

/usr/lib/python3/dist-packages/autopilot/tests/unit/test_process.py is in python3-autopilot-tests 1.4+14.04.20140416-0ubuntu1.

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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#
# Autopilot Functional Test Tool
# Copyright (C) 2013 Canonical
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

from gi.repository import GLib
from mock import Mock, patch
from testtools import TestCase
from testtools.matchers import (
    Not,
    Raises,
)

import autopilot.process._bamf as _b
from autopilot.process._bamf import _launch_application


class ProcessBamfTests(TestCase):
    def test_launch_application_attempts_launch_uris_as_manager_first(self):
        """_launch_application must attempt to use launch_uris_as_manager
        before trying to use launch_uris.

        """
        with patch.object(_b.Gio.DesktopAppInfo, 'new') as process:
            process.launch_uris_as_manager.called_once_with(
                [],
                None,
                GLib.SpawnFlags.SEARCH_PATH
                | GLib.SpawnFlags.STDOUT_TO_DEV_NULL,
                None,
                None,
                None,
                None
            )
            self.assertFalse(process.launch_uris.called)

    def test_launch_application_falls_back_to_earlier_ver_uri_call(self):
        """_launch_application must fallback to using launch_uris if the call
        to launch_uris_as_manager fails due to being an older version.

        """
        test_desktop_file = self.getUniqueString()
        process = Mock()
        process.launch_uris_as_manager.side_effect = TypeError(
            "Argument 2 does not allow None as a value"
        )

        with patch.object(_b.Gio.DesktopAppInfo, 'new', return_value=process):
            _launch_application(test_desktop_file, [])
            process.launch_uris.called_once_with([], None)

    def test_launch_application_doesnt_raise(self):
        test_desktop_file = self.getUniqueString()
        process = Mock()
        process.launch_uris_as_manager.side_effect = TypeError(
            "Argument 2 does not allow None as a value"
        )
        with patch.object(_b.Gio.DesktopAppInfo, 'new', return_value=process):
            self.assertThat(
                lambda: _launch_application(test_desktop_file, []),
                Not(Raises())
            )