This file is indexed.

/usr/lib/python3/dist-packages/social/tests/backends/test_strava.py is in python3-social-auth 1:0.2.21+dfsg-1.

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
import json

from social.tests.backends.oauth import OAuth2Test


class StravaOAuthTest(OAuth2Test):
    backend_path = 'social.backends.strava.StravaOAuth'
    user_data_url = 'https://www.strava.com/api/v3/athlete'
    expected_username = '227615'
    access_token_body = json.dumps({
      "access_token": "83ebeabdec09f6670863766f792ead24d61fe3f9",
      "athlete": {
        "id": 227615,
        "resource_state": 3,
        "firstname": "John",
        "lastname": "Applestrava",
        "profile_medium": "http://pics.com/227615/medium.jpg",
        "profile": "http://pics.com/227615/large.jpg",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "sex": "M",
        "friend": "null",
        "follower": "null",
        "premium": "true",
        "created_at": "2008-01-01T17:44:00Z",
        "updated_at": "2013-09-04T20:00:50Z",
        "follower_count": 273,
        "friend_count": 19,
        "mutual_friend_count": 0,
        "date_preference": "%m/%d/%Y",
        "measurement_preference": "feet",
        "email": "john@applestrava.com",
        "clubs": [],
        "bikes": [],
        "shoes": []
      }
    })
    user_data_body = json.dumps({
      "id": 227615,
      "resource_state": 2,
      "firstname": "John",
      "lastname": "Applestrava",
      "profile_medium": "http://pics.com/227615/medium.jpg",
      "profile": "http://pics.com/227615/large.jpg",
      "city": "San Francisco",
      "state": "CA",
      "country": "United States",
      "sex": "M",
      "friend": "null",
      "follower": "accepted",
      "premium": "true",
      "created_at": "2011-03-19T21:59:57Z",
      "updated_at": "2013-09-05T16:46:54Z",
      "approve_followers": "false"
    })

    def test_login(self):
        self.do_login()

    def test_partial_pipeline(self):
        self.do_partial_pipeline()