Commit 89f91b49 authored by Raphael Beer's avatar Raphael Beer

Meta: add test subject's screen_name to log

parent c4de8213
...@@ -291,7 +291,7 @@ class TwitterSession: ...@@ -291,7 +291,7 @@ class TwitterSession:
debug('Unexpected Exception:') debug('Unexpected Exception:')
debug(traceback.format_exc()) debug(traceback.format_exc())
async def test_barrier(self, user_id): async def test_barrier(self, user_id, screen_name):
try: try:
tweets_replies = await self.get_profile_tweets_raw(user_id) tweets_replies = await self.get_profile_tweets_raw(user_id)
tweet_ids = self.get_ordered_tweet_ids(tweets_replies) tweet_ids = self.get_ordered_tweet_ids(tweets_replies)
...@@ -329,9 +329,9 @@ class TwitterSession: ...@@ -329,9 +329,9 @@ class TwitterSession:
if replied_tweet["reply_count"] > 500: if replied_tweet["reply_count"] > 500:
continue continue
debug('Tban: ') debug('[' + screen_name + '] Barrier Test: ')
debug('Found:' + tid + '\n') debug('[' + screen_name + '] Found:' + tid)
debug('In reply to:' + replied_to_id + '\n') debug('[' + screen_name + '] In reply to:' + replied_to_id)
reference_session = next_session() reference_session = next_session()
reference_session = self reference_session = self
...@@ -447,9 +447,9 @@ class TwitterSession: ...@@ -447,9 +447,9 @@ class TwitterSession:
result["tests"]["ghost"] = {"ban": False} result["tests"]["ghost"] = {"ban": False}
if more_replies_test and not get_nested(result, ["tests", "ghost", "ban"], False): if more_replies_test and not get_nested(result, ["tests", "ghost", "ban"], False):
result["tests"]["more_replies"] = await self.test_barrier(user_id) result["tests"]["more_replies"] = await self.test_barrier(user_id, profile['screen_name'])
debug('Writing result for ' + result['profile']['screen_name'] + ' to DB') debug('[' + profile['screen_name'] + '] Writing result to DB')
db.write_result(result) db.write_result(result)
return result return result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment