2015-09-07 01:22:05 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
from wakatime.main import execute
|
|
|
|
from wakatime.offlinequeue import Queue
|
|
|
|
from wakatime.packages import requests
|
|
|
|
|
2016-07-06 21:07:55 +00:00
|
|
|
import logging
|
2015-09-07 01:22:05 +00:00
|
|
|
import os
|
2015-09-27 10:17:54 +00:00
|
|
|
import sqlite3
|
2017-11-09 17:03:27 +00:00
|
|
|
import shutil
|
2015-09-07 01:22:05 +00:00
|
|
|
import time
|
2017-11-09 17:03:27 +00:00
|
|
|
import uuid
|
2016-07-06 21:07:55 +00:00
|
|
|
from testfixtures import log_capture
|
2015-09-07 01:22:05 +00:00
|
|
|
from wakatime.compat import u
|
2017-11-09 06:54:33 +00:00
|
|
|
from wakatime.constants import SUCCESS
|
2015-09-07 01:22:05 +00:00
|
|
|
from wakatime.packages.requests.models import Response
|
|
|
|
from . import utils
|
2017-11-09 17:03:27 +00:00
|
|
|
from .utils import ANY, json
|
2015-09-07 01:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OfflineQueueTestCase(utils.TestCase):
|
|
|
|
patch_these = [
|
|
|
|
'wakatime.packages.requests.adapters.HTTPAdapter.send',
|
|
|
|
'wakatime.session_cache.SessionCache.save',
|
|
|
|
'wakatime.session_cache.SessionCache.delete',
|
|
|
|
['wakatime.session_cache.SessionCache.get', requests.session],
|
2015-09-27 10:17:54 +00:00
|
|
|
['wakatime.session_cache.SessionCache.connect', None],
|
2015-09-07 01:22:05 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def test_heartbeat_saved_from_error_response(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:17:54 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(os.path.realpath(entity), saved_heartbeat['entity'])
|
2015-09-07 01:22:05 +00:00
|
|
|
|
|
|
|
def test_heartbeat_discarded_from_400_response(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:17:54 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 400
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(None, saved_heartbeat)
|
2015-09-07 01:22:05 +00:00
|
|
|
|
|
|
|
def test_offline_heartbeat_sent_after_success_response(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:17:54 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
response.status_code = 201
|
|
|
|
execute(args)
|
2015-09-07 01:22:05 +00:00
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(None, saved_heartbeat)
|
2015-09-07 01:47:17 +00:00
|
|
|
|
2016-07-28 07:00:58 +00:00
|
|
|
def test_all_offline_heartbeats_sent_after_success_response(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2016-07-28 07:00:58 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
|
|
|
|
|
|
|
now1 = u(int(time.time()))
|
|
|
|
entity1 = 'tests/samples/codefiles/emptyfile.txt'
|
|
|
|
project1 = 'proj1'
|
|
|
|
|
|
|
|
args = ['--file', entity1, '--config', config, '--time', now1, '--project', project1]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
now2 = u(int(time.time()))
|
|
|
|
entity2 = 'tests/samples/codefiles/twolinefile.txt'
|
|
|
|
project2 = 'proj2'
|
|
|
|
|
|
|
|
args = ['--file', entity2, '--config', config, '--time', now2, '--project', project2]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
# send heartbeats from offline queue after 201 response
|
|
|
|
now3 = u(int(time.time()))
|
|
|
|
entity3 = 'tests/samples/codefiles/python.py'
|
|
|
|
project3 = 'proj3'
|
|
|
|
args = ['--file', entity3, '--config', config, '--time', now3, '--project', project3]
|
|
|
|
response.status_code = 201
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
# offline queue should be empty
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2016-07-28 07:00:58 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(None, saved_heartbeat)
|
|
|
|
|
|
|
|
calls = self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].call_args_list
|
|
|
|
|
|
|
|
body = calls[0][0][0].body
|
2017-11-09 06:54:33 +00:00
|
|
|
data = json.loads(body)[0]
|
2016-07-28 07:00:58 +00:00
|
|
|
self.assertEquals(data.get('entity'), os.path.abspath(entity1))
|
|
|
|
self.assertEquals(data.get('project'), project1)
|
|
|
|
self.assertEquals(u(int(data.get('time'))), now1)
|
|
|
|
|
|
|
|
body = calls[1][0][0].body
|
2017-11-09 06:54:33 +00:00
|
|
|
data = json.loads(body)[0]
|
2016-07-28 07:00:58 +00:00
|
|
|
self.assertEquals(data.get('entity'), os.path.abspath(entity2))
|
|
|
|
self.assertEquals(data.get('project'), project2)
|
|
|
|
self.assertEquals(u(int(data.get('time'))), now2)
|
|
|
|
|
|
|
|
body = calls[2][0][0].body
|
2017-11-09 06:54:33 +00:00
|
|
|
data = json.loads(body)[0]
|
2016-07-28 07:00:58 +00:00
|
|
|
self.assertEquals(data.get('entity'), os.path.abspath(entity3))
|
|
|
|
self.assertEquals(data.get('project'), project3)
|
|
|
|
self.assertEquals(u(int(data.get('time'))), now3)
|
|
|
|
|
|
|
|
body = calls[3][0][0].body
|
2017-11-09 06:54:33 +00:00
|
|
|
data = json.loads(body)[0]
|
2016-07-28 07:00:58 +00:00
|
|
|
self.assertEquals(data.get('entity'), os.path.abspath(entity1))
|
|
|
|
self.assertEquals(data.get('project'), project1)
|
|
|
|
self.assertEquals(u(int(data.get('time'))), now1)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
body = calls[3][0][0].body
|
|
|
|
data = json.loads(body)[1]
|
2016-07-28 07:00:58 +00:00
|
|
|
self.assertEquals(data.get('entity'), os.path.abspath(entity2))
|
|
|
|
self.assertEquals(data.get('project'), project2)
|
|
|
|
self.assertEquals(u(int(data.get('time'))), now2)
|
|
|
|
|
2017-11-09 17:03:27 +00:00
|
|
|
@log_capture()
|
|
|
|
def test_heartbeats_sent_not_saved_from_bulk_response(self, logs):
|
|
|
|
logging.disable(logging.NOTSET)
|
|
|
|
|
|
|
|
with utils.NamedTemporaryFile() as fh:
|
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
entities = [
|
|
|
|
'emptyfile.txt',
|
|
|
|
'twolinefile.txt',
|
|
|
|
'python.py',
|
|
|
|
'go.go',
|
|
|
|
]
|
|
|
|
|
|
|
|
with utils.TemporaryDirectory() as tempdir:
|
|
|
|
for entity in entities:
|
|
|
|
shutil.copy(os.path.join('tests/samples/codefiles', entity), os.path.join(tempdir, entity))
|
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
key = str(uuid.uuid4())
|
|
|
|
args = ['--file', os.path.join(tempdir, entities[0]), '--key', key, '--config', 'tests/samples/configs/good_config.cfg', '--time', now, '--extra-heartbeats']
|
|
|
|
|
|
|
|
class CustomResponse(Response):
|
|
|
|
|
|
|
|
@property
|
|
|
|
def status_code(self):
|
|
|
|
return 202
|
|
|
|
|
|
|
|
@status_code.setter
|
|
|
|
def status_code(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@property
|
|
|
|
def text(self):
|
|
|
|
return '[[{"id":1},201], [{"error":"error 2"},500], [{"id":3},201], [{"error":4},500]]'
|
|
|
|
|
|
|
|
response = CustomResponse()
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
with utils.mock.patch('wakatime.main.sys.stdin') as mock_stdin:
|
|
|
|
heartbeats = json.dumps([{
|
|
|
|
'timestamp': now,
|
|
|
|
'entity': os.path.join(tempdir, entity),
|
|
|
|
'entity_type': 'file',
|
|
|
|
'is_write': False,
|
|
|
|
} for entity in entities[1:]])
|
|
|
|
mock_stdin.readline.return_value = heartbeats
|
|
|
|
|
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue.pop') as mock_pop:
|
|
|
|
mock_pop.return_value = None
|
|
|
|
|
|
|
|
retval = execute(args)
|
|
|
|
|
|
|
|
self.assertEquals(retval, SUCCESS)
|
|
|
|
self.assertNothingPrinted()
|
|
|
|
|
|
|
|
heartbeat = {
|
|
|
|
'entity': os.path.realpath(os.path.join(tempdir, entities[0])),
|
|
|
|
'language': ANY,
|
|
|
|
'lines': ANY,
|
|
|
|
'project': ANY,
|
|
|
|
'time': ANY,
|
|
|
|
'type': 'file',
|
|
|
|
'is_write': ANY,
|
|
|
|
'user_agent': ANY,
|
|
|
|
'dependencies': ANY,
|
|
|
|
}
|
|
|
|
extra_heartbeats = [{
|
|
|
|
'entity': os.path.realpath(os.path.join(tempdir, entity)),
|
|
|
|
'language': ANY,
|
|
|
|
'lines': ANY,
|
|
|
|
'project': ANY,
|
|
|
|
'branch': ANY,
|
|
|
|
'time': ANY,
|
|
|
|
'is_write': ANY,
|
|
|
|
'type': 'file',
|
|
|
|
'dependencies': ANY,
|
|
|
|
'user_agent': ANY,
|
|
|
|
} for entity in entities[1:]]
|
|
|
|
self.assertHeartbeatSent(heartbeat, extra_heartbeats=extra_heartbeats)
|
|
|
|
|
|
|
|
self.assertSessionCacheSaved()
|
|
|
|
|
|
|
|
queue = Queue(None, None)
|
|
|
|
self.assertEquals(queue._get_db_file(), fh.name)
|
|
|
|
saved_heartbeats = queue.pop_many()
|
|
|
|
self.assertNothingPrinted()
|
|
|
|
self.assertNothingLogged(logs)
|
|
|
|
|
|
|
|
# make sure only heartbeats with error code responses were saved
|
|
|
|
self.assertEquals(len(saved_heartbeats), 2)
|
|
|
|
self.assertEquals(saved_heartbeats[0].entity, os.path.realpath(os.path.join(tempdir, entities[1])))
|
|
|
|
self.assertEquals(saved_heartbeats[1].entity, os.path.realpath(os.path.join(tempdir, entities[3])))
|
|
|
|
|
|
|
|
@log_capture()
|
|
|
|
def test_offline_heartbeats_sent_after_partial_success_from_bulk_response(self, logs):
|
|
|
|
logging.disable(logging.NOTSET)
|
|
|
|
|
|
|
|
with utils.NamedTemporaryFile() as fh:
|
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
entities = [
|
|
|
|
'emptyfile.txt',
|
|
|
|
'twolinefile.txt',
|
|
|
|
'python.py',
|
|
|
|
'go.go',
|
|
|
|
]
|
|
|
|
|
|
|
|
with utils.TemporaryDirectory() as tempdir:
|
|
|
|
for entity in entities:
|
|
|
|
shutil.copy(os.path.join('tests/samples/codefiles', entity), os.path.join(tempdir, entity))
|
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
key = str(uuid.uuid4())
|
|
|
|
args = ['--file', os.path.join(tempdir, entities[0]), '--key', key, '--config', 'tests/samples/configs/good_config.cfg', '--time', now, '--extra-heartbeats']
|
|
|
|
|
|
|
|
class CustomResponse(Response):
|
|
|
|
|
|
|
|
@property
|
|
|
|
def status_code(self):
|
|
|
|
return 202
|
|
|
|
|
|
|
|
@status_code.setter
|
|
|
|
def status_code(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@property
|
|
|
|
def text(self):
|
|
|
|
return '[[{"id":1},201], [{"error":"error 2"},500], [{"id":3},201], [{"error":4},500]]'
|
|
|
|
|
|
|
|
response = CustomResponse()
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
with utils.mock.patch('wakatime.main.sys.stdin') as mock_stdin:
|
|
|
|
heartbeats = json.dumps([{
|
|
|
|
'timestamp': now,
|
|
|
|
'entity': os.path.join(tempdir, entity),
|
|
|
|
'entity_type': 'file',
|
|
|
|
'is_write': False,
|
|
|
|
} for entity in entities[1:]])
|
|
|
|
mock_stdin.readline.return_value = heartbeats
|
|
|
|
|
|
|
|
retval = execute(args)
|
|
|
|
self.assertEquals(retval, SUCCESS)
|
|
|
|
self.assertNothingPrinted()
|
|
|
|
|
|
|
|
queue = Queue(None, None)
|
|
|
|
self.assertEquals(queue._get_db_file(), fh.name)
|
|
|
|
saved_heartbeats = queue.pop_many()
|
|
|
|
self.assertNothingPrinted()
|
|
|
|
self.assertNothingLogged(logs)
|
|
|
|
|
|
|
|
# make sure all offline heartbeats were sent, so queue should only have 1 heartbeat left from the second 500 response
|
|
|
|
self.assertEquals(len(saved_heartbeats), 1)
|
|
|
|
|
2016-08-31 20:37:02 +00:00
|
|
|
def test_auth_error_when_sending_offline_heartbeats(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2016-08-31 20:37:02 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
|
|
|
|
|
|
|
now1 = u(int(time.time()))
|
|
|
|
entity1 = 'tests/samples/codefiles/emptyfile.txt'
|
|
|
|
project1 = 'proj1'
|
|
|
|
|
|
|
|
args = ['--file', entity1, '--config', config, '--time', now1, '--project', project1]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
now2 = u(int(time.time()))
|
|
|
|
entity2 = 'tests/samples/codefiles/twolinefile.txt'
|
|
|
|
project2 = 'proj2'
|
|
|
|
|
|
|
|
args = ['--file', entity2, '--config', config, '--time', now2, '--project', project2]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
# send heartbeats from offline queue after 201 response
|
|
|
|
now3 = u(int(time.time()))
|
|
|
|
entity3 = 'tests/samples/codefiles/python.py'
|
|
|
|
project3 = 'proj3'
|
|
|
|
args = ['--file', entity3, '--config', config, '--time', now3, '--project', project3]
|
|
|
|
|
|
|
|
class CustomResponse(Response):
|
|
|
|
count = 0
|
2017-10-29 18:16:23 +00:00
|
|
|
|
2016-08-31 20:37:02 +00:00
|
|
|
@property
|
|
|
|
def status_code(self):
|
2016-08-31 21:22:50 +00:00
|
|
|
if self.count > 2:
|
2016-08-31 20:37:02 +00:00
|
|
|
return 401
|
|
|
|
self.count += 1
|
|
|
|
return 201
|
2017-10-29 18:16:23 +00:00
|
|
|
|
2016-08-31 20:37:02 +00:00
|
|
|
@status_code.setter
|
|
|
|
def status_code(self, value):
|
|
|
|
pass
|
|
|
|
response = CustomResponse()
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
2016-08-31 22:08:21 +00:00
|
|
|
retval = execute(args)
|
2017-11-09 06:54:33 +00:00
|
|
|
self.assertEquals(retval, SUCCESS)
|
2016-08-31 22:08:21 +00:00
|
|
|
|
|
|
|
# offline queue should be empty
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2016-08-31 22:08:21 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
2017-11-09 06:54:33 +00:00
|
|
|
self.assertNothingPrinted()
|
|
|
|
self.assertIsNone(saved_heartbeat)
|
2016-08-31 22:08:21 +00:00
|
|
|
|
|
|
|
def test_500_error_when_sending_offline_heartbeats(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2016-08-31 22:08:21 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
|
|
|
|
|
|
|
now1 = u(int(time.time()))
|
|
|
|
entity1 = 'tests/samples/codefiles/emptyfile.txt'
|
|
|
|
project1 = 'proj1'
|
|
|
|
|
|
|
|
args = ['--file', entity1, '--config', config, '--time', now1, '--project', project1]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
now2 = u(int(time.time()))
|
|
|
|
entity2 = 'tests/samples/codefiles/twolinefile.txt'
|
|
|
|
project2 = 'proj2'
|
|
|
|
|
|
|
|
args = ['--file', entity2, '--config', config, '--time', now2, '--project', project2]
|
2016-08-31 20:37:02 +00:00
|
|
|
execute(args)
|
|
|
|
|
2016-08-31 22:08:21 +00:00
|
|
|
# send heartbeats from offline queue after 201 response
|
|
|
|
now3 = u(int(time.time()))
|
|
|
|
entity3 = 'tests/samples/codefiles/python.py'
|
|
|
|
project3 = 'proj3'
|
|
|
|
args = ['--file', entity3, '--config', config, '--time', now3, '--project', project3]
|
|
|
|
|
|
|
|
class CustomResponse(Response):
|
|
|
|
count = 0
|
2017-10-29 18:16:23 +00:00
|
|
|
|
2016-08-31 22:08:21 +00:00
|
|
|
@property
|
|
|
|
def status_code(self):
|
|
|
|
if self.count > 2:
|
|
|
|
return 500
|
|
|
|
self.count += 1
|
|
|
|
return 201
|
2017-10-29 18:16:23 +00:00
|
|
|
|
2016-08-31 22:08:21 +00:00
|
|
|
@status_code.setter
|
|
|
|
def status_code(self, value):
|
|
|
|
pass
|
|
|
|
response = CustomResponse()
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
retval = execute(args)
|
|
|
|
self.assertEquals(retval, SUCCESS)
|
|
|
|
|
2016-08-31 20:37:02 +00:00
|
|
|
# offline queue should be empty
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2016-08-31 20:37:02 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
2017-11-09 06:54:33 +00:00
|
|
|
self.assertNothingPrinted()
|
|
|
|
self.assertIsNone(saved_heartbeat)
|
2016-08-31 20:37:02 +00:00
|
|
|
|
2015-09-07 01:47:17 +00:00
|
|
|
def test_empty_project_can_be_saved(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:17:54 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/emptyfile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-27 10:17:54 +00:00
|
|
|
|
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
2017-11-09 06:54:33 +00:00
|
|
|
self.assertNothingPrinted()
|
2015-09-27 10:17:54 +00:00
|
|
|
self.assertEquals(os.path.realpath(entity), saved_heartbeat['entity'])
|
|
|
|
|
2015-09-27 10:32:28 +00:00
|
|
|
def test_get_handles_connection_exception(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:17:54 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-27 10:17:54 +00:00
|
|
|
|
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
2015-09-07 01:47:17 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue.connect') as mock_connect:
|
|
|
|
mock_connect.side_effect = sqlite3.Error('')
|
2015-09-07 01:47:17 +00:00
|
|
|
|
2015-09-27 10:17:54 +00:00
|
|
|
response.status_code = 201
|
|
|
|
execute(args)
|
2015-09-07 01:47:17 +00:00
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(None, saved_heartbeat)
|
2015-09-07 01:47:17 +00:00
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:17:54 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(os.path.realpath(entity), saved_heartbeat['entity'])
|
2015-09-27 10:32:28 +00:00
|
|
|
|
|
|
|
def test_push_handles_connection_exception(self):
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2015-09-27 10:32:28 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
|
|
|
response = Response()
|
|
|
|
response.status_code = 500
|
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].return_value = response
|
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
2015-09-30 05:34:14 +00:00
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
2015-09-27 10:32:28 +00:00
|
|
|
|
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue.connect') as mock_connect:
|
|
|
|
mock_connect.side_effect = sqlite3.Error('')
|
|
|
|
|
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
|
|
|
|
|
|
|
response.status_code = 201
|
|
|
|
execute(args)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2015-09-27 10:32:28 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(None, saved_heartbeat)
|
|
|
|
|
2017-10-29 18:16:23 +00:00
|
|
|
def test_uses_home_folder_by_default(self):
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
|
|
|
db_file = queue._get_db_file()
|
2015-09-27 10:32:28 +00:00
|
|
|
expected = os.path.join(os.path.expanduser('~'), '.wakatime.db')
|
|
|
|
self.assertEquals(db_file, expected)
|
2016-07-06 21:07:55 +00:00
|
|
|
|
2017-10-29 18:16:23 +00:00
|
|
|
def test_uses_wakatime_home_env_variable(self):
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2017-10-29 18:16:23 +00:00
|
|
|
|
|
|
|
with utils.TemporaryDirectory() as tempdir:
|
|
|
|
expected = os.path.realpath(os.path.join(tempdir, '.wakatime.db'))
|
|
|
|
|
|
|
|
with utils.mock.patch('os.environ.get') as mock_env:
|
|
|
|
mock_env.return_value = os.path.realpath(tempdir)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
actual = queue._get_db_file()
|
2017-10-29 18:16:23 +00:00
|
|
|
self.assertEquals(actual, expected)
|
|
|
|
|
2016-07-06 21:07:55 +00:00
|
|
|
@log_capture()
|
|
|
|
def test_heartbeat_saved_when_requests_raises_exception(self, logs):
|
|
|
|
logging.disable(logging.NOTSET)
|
|
|
|
|
2017-05-21 22:58:48 +00:00
|
|
|
with utils.NamedTemporaryFile() as fh:
|
2017-11-09 06:54:33 +00:00
|
|
|
with utils.mock.patch('wakatime.offlinequeue.Queue._get_db_file') as mock_db_file:
|
2016-07-06 21:07:55 +00:00
|
|
|
mock_db_file.return_value = fh.name
|
|
|
|
|
2016-08-31 10:23:38 +00:00
|
|
|
exception_msg = u("Oops, requests raised an exception. This is a test.")
|
2016-07-20 18:32:08 +00:00
|
|
|
self.patched['wakatime.packages.requests.adapters.HTTPAdapter.send'].side_effect = AttributeError(exception_msg)
|
2016-07-06 21:07:55 +00:00
|
|
|
|
|
|
|
now = u(int(time.time()))
|
|
|
|
entity = 'tests/samples/codefiles/twolinefile.txt'
|
|
|
|
config = 'tests/samples/configs/good_config.cfg'
|
|
|
|
|
|
|
|
args = ['--file', entity, '--config', config, '--time', now]
|
|
|
|
execute(args)
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
queue = Queue(None, None)
|
2016-07-06 21:07:55 +00:00
|
|
|
saved_heartbeat = queue.pop()
|
|
|
|
self.assertEquals(os.path.realpath(entity), saved_heartbeat['entity'])
|
|
|
|
|
2017-11-09 06:54:33 +00:00
|
|
|
self.assertNothingPrinted()
|
2016-07-06 21:07:55 +00:00
|
|
|
|
|
|
|
output = [u(' ').join(x) for x in logs.actual()]
|
2016-07-20 18:32:08 +00:00
|
|
|
self.assertIn(exception_msg, output[0])
|
2016-07-06 21:07:55 +00:00
|
|
|
|
|
|
|
self.patched['wakatime.session_cache.SessionCache.get'].assert_called_once_with()
|
2017-05-25 05:54:58 +00:00
|
|
|
self.patched['wakatime.session_cache.SessionCache.delete'].assert_called_once_with()
|
2016-07-06 21:07:55 +00:00
|
|
|
self.patched['wakatime.session_cache.SessionCache.save'].assert_not_called()
|