This file is indexed.

/usr/share/doc/python-social-auth/tests.txt is in python-social-auth 0.2.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
34
35
36
37
38
39
40
41
42
43
Testing python-social-auth
**************************

Testing the application is fair simple, just met the dependencies and
run the testing suite.

The testing suite uses HTTPretty to mock server responses, it's not a
live test against the providers API, to do it that way, a browser and
a tool like Selenium are needed, that's slow, prone to errors on some
cases, and some of the application examples must be running to perform
the testing. Plus real Key and Secret pairs, in the end it's a mess to
test functionality which is the real point.

By mocking the server responses, we can test the backends
functionality (and other areas too) easily and quick.


Installing dependencies
=======================

Go to the tests directory and install the dependencies listed in the
requirements.txt. Then run with "nosetests" command, or with the
"run_tests.sh" script.


Tox
===

You can use tox to test compatibility against all supported Python
versions:

   $ pip install tox  # if not present
   $ tox


Pending
=======

At the moment only OAuth1, OAuth2 and OpenId backends are being
tested, and just login and partial pipeline features are covered by
the test. There's still a lot to work on, like:

   * Frameworks support