This file is indexed.

/usr/lib/python2.7/dist-packages/ubuntuone_credentials/fixture_setup.py is in ubuntuone-credentials-autopilot 14.04+14.04.20140415.

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
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#
# Copyright (C) 2014 Canonical Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# 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/>.

"""Set up and clean up fixtures for the U1 Online Accounts acceptance tests."""

import logging
import threading

import fixtures

from ubuntuone_credentials import fake_servers


logger = logging.getLogger(__name__)


class FakeSSOAndU1ServersRunning(fixtures.Fixture):

    def setUp(self):
        super(FakeSSOAndU1ServersRunning, self).setUp()
        self._start_fake_server()

    def _start_fake_server(self):
        logger.info('Starting fake SSO and U1 servers.')
        server_address = ('', 0)
        fake_server = fake_servers.FakeSSOAndU1Server(server_address)
        server_thread = threading.Thread(target=fake_server.serve_forever)
        server_thread.start()
        logger.info('Serving at port {}.'.format(fake_server.server_port))
        self.addCleanup(self._stop_fake_server, server_thread, fake_server)
        self.url = 'http://localhost:{}'.format(fake_server.server_port)

    def _stop_fake_server(self, thread, server):
        logger.info('Stopping fake SSO and U1 servers.')
        server.shutdown()
        thread.join()