-
Type: Bug
-
Status: Reopened
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.2.227
-
Fix Version/s: Not yet scheduled version
-
Component/s: Tests
-
Tags:
-
Sprint:nxMS 9.1.3
-
Story Points:2
[INFO] [exec] =========================== short test summary info =========================== [INFO] [exec] FAIL nuxeo-drive-client/tests/test_conflicts.py::TestConflicts::test_XLS_conflict_on_locked_document_from_start [INFO] [exec] ================================== FAILURES =================================== [INFO] [exec] ________ TestConflicts.test_XLS_conflict_on_locked_document_from_start ________ [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] result = <TestCaseFunction 'test_XLS_conflict_on_locked_document_from_start'> [INFO] [exec] def run(self, result=None): [INFO] [exec] orig_result = result [INFO] [exec] if result is None: [INFO] [exec] result = self.defaultTestResult() [INFO] [exec] startTestRun = getattr(result, 'startTestRun', None) [INFO] [exec] if startTestRun is not None: [INFO] [exec] startTestRun() [INFO] [exec] self._resultForDoCleanups = result [INFO] [exec] result.startTest(self) [INFO] [exec] testMethod = getattr(self, self._testMethodName) [INFO] [exec] if (getattr(self.__class__, "__unittest_skip__", False) or [INFO] [exec] getattr(testMethod, "__unittest_skip__", False)): [INFO] [exec] # If the class or method was skipped. [INFO] [exec] try: [INFO] [exec] skip_why = (getattr(self.__class__, '__unittest_skip_why__', '') [INFO] [exec] or getattr(testMethod, '__unittest_skip_why__', '')) [INFO] [exec] self._addSkip(result, skip_why) [INFO] [exec] finally: [INFO] [exec] result.stopTest(self) [INFO] [exec] return [INFO] [exec] try: [INFO] [exec] success = False [INFO] [exec] try: [INFO] [exec] self.setUp() [INFO] [exec] except SkipTest as e: [INFO] [exec] self._addSkip(result, str(e)) [INFO] [exec] except KeyboardInterrupt: [INFO] [exec] raise [INFO] [exec] except: [INFO] [exec] result.addError(self, sys.exc_info()) [INFO] [exec] else: [INFO] [exec] try: [INFO] [exec] > testMethod() [INFO] [exec] cleanUpSuccess = True [INFO] [exec] orig_result = <TestCaseFunction 'test_XLS_conflict_on_locked_document_from_start'> [INFO] [exec] result = <TestCaseFunction 'test_XLS_conflict_on_locked_document_from_start'> [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] success = False [INFO] [exec] testMethod = <bound method TestConflicts.test_XLS_conflict_on_locked_document_from_start of...icts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start>> [INFO] [exec] ..\deploy-dir\drive-2.7.13-python\lib\unittest\case.py:329: [INFO] [exec] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] @skipIf(not AbstractOSIntegration.is_windows(), [INFO] [exec] 'Windows Office only test') [INFO] [exec] def test_XLS_conflict_on_locked_document_from_start(self): [INFO] [exec] > self._XLS_local_update_on_locked_document() [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] nuxeo-drive-client\tests\test_conflicts.py:139: [INFO] [exec] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] locked_from_start = True [INFO] [exec] def _XLS_local_update_on_locked_document(self, locked_from_start=True): [INFO] [exec] remote = self.remote_file_system_client_2 [INFO] [exec] local = self.local_client_1 [INFO] [exec] # user2: create remote XLS file [INFO] [exec] fs_item_id = remote.make_file(self.workspace_id, 'Excel 97 file.xls', [INFO] [exec] b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00').uid [INFO] [exec] doc_uid = fs_item_id.split("#")[-1] [INFO] [exec] self.wait_sync(wait_for_async=True) [INFO] [exec] self.assertTrue(local.exists('/Excel 97 file.xls')) [INFO] [exec] if locked_from_start: [INFO] [exec] # user2: lock document before user1 opening it [INFO] [exec] self.remote_document_client_2.lock(doc_uid) [INFO] [exec] self.wait_sync(wait_for_async=True) [INFO] [exec] local.unset_readonly('/Excel 97 file.xls') [INFO] [exec] # user1: simulate opening XLS file with MS Office ~= update its content [INFO] [exec] local.update_content('/Excel 97 file.xls', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x01') [INFO] [exec] self.wait_sync(wait_for_async=locked_from_start) [INFO] [exec] pair_state = self.engine_1.get_dao().get_normal_state_from_remote(fs_item_id) [INFO] [exec] self.assertIsNotNone(pair_state) [INFO] [exec] if locked_from_start: [INFO] [exec] # remote content hasn't changed, pair state is conflicted and remote_can_update flag is False [INFO] [exec] self.assertEqual(remote.get_content(fs_item_id), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00') [INFO] [exec] self.assertEqual(pair_state.pair_state, 'unsynchronized') [INFO] [exec] self.assertFalse(pair_state.remote_can_update) [INFO] [exec] else: [INFO] [exec] # remote content has changed, pair state is synchronized and remote_can_update flag is True [INFO] [exec] self.assertEqual(remote.get_content(fs_item_id), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x01') [INFO] [exec] self.assertEqual(pair_state.pair_state, 'synchronized') [INFO] [exec] self.assertTrue(pair_state.remote_can_update) [INFO] [exec] if not locked_from_start: [INFO] [exec] # user2: lock document after user1 opening it [INFO] [exec] self.remote_document_client_2.lock(doc_uid) [INFO] [exec] self.wait_sync(wait_for_async=True) [INFO] [exec] # user1: simulate updating XLS file with MS Office [INFO] [exec] # 1. Create empty file 787D3000 [INFO] [exec] # 2. Update 787D3000 [INFO] [exec] # 3. Update Excel 97 file.xls [INFO] [exec] # 4. Update 787D3000 [INFO] [exec] # 5. Move Excel 97 file.xls to 1743B25F.tmp [INFO] [exec] # 6. Move 787D3000 to Excel 97 file.xls [INFO] [exec] # 7. Update Excel 97 file.xls [INFO] [exec] # 8. Update 1743B25F.tmp [INFO] [exec] # 9. Update Excel 97 file.xls [INFO] [exec] # 10. Delete 1743B25F.tmp [INFO] [exec] local.make_file('/', '787D3000') [INFO] [exec] local.update_content('/787D3000', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00') [INFO] [exec] local.unset_readonly('/Excel 97 file.xls') [INFO] [exec] local.update_content('/Excel 97 file.xls', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x02') [INFO] [exec] local.update_content('/787D3000', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x03') [INFO] [exec] shutil.move(local._abspath('/Excel 97 file.xls'), local._abspath('/1743B25F.tmp')) [INFO] [exec] shutil.move(local._abspath('/787D3000'), local._abspath('/Excel 97 file.xls')) [INFO] [exec] local.update_content('/Excel 97 file.xls', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x03\x04') [INFO] [exec] local.update_content('/1743B25F.tmp', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00') [INFO] [exec] local.update_content('/Excel 97 file.xls', b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x03') [INFO] [exec] local.delete_final('/1743B25F.tmp') [INFO] [exec] self.wait_sync(wait_for_async=not locked_from_start) [INFO] [exec] self.assertEqual(len(local.get_children_info('/')), 2) [INFO] [exec] self.assertEqual(local.get_content('/Excel 97 file.xls'), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x03') [INFO] [exec] # remote content hasn't changed, pair state is conflicted and remote_can_update flag is False [INFO] [exec] if locked_from_start: [INFO] [exec] self.assertEqual(remote.get_content(fs_item_id), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00') [INFO] [exec] else: [INFO] [exec] self.assertEqual(remote.get_content(fs_item_id), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x01') [INFO] [exec] pair_state = self.engine_1.get_dao().get_normal_state_from_remote(fs_item_id) [INFO] [exec] self.assertIsNotNone(pair_state) [INFO] [exec] self.assertEqual(pair_state.pair_state, 'unsynchronized') [INFO] [exec] self.assertFalse(pair_state.remote_can_update) [INFO] [exec] # user2: remote update, conflict is detected once again and remote_can_update flag is still False [INFO] [exec] remote.update_content(fs_item_id, b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x02', 'New Excel 97 file.xls') [INFO] [exec] self.wait_sync(wait_for_async=True) [INFO] [exec] self.assertEqual(len(local.get_children_info('/')), 2) [INFO] [exec] self.assertTrue(local.exists('/Excel 97 file.xls')) [INFO] [exec] self.assertEqual(local.get_content('/Excel 97 file.xls'), b'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1\x00\x00\x03') [INFO] [exec] > self.assertEqual(len(remote.get_children_info(self.workspace_id)), 2) [INFO] [exec] doc_uid = '85d23669-a3e3-447a-9e61-54dd285325f0' [INFO] [exec] fs_item_id = 'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0' [INFO] [exec] local = <tests.win_local_client.WindowsLocalClient object at 0x0CE0AC10> [INFO] [exec] locked_from_start = True [INFO] [exec] pair_state = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: d...25f0, Local state: modified, Remote state: synchronized, State: unsynchronized) [INFO] [exec] remote = <RemoteFileSystemClient blob_timeout=60, check_suspended=None, client_version=...OILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7xzgej-nxdrive-uploads', user_id='driveuser_2'> [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] nuxeo-drive-client\tests\test_conflicts.py:222: [INFO] [exec] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] first = 3, second = 2, msg = None [INFO] [exec] def assertEqual(self, first, second, msg=None): [INFO] [exec] """Fail if the two objects are unequal as determined by the '==' [INFO] [exec] operator. [INFO] [exec] """ [INFO] [exec] assertion_func = self._getAssertEqualityFunc(first, second) [INFO] [exec] > assertion_func(first, second, msg=msg) [INFO] [exec] assertion_func = <bound method TestConflicts._baseAssertEqual of <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start>> [INFO] [exec] first = 3 [INFO] [exec] msg = None [INFO] [exec] second = 2 [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] ..\deploy-dir\drive-2.7.13-python\lib\unittest\case.py:513: [INFO] [exec] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] first = 3, second = 2, msg = '3 != 2' [INFO] [exec] def _baseAssertEqual(self, first, second, msg=None): [INFO] [exec] """The default assertEqual implementation, not type specific.""" [INFO] [exec] if not first == second: [INFO] [exec] standardMsg = '%s != %s' % (safe_repr(first), safe_repr(second)) [INFO] [exec] msg = self._formatMessage(msg, standardMsg) [INFO] [exec] > raise self.failureException(msg) [INFO] [exec] E AssertionError: 3 != 2 [INFO] [exec] first = 3 [INFO] [exec] msg = '3 != 2' [INFO] [exec] second = 2 [INFO] [exec] self = <tests.test_conflicts.TestConflicts testMethod=test_XLS_conflict_on_locked_document_from_start> [INFO] [exec] standardMsg = '3 != 2' [INFO] [exec] ..\deploy-dir\drive-2.7.13-python\lib\unittest\case.py:506: AssertionError [INFO] [exec] ---------------------------- Captured stderr call ----------------------------- [INFO] [exec] 2017-03-22 11:25:10,145 2296 2312 INFO nxdrive.manager --consider-ssl-errors option is True, will verify HTTPS certificates [INFO] [exec] 2017-03-22 11:25:10,147 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create DAO on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\nuxeo-drive-conf\manager.db [INFO] [exec] 2017-03-22 11:25:10,148 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create main connexion on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\nuxeo-drive-conf\manager.db (dir exists: 1 / file exists: 0) [INFO] [exec] 2017-03-22 11:25:10,163 2296 2312 TRACE nxdrive.manager Manager.refresh_proxies(proxy_settings=None, device_config=None) [INFO] [exec] 2017-03-22 11:25:10,164 2296 2312 TRACE nxdrive.manager Setting self.proxies['default'] = None [INFO] [exec] 2017-03-22 11:25:10,164 2296 2312 DEBUG nxdrive.osi Using Windows OS integration [INFO] [exec] 2017-03-22 11:25:10,171 2296 2312 DEBUG nxdrive.updater Application is not frozen, cannot build Esky instance, as a consequence update features won't be available [INFO] [exec] 2017-03-22 11:25:10,174 2296 2312 INFO nxdrive.manager --consider-ssl-errors option is True, will verify HTTPS certificates [INFO] [exec] 2017-03-22 11:25:10,174 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create DAO on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmpkktzavdrive-2\nuxeo-drive-conf\manager.db [INFO] [exec] 2017-03-22 11:25:10,176 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create main connexion on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmpkktzavdrive-2\nuxeo-drive-conf\manager.db (dir exists: 1 / file exists: 0) [INFO] [exec] 2017-03-22 11:25:10,191 2296 2312 TRACE nxdrive.manager Manager.refresh_proxies(proxy_settings=None, device_config=None) [INFO] [exec] 2017-03-22 11:25:10,194 2296 2312 TRACE nxdrive.manager Setting self.proxies['default'] = None [INFO] [exec] 2017-03-22 11:25:10,194 2296 2312 DEBUG nxdrive.osi Using Windows OS integration [INFO] [exec] 2017-03-22 11:25:10,198 2296 2312 DEBUG nxdrive.updater Application is not frozen, cannot build Esky instance, as a consequence update features won't be available [INFO] [exec] 2017-03-22 11:25:10,198 2296 2312 DEBUG tests.common Will use http://localhost:8080/nuxeo#NXDRIVE as url [INFO] [exec] 2017-03-22 11:25:10,200 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,200 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-administrator-device', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,237 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/"}}' [INFO] [exec] 2017-03-22 11:25:10,249 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"bf9f7a00-22fb-41cc-956b-1e6a9c39c543","path":"/","type":"Root","state":null,"parentRef":"/","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":null,"title":"bf9f7a00-22fb-41cc-956b-1e6a9c39c543","properties":{"common:icon-expanded":null,"common:icon":null,"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":null,"dc:modified":null,"dc:lastContributor":null,"dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":null,"dc:title":null,"dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":[],"dc:source":null,"dc:publisher":null},"facets":["Folderish","NotCollectionMember"]}' [INFO] [exec] 2017-03-22 11:25:10,250 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetupIntegrationTests with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"userNames": "user_1, user_2", "permission": "ReadWrite"}}' [INFO] [exec] 2017-03-22 11:25:10,349 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetupIntegrationTests' with cookies [] has content-type 'text/plain;charset=UTF-8' [INFO] [exec] 2017-03-22 11:25:10,351 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/"}}' [INFO] [exec] 2017-03-22 11:25:10,365 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"d58b08fc-ac7a-4330-94c2-2a3a77cd661c","path":"/default-domain/workspaces","type":"WorkspaceRoot","state":"project","parentRef":"2bda9d6e-078d-4d45-8241-6fa95cd82961","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490177697543","title":"Workspaces","lastModified":"2017-03-22T10:14:57.543Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"system","dc:modified":"2017-03-22T10:14:57.543Z","dc:lastContributor":"system","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:14:57.543Z","dc:title":"Workspaces","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["system"],"dc:source":null,"dc:publisher":null},"facets":["Folderish","SuperSpace","HiddenInCreation","NotCollectionMember"]}' [INFO] [exec] 2017-03-22 11:25:10,367 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.GetChildren with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"input": "doc:d58b08fc-ac7a-4330-94c2-2a3a77cd661c", "params": {}}' [INFO] [exec] 2017-03-22 11:25:10,378 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.GetChildren' with cookies []: '{"entity-type":"documents","entries":[{"entity-type":"document","repository":"default","uid":"1ac83728-e64a-4fd9-b50a-adb5f88eb77a","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"d58b08fc-ac7a-4330-94c2-2a3a77cd661c","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490178310275","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-22T10:25:10.275Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-22T10:25:10.275Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:25:10.275Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}]}' [INFO] [exec] 2017-03-22 11:25:10,378 2296 2312 DEBUG tests.common SuperWorkspace info: {u'changeToken': u'1490177697543', u'uid': u'd58b08fc-ac7a-4330-94c2-2a3a77cd661c', u'repository': u'default', u'title': u'Workspaces', u'lastModified': u'2017-03-22T10:14:57.543Z', u'facets': [u'Folderish', u'SuperSpace', u'HiddenInCreation', u'NotCollectionMember'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'2bda9d6e-078d-4d45-8241-6fa95cd82961', u'path': u'/default-domain/workspaces', u'isProxy': False, u'type': u'WorkspaceRoot', u'properties': {u'dc:subjects': [], u'dc:source': None, u'common:icon-expanded': None, u'dc:valid': None, u'dc:language': None, u'dc:creator': u'system', u'dc:title': u'Workspaces', u'dc:expired': None, u'dc:coverage': None, u'dc:modified': u'2017-03-22T10:14:57.543Z', u'dc:lastContributor': u'system', u'dc:created': u'2017-03-22T10:14:57.543Z', u'dc:contributors': [u'system'], u'common:icon': u'/icons/workspace.gif', u'dc:issued': None, u'dc:publisher': None, u'dc:nature': None, u'dc:format': None, u'dc:description': None, u'dc:rights': None}, u'isVersion': False} [INFO] [exec] 2017-03-22 11:25:10,378 2296 2312 DEBUG tests.common SuperWorkspace children: {u'entity-type': u'documents', u'entries': [{u'changeToken': u'1490178310275', u'uid': u'1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'repository': u'default', u'title': u'Nuxeo Drive Test Workspace', u'lastModified': u'2017-03-22T10:25:10.275Z', u'facets': [u'Folderish', u'SuperSpace'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'd58b08fc-ac7a-4330-94c2-2a3a77cd661c', u'path': u'/default-domain/workspaces/nuxeo-drive-test-workspace', u'isProxy': False, u'type': u'Workspace', u'properties': {u'webc:url': None, u'dc:language': None, u'dc:valid': None, u'dc:subjects': [], u'webc:theme': u'sites', u'dc:title': u'Nuxeo Drive Test Workspace', u'dc:coverage': None, u'dc:lastContributor': u'Administrator', u'dc:created': u'2017-03-22T10:25:10.275Z', u'webc:email': None, u'dc:contributors': [u'Administrator'], u'dc:publisher': None, u'dc:format': None, u'webc:baseline': None, u'dc:source': None, u'common:icon-expanded': None, u'webc:useCaptcha': None, u'dc:nature': None, u'dc:creator': u'Administrator', u'webc:logo': None, u'webc:name': None, u'file:content': None, u'webc:welcomeText': None, u'dc:description': None, u'dc:rights': None, u'webc:welcomeMedia': None, u'webc:isWebContainer': None, u'webc:template': None, u'common:icon': u'/icons/workspace.gif', u'dc:expired': None, u'webc:moderationType': u'aposteriori', u'webc:themePage': u'workspace', u'dc:modified': u'2017-03-22T10:25:10.275Z', u'webc:themePerspective': None, u'dc:issued': None, u'files:files': [], u'publish:sections': []}, u'isVersion': False}]} [INFO] [exec] 2017-03-22 11:25:10,380 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/nuxeo-drive-test-workspace"}}' [INFO] [exec] 2017-03-22 11:25:10,391 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"1ac83728-e64a-4fd9-b50a-adb5f88eb77a","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"d58b08fc-ac7a-4330-94c2-2a3a77cd661c","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490178310275","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-22T10:25:10.275Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-22T10:25:10.275Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:25:10.275Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' [INFO] [exec] 2017-03-22 11:25:10,391 2296 2312 DEBUG tests.common Workspace info: {u'changeToken': u'1490178310275', u'uid': u'1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'repository': u'default', u'title': u'Nuxeo Drive Test Workspace', u'lastModified': u'2017-03-22T10:25:10.275Z', u'facets': [u'Folderish', u'SuperSpace'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'd58b08fc-ac7a-4330-94c2-2a3a77cd661c', u'path': u'/default-domain/workspaces/nuxeo-drive-test-workspace', u'isProxy': False, u'type': u'Workspace', u'properties': {u'webc:url': None, u'dc:language': None, u'dc:valid': None, u'dc:subjects': [], u'webc:theme': u'sites', u'dc:title': u'Nuxeo Drive Test Workspace', u'dc:coverage': None, u'dc:lastContributor': u'Administrator', u'dc:created': u'2017-03-22T10:25:10.275Z', u'webc:email': None, u'dc:contributors': [u'Administrator'], u'dc:publisher': None, u'dc:format': None, u'webc:baseline': None, u'dc:source': None, u'common:icon-expanded': None, u'webc:useCaptcha': None, u'dc:nature': None, u'dc:creator': u'Administrator', u'webc:logo': None, u'webc:name': None, u'file:content': None, u'webc:welcomeText': None, u'dc:description': None, u'dc:rights': None, u'webc:welcomeMedia': None, u'webc:isWebContainer': None, u'webc:template': None, u'common:icon': u'/icons/workspace.gif', u'dc:expired': None, u'webc:moderationType': u'aposteriori', u'webc:themePage': u'workspace', u'dc:modified': u'2017-03-22T10:25:10.275Z', u'webc:themePerspective': None, u'dc:issued': None, u'files:files': [], u'publish:sections': []}, u'isVersion': False} [INFO] [exec] 2017-03-22 11:25:10,394 2296 2312 DEBUG nxdrive.manager Engine type has been specified in the url: NXDRIVE will be used [INFO] [exec] 2017-03-22 11:25:10,398 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create DAO on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\nuxeo-drive-conf\ndrive_d3ef65a10ee911e7a110080027c0f5de.db [INFO] [exec] 2017-03-22 11:25:10,400 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create main connexion on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\nuxeo-drive-conf\ndrive_d3ef65a10ee911e7a110080027c0f5de.db (dir exists: 1 / file exists: 0) [INFO] [exec] 2017-03-22 11:25:10,430 2296 2312 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite [INFO] [exec] 2017-03-22 11:25:10,437 2296 2312 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite finished [INFO] [exec] 2017-03-22 11:25:10,438 2296 2312 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:25:10,440 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,440 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,479 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=Windows+Desktop&revoke=false&deviceId=d3ccc2700ee911e78b94080027c0f5de&permission=ReadWrite with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,490 2296 2312 TRACE nxdrive.client.base_automation_client Got token 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f' with cookies [] [INFO] [exec] 2017-03-22 11:25:10,497 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:10,506 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo' with cookies []: '{"serverVersion":"9.1-SNAPSHOT","updateSiteURL":"http://community.nuxeo.com/static/drive/","betaUpdateSiteURL":"http://community.nuxeo.com/static/drive-tests/"}' [INFO] [exec] 2017-03-22 11:25:10,507 2296 2312 DEBUG nxdrive.engine.engine Fetched update info for engine [localhost] from server http://localhost:8080/nuxeo/: {u'serverVersion': u'9.1-SNAPSHOT', u'updateSiteURL': u'http://community.nuxeo.com/static/drive/', u'betaUpdateSiteURL': u'http://community.nuxeo.com/static/drive-tests/'} [INFO] [exec] 2017-03-22 11:25:10,520 2296 2312 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:10,523 2296 2312 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:25:10,523 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,523 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,556 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:10,565 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","lockInfo":null,"creationDate":562,"creator":"system","folder":true,"lastContributor":"system","lastModificationDate":562,"parentId":null,"canDelete":false,"canRename":false,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:10,565 2296 2312 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None [INFO] [exec] 2017-03-22 11:25:10,569 2296 2312 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 1, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) [INFO] [exec] 2017-03-22 11:25:10,572 2296 2312 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None [INFO] [exec] 2017-03-22 11:25:10,572 2296 2312 TRACE nxdrive.client.local_client Setting xattr ndriveroot with value 'http://localhost:8080/nuxeo/|driveuser_1|d3ccc2700ee911e78b94080027c0f5de|d3ef65a10ee911e7a110080027c0f5de' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:10,575 2296 2312 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:10,575 2296 2312 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/, remote_name=None, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:10,578 2296 2312 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created)' [INFO] [exec] 2017-03-22 11:25:10,588 2296 2312 DEBUG nxdrive.engine.watcher.local_watcher Windows detected so delete event will be delayed by 2000ms [INFO] [exec] 2017-03-22 11:25:10,592 2296 2312 DEBUG nxdrive.manager Engine type has been specified in the url: NXDRIVE will be used [INFO] [exec] 2017-03-22 11:25:10,594 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create DAO on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmpkktzavdrive-2\nuxeo-drive-conf\ndrive_d40d9c000ee911e7a0c0080027c0f5de.db [INFO] [exec] 2017-03-22 11:25:10,594 2296 2312 DEBUG nxdrive.engine.dao.sqlite Create main connexion on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmpkktzavdrive-2\nuxeo-drive-conf\ndrive_d40d9c000ee911e7a0c0080027c0f5de.db (dir exists: 1 / file exists: 0) [INFO] [exec] 2017-03-22 11:25:10,605 2296 2312 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite [INFO] [exec] 2017-03-22 11:25:10,608 2296 2312 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite finished [INFO] [exec] 2017-03-22 11:25:10,609 2296 2312 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:25:10,611 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,611 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,644 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=Windows+Desktop&revoke=false&deviceId=d3d12f400ee911e7a19c080027c0f5de&permission=ReadWrite with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,653 2296 2312 TRACE nxdrive.client.base_automation_client Got token 'da6f3800-e1bb-4e7f-87f7-d0c210c612c2' with cookies [] [INFO] [exec] 2017-03-22 11:25:10,661 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo with headers {'X-Authentication-Token': 'da6f3800-e1bb-4e7f-87f7-d0c210c612c2', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:10,668 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo' with cookies []: '{"serverVersion":"9.1-SNAPSHOT","updateSiteURL":"http://community.nuxeo.com/static/drive/","betaUpdateSiteURL":"http://community.nuxeo.com/static/drive-tests/"}' [INFO] [exec] 2017-03-22 11:25:10,670 2296 2312 DEBUG nxdrive.engine.engine Fetched update info for engine [localhost] from server http://localhost:8080/nuxeo/: {u'serverVersion': u'9.1-SNAPSHOT', u'updateSiteURL': u'http://community.nuxeo.com/static/drive/', u'betaUpdateSiteURL': u'http://community.nuxeo.com/static/drive-tests/'} [INFO] [exec] 2017-03-22 11:25:10,677 2296 2312 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:10,680 2296 2312 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:25:10,680 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,680 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': 'da6f3800-e1bb-4e7f-87f7-d0c210c612c2', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,710 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder with headers {'X-Authentication-Token': 'da6f3800-e1bb-4e7f-87f7-d0c210c612c2', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='da6f3800-e1bb-4e7f-87f7-d0c210c612c2', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:10,720 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder' with cookies [Cookie(version=0, name='X-Authentication-Token', value='da6f3800-e1bb-4e7f-87f7-d0c210c612c2', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","lockInfo":null,"creationDate":716,"creator":"system","folder":true,"lastContributor":"system","lastModificationDate":716,"parentId":null,"canDelete":false,"canRename":false,"userName":"driveuser_2"}' [INFO] [exec] 2017-03-22 11:25:10,723 2296 2312 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None [INFO] [exec] 2017-03-22 11:25:10,726 2296 2312 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 1, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) [INFO] [exec] 2017-03-22 11:25:10,729 2296 2312 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None [INFO] [exec] 2017-03-22 11:25:10,729 2296 2312 TRACE nxdrive.client.local_client Setting xattr ndriveroot with value 'http://localhost:8080/nuxeo/|driveuser_2|d3d12f400ee911e7a19c080027c0f5de|d40d9c000ee911e7a0c0080027c0f5de' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmpkktzavdrive-2\\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:10,730 2296 2312 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmpkktzavdrive-2\\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:10,730 2296 2312 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/, remote_name=None, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:10,733 2296 2312 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created)' [INFO] [exec] 2017-03-22 11:25:10,743 2296 2312 DEBUG nxdrive.engine.watcher.local_watcher Windows detected so delete event will be delayed by 2000ms [INFO] [exec] 2017-03-22 11:25:10,746 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,746 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,782 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'}, cookies [] and JSON payload '{"params": {"value": "1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:10,792 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"1ac83728-e64a-4fd9-b50a-adb5f88eb77a","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"d58b08fc-ac7a-4330-94c2-2a3a77cd661c","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490178310275","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-22T10:25:10.275Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-22T10:25:10.275Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:25:10.275Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' [INFO] [exec] 2017-03-22 11:25:10,793 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,795 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,829 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"value": "1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:10,841 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"1ac83728-e64a-4fd9-b50a-adb5f88eb77a","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"d58b08fc-ac7a-4330-94c2-2a3a77cd661c","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490178310275","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-22T10:25:10.275Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-22T10:25:10.275Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:25:10.275Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' [INFO] [exec] 2017-03-22 11:25:10,842 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,842 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,875 2296 2312 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:25:10,875 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} and cookies [] [INFO] [exec] 2017-03-22 11:25:10,911 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'}, cookies [] and JSON payload '{"input": "doc:1ac83728-e64a-4fd9-b50a-adb5f88eb77a", "params": {"enable": true}}' [INFO] [exec] 2017-03-22 11:25:10,977 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:10,979 2296 2312 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"input": "doc:1ac83728-e64a-4fd9-b50a-adb5f88eb77a", "params": {"enable": true}}' [INFO] [exec] 2017-03-22 11:25:11,049 2296 2312 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:11,052 2296 1064 DEBUG tests.common UnitTest thread started [INFO] [exec] 2017-03-22 11:25:12,069 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies []: '{"batchId":"batchId-3a93e01e-416e-4634-8a8f-a6599556fe86"}' [INFO] [exec] 2017-03-22 11:25:12,069 2296 1064 TRACE nxdrive.utils Guessed mime type 'text/plain' for 'test.txt' [INFO] [exec] 2017-03-22 11:25:12,069 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-3a93e01e-416e-4634-8a8f-a6599556fe86/0 with headers {'Content-Length': 12L, 'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'X-File-Type': 'text/plain', 'X-User-Id': 'driveuser_1', 'X-File-Size': 12L, 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0', 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'test.txt'} and cookies [] for file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpgv5tir-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:25:12,086 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-3a93e01e-416e-4634-8a8f-a6599556fe86/0' with cookies []: '{"uploaded":"true","fileIdx":"0","uploadedSize":"12","uploadType":"normal","batchId":"batchId-3a93e01e-416e-4634-8a8f-a6599556fe86"}' [INFO] [exec] 2017-03-22 11:25:12,086 2296 1064 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of NuxeoDrive.CreateFile with file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpgv5tir-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:25:12,086 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-3a93e01e-416e-4634-8a8f-a6599556fe86/0/execute/NuxeoDrive.CreateFile with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'Authorization': 'Basic ZHJpdmV1c2VyXzE6NjRmZjQ0'}, cookies [] and JSON payload '{"params": {"parentId": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:12,263 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-3a93e01e-416e-4634-8a8f-a6599556fe86/0/execute/NuxeoDrive.CreateFile' with cookies []: '{"digest":"b53227da4280f0e18270f21dd77c91d0","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt","name":"test.txt","id":"defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","lockInfo":null,"creationDate":1490178312240,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178312240,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:12,265 2296 1064 TRACE nxdrive.client.local_client Setting xattr drive-fs-test with value 'NXDRIVE_VERIFICATION' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:12,266 2296 1064 TRACE nxdrive.client.local_client Removing xattr drive-fs-test from \\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive [INFO] [exec] 2017-03-22 11:25:12,269 2296 1064 DEBUG nxdrive.engine.engine Engine d3ef65a10ee911e7a110080027c0f5de starting [INFO] [exec] 2017-03-22 11:25:12,270 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:25:12,270 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:12,270 2296 2056 DEBUG nxdrive.engine.workers Thread LocalWatcher(2056) start [INFO] [exec] 2017-03-22 11:25:12,275 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Watching FS modification on : C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive [INFO] [exec] 2017-03-22 11:25:12,285 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:12,285 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:12,361 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:13,286 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:13,290 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Watchdog setup finished [INFO] [exec] 2017-03-22 11:25:13,292 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Full scan started [INFO] [exec] 2017-03-22 11:25:13,293 2296 2056 DEBUG nxdrive.engine.queue_manager Suspending queue [INFO] [exec] 2017-03-22 11:25:13,299 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/' [INFO] [exec] 2017-03-22 11:25:13,299 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/' [INFO] [exec] 2017-03-22 11:25:13,301 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/' [INFO] [exec] 2017-03-22 11:25:13,302 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/' [INFO] [exec] 2017-03-22 11:25:13,302 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/' [INFO] [exec] 2017-03-22 11:25:13,302 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/' [INFO] [exec] 2017-03-22 11:25:13,303 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Full scan finished in 11ms [INFO] [exec] 2017-03-22 11:25:13,303 2296 2056 DEBUG nxdrive.engine.queue_manager Resuming queue [INFO] [exec] 2017-03-22 11:25:13,305 2296 2648 DEBUG nxdrive.engine.workers Thread RemoteWatcher(2648) start [INFO] [exec] 2017-03-22 11:25:13,309 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=True [INFO] [exec] 2017-03-22 11:25:13,309 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:13,309 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Remote full scan [INFO] [exec] 2017-03-22 11:25:13,311 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:13,311 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' [INFO] [exec] 2017-03-22 11:25:13,315 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:13,315 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup' [INFO] [exec] 2017-03-22 11:25:13,316 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:13,316 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup' [INFO] [exec] 2017-03-22 11:25:13,319 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup'> [INFO] [exec] 2017-03-22 11:25:13,319 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\.watchdog_setup' [INFO] [exec] 2017-03-22 11:25:13,323 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","lockInfo":null,"creationDate":321,"creator":"system","folder":true,"lastContributor":"system","lastModificationDate":321,"parentId":null,"canDelete":false,"canRename":false,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:13,323 2296 2648 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 1, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) [INFO] [exec] 2017-03-22 11:25:13,325 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:13,342 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178313000,"upperBound":1808}' [INFO] [exec] 2017-03-22 11:25:13,352 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Scroll scan not available, performing recursive remote scan for Nuxeo Drive (org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#) [INFO] [exec] 2017-03-22 11:25:13,354 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: / [INFO] [exec] 2017-03-22 11:25:13,354 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Skip remote scan as mark_unknown: StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,354 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' [INFO] [exec] 2017-03-22 11:25:13,367 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '[{"canScrollDescendants":true,"canCreateChild":true,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","lockInfo":null,"creationDate":1490178310275,"creator":"Administrator","folder":true,"lastContributor":"driveuser_2","lastModificationDate":1490178311031,"parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canDelete":true,"canRename":true,"userName":"driveuser_1"}]' [INFO] [exec] 2017-03-22 11:25:13,367 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Scanning remote child: RemoteFileInfo(name=u'Nuxeo Drive Test Workspace', uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', parent_uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', folderish=True, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 11), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) [INFO] [exec] 2017-03-22 11:25:13,374 2296 2648 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None [INFO] [exec] 2017-03-22 11:25:13,374 2296 2648 TRACE nxdrive.engine.queue_manager Pushing QueueItem[2](Folderish:True, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,374 2296 2648 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:13,377 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a) [INFO] [exec] 2017-03-22 11:25:13,378 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace [INFO] [exec] 2017-03-22 11:25:13,378 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a) [INFO] [exec] 2017-03-22 11:25:13,378 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:13,437 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"16ac65de-82ee-4831-9d8b-a5675727f419","fileSystemItems":[{"digest":"b53227da4280f0e18270f21dd77c91d0","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt","name":"test.txt","id":"defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","lockInfo":null,"creationDate":1490178312240,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178312240,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"}]}' [INFO] [exec] 2017-03-22 11:25:13,438 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved 1 descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a), took 61 ms [INFO] [exec] 2017-03-22 11:25:13,440 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'test.txt', uid=u'defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 12), last_contributor=u'driveuser_1', digest=u'b53227da4280f0e18270f21dd77c91d0', digest_algorithm=u'md5', download_url=u'nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) [INFO] [exec] 2017-03-22 11:25:13,444 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Local processing of descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a) took 6 ms [INFO] [exec] 2017-03-22 11:25:13,446 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a) [INFO] [exec] 2017-03-22 11:25:13,446 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "scrollId": "16ac65de-82ee-4831-9d8b-a5675727f419", "id": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:13,456 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"16ac65de-82ee-4831-9d8b-a5675727f419","fileSystemItems":[]}' [INFO] [exec] 2017-03-22 11:25:13,457 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a), took 12 ms [INFO] [exec] 2017-03-22 11:25:13,463 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan finished in 155ms [INFO] [exec] 2017-03-22 11:25:13,464 2296 2312 DEBUG tests.common Remote scan completed for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:13,464 2296 2312 TRACE nxdrive.engine.queue_manager Init processors [INFO] [exec] 2017-03-22 11:25:13,466 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:13,466 2296 2312 DEBUG nxdrive.engine.queue_manager creating remote folder processor [INFO] [exec] 2017-03-22 11:25:13,467 2296 2720 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(2720) start [INFO] [exec] 2017-03-22 11:25:13,467 2296 2720 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:13,470 2296 2720 TRACE nxdrive.engine.dao.sqlite Acquired processor 2720 for row 2 [INFO] [exec] 2017-03-22 11:25:13,473 2296 2720 DEBUG nxdrive.engine.processor Executing processor on StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: unknown, Remote state: created, State: remotely_created)(0) [INFO] [exec] 2017-03-22 11:25:13,473 2296 2720 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x0B47F580>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,473 2296 2720 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace [INFO] [exec] 2017-03-22 11:25:13,476 2296 2720 TRACE nxdrive.engine.processor readonly unlock: unlock on / with 0 [INFO] [exec] 2017-03-22 11:25:13,476 2296 2720 DEBUG nxdrive.engine.processor Creating local folder 'Nuxeo Drive Test Workspace' in '\\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive' [INFO] [exec] 2017-03-22 11:25:13,479 2296 2720 TRACE nxdrive.engine.processor readonly lock: update lock count on / to 0 [INFO] [exec] 2017-03-22 11:25:13,480 2296 2720 TRACE nxdrive.engine.processor readonly lock: relocked path: / with 0 [INFO] [exec] 2017-03-22 11:25:13,480 2296 2720 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,486 2296 2720 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:13,490 2296 2720 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace, remote_name=Nuxeo Drive Test Workspace, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:13,493 2296 2720 DEBUG nxdrive.engine.dao.sqlite Queuing 1 children of 'StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: unknown, Remote state: created, State: remotely_created)' [INFO] [exec] 2017-03-22 11:25:13,493 2296 2720 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None [INFO] [exec] 2017-03-22 11:25:13,493 2296 2720 TRACE nxdrive.engine.queue_manager Pushing QueueItem[3](Folderish:0, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,493 2296 2720 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:13,493 2296 2720 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x0B47F580>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,496 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:13,497 2296 2720 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace [INFO] [exec] 2017-03-22 11:25:13,500 2296 2312 DEBUG nxdrive.engine.queue_manager creating remote file processor [INFO] [exec] 2017-03-22 11:25:13,503 2296 2720 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2720 [INFO] [exec] 2017-03-22 11:25:13,506 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:13,507 2296 1960 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1960) start [INFO] [exec] 2017-03-22 11:25:13,507 2296 2720 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(2720) end [INFO] [exec] 2017-03-22 11:25:13,513 2296 1960 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:13,516 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,517 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:13,520 2296 2676 DEBUG nxdrive.engine.workers Thread GenericProcessor(2676) start [INFO] [exec] 2017-03-22 11:25:13,528 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,528 2296 1960 TRACE nxdrive.engine.dao.sqlite Acquired processor 1960 for row 3 [INFO] [exec] 2017-03-22 11:25:13,529 2296 2676 DEBUG nxdrive.engine.workers Thread GenericProcessor(2676) end [INFO] [exec] 2017-03-22 11:25:13,536 2296 2644 DEBUG nxdrive.engine.workers Thread GenericProcessor(2644) start [INFO] [exec] 2017-03-22 11:25:13,536 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,536 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:13,546 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,546 2296 2644 DEBUG nxdrive.engine.workers Thread GenericProcessor(2644) end [INFO] [exec] 2017-03-22 11:25:13,556 2296 1960 DEBUG nxdrive.engine.processor Executing processor on StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: unknown, Remote state: created, State: remotely_created)(0) [INFO] [exec] 2017-03-22 11:25:13,558 2296 2068 DEBUG nxdrive.engine.workers Thread GenericProcessor(2068) start [INFO] [exec] 2017-03-22 11:25:13,563 2296 2068 DEBUG nxdrive.engine.workers Thread GenericProcessor(2068) end [INFO] [exec] 2017-03-22 11:25:13,569 2296 1960 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x0B47F300>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,575 2296 1960 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/test.txt [INFO] [exec] 2017-03-22 11:25:13,578 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,591 2296 1960 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace with 0 [INFO] [exec] 2017-03-22 11:25:13,595 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:13,595 2296 1960 DEBUG nxdrive.engine.processor Creating local file 'test.txt' in '\\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,599 2296 1960 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5", "parentId": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:13,611 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,612 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [created]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:13,615 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:13,622 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:13,622 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,625 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,631 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,635 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,641 2296 1960 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digest":"b53227da4280f0e18270f21dd77c91d0","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt","name":"test.txt","id":"defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","lockInfo":null,"creationDate":1490178312240,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178312240,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:13,645 2296 1960 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt' to u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart' with digest=b53227da4280f0e18270f21dd77c91d0, digest_algorithm=md5 [INFO] [exec] 2017-03-22 11:25:13,648 2296 1960 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt' with headers: {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} [INFO] [exec] 2017-03-22 11:25:13,657 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,661 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:13,664 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:13,667 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:13,677 2296 1960 TRACE nxdrive.engine.processor Transfer speed 0 ko/s [INFO] [exec] 2017-03-22 11:25:13,678 2296 1960 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart' [INFO] [exec] 2017-03-22 11:25:13,681 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:13,690 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,691 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,703 2296 1960 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace to 0 [INFO] [exec] 2017-03-22 11:25:13,704 2296 1960 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace with 0 [INFO] [exec] 2017-03-22 11:25:13,706 2296 1960 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt' [INFO] [exec] 2017-03-22 11:25:13,714 2296 1960 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\test.txt, remote_ref=defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5] [INFO] [exec] 2017-03-22 11:25:13,717 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart'> [INFO] [exec] 2017-03-22 11:25:13,720 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart'> [INFO] [exec] 2017-03-22 11:25:13,721 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,721 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt'> [INFO] [exec] 2017-03-22 11:25:13,721 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,723 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt'> [INFO] [exec] 2017-03-22 11:25:13,723 2296 1960 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/test.txt' as readonly [INFO] [exec] 2017-03-22 11:25:13,724 2296 1960 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/test.txt, remote_name=test.txt, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:13,727 2296 1960 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x0B47F300>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:13,730 2296 1960 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/test.txt [INFO] [exec] 2017-03-22 11:25:13,730 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart'> [INFO] [exec] 2017-03-22 11:25:13,733 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart' [INFO] [exec] 2017-03-22 11:25:13,734 2296 1960 TRACE nxdrive.engine.dao.sqlite No processor to release with id 1960 [INFO] [exec] 2017-03-22 11:25:13,739 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart'> [INFO] [exec] 2017-03-22 11:25:13,740 2296 1960 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1960) end [INFO] [exec] 2017-03-22 11:25:13,740 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart' [INFO] [exec] 2017-03-22 11:25:13,746 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,747 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,749 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,752 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:13,753 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:13,753 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:13,757 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:13,757 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,757 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,757 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.test.txt1960.nxpart', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt'> [INFO] [exec] 2017-03-22 11:25:13,757 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\.test.txt1960.nxpart to C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\test.txt [INFO] [exec] 2017-03-22 11:25:13,759 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:13,759 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:13,759 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,763 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:13,763 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:13,763 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:13,769 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:13,769 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,769 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,769 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt'> [INFO] [exec] 2017-03-22 11:25:13,770 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt' [INFO] [exec] 2017-03-22 11:25:13,773 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\test.txt'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,776 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 3 [INFO] [exec] 2017-03-22 11:25:13,779 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/test.txt (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:13,779 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\test.txt, remote_ref=defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5] [INFO] [exec] 2017-03-22 11:25:13,783 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:13,785 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:13,785 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/test.txt', Remote: defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:16,726 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:16,726 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:16,726 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1808, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:16,753 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178316000,"upperBound":1822}' [INFO] [exec] 2017-03-22 11:25:16,753 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:16,759 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:16,762 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:16,763 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:17,368 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': False, u'd40d9c000ee911e7a0c0080027c0f5de': True}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:17,368 2296 1064 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False [INFO] [exec] 2017-03-22 11:25:17,381 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies []: '{"batchId":"batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30"}' [INFO] [exec] 2017-03-22 11:25:17,381 2296 1064 TRACE nxdrive.utils Guessed mime type 'application/vnd.ms-excel' for 'Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:17,381 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30/0 with headers {'Content-Length': 10L, 'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'X-File-Type': 'application/vnd.ms-excel', 'X-User-Id': 'driveuser_2', 'X-File-Size': 10L, 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi', 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'Excel%2097%20file.xls'} and cookies [] for file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpaaveg3-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:25:17,398 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30/0' with cookies []: '{"uploaded":"true","fileIdx":"0","uploadedSize":"10","uploadType":"normal","batchId":"batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30"}' [INFO] [exec] 2017-03-22 11:25:17,398 2296 1064 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of NuxeoDrive.CreateFile with file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpaaveg3-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:25:17,398 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30/0/execute/NuxeoDrive.CreateFile with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"parentId": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:17,552 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-f28ca7e2-d46f-4e45-8e9b-ae17eae91e30/0/execute/NuxeoDrive.CreateFile' with cookies []: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"}' [INFO] [exec] 2017-03-22 11:25:17,555 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:25:17,555 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:17,665 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:20,013 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:20,013 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:20,015 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1822, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:20,042 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[{"eventId":"documentCreated","fileSystemItem":{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"},"fileSystemItemId":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","fileSystemItemName":"Excel 97 file.xls","eventDate":1490178317519,"repositoryId":"default","docUuid":"85d23669-a3e3-447a-9e61-54dd285325f0"}],"hasTooManyChanges":false,"syncDate":1490178320000,"upperBound":1830}' [INFO] [exec] 2017-03-22 11:25:20,042 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher 1 remote changes detected [INFO] [exec] 2017-03-22 11:25:20,042 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'Excel 97 file.xls', u'canDelete': True, u'creator': u'driveuser_2', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490178317519L, u'parentId': u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'canRename': True, u'downloadURL': u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls', u'lockInfo': None, u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'folder': False, u'creationDate': 1490178317519L, u'lastContributor': u'driveuser_2', u'id': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'digest': u'49c963ba1bb9e01947c8bc1e72112d09'}, u'repositoryId': u'default', u'fileSystemItemName': u'Excel 97 file.xls', u'fileSystemItemId': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'docUuid': u'85d23669-a3e3-447a-9e61-54dd285325f0', u'eventDate': 1490178317519L} [INFO] [exec] 2017-03-22 11:25:20,043 2296 2312 DEBUG tests.common Remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:20,055 2296 2648 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None [INFO] [exec] 2017-03-22 11:25:20,055 2296 2648 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:False, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:20,055 2296 2648 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:20,059 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:20,063 2296 2312 DEBUG nxdrive.engine.queue_manager creating remote file processor [INFO] [exec] 2017-03-22 11:25:20,065 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Marked doc_pair 'Excel 97 file.xls' as remote creation [INFO] [exec] 2017-03-22 11:25:20,071 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:20,072 2296 1900 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1900) start [INFO] [exec] 2017-03-22 11:25:20,072 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:20,076 2296 1900 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:20,075 2296 904 DEBUG nxdrive.engine.workers Thread GenericProcessor(904) start [INFO] [exec] 2017-03-22 11:25:20,085 2296 904 DEBUG nxdrive.engine.workers Thread GenericProcessor(904) end [INFO] [exec] 2017-03-22 11:25:20,089 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:20,091 2296 2680 DEBUG nxdrive.engine.workers Thread GenericProcessor(2680) start [INFO] [exec] 2017-03-22 11:25:20,092 2296 1900 TRACE nxdrive.engine.dao.sqlite Acquired processor 1900 for row 4 [INFO] [exec] 2017-03-22 11:25:20,105 2296 2680 DEBUG nxdrive.engine.workers Thread GenericProcessor(2680) end [INFO] [exec] 2017-03-22 11:25:20,111 2296 284 DEBUG nxdrive.engine.workers Thread GenericProcessor(284) start [INFO] [exec] 2017-03-22 11:25:20,118 2296 284 DEBUG nxdrive.engine.workers Thread GenericProcessor(284) end [INFO] [exec] 2017-03-22 11:25:20,128 2296 1900 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: unknown, Remote state: created, State: remotely_created)(0) [INFO] [exec] 2017-03-22 11:25:20,128 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:20,132 2296 1900 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x071908F0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:20,132 2296 1900 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:20,134 2296 1900 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace with 0 [INFO] [exec] 2017-03-22 11:25:20,135 2296 1900 DEBUG nxdrive.engine.processor Creating local file 'Excel 97 file.xls' in '\\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:20,137 2296 1900 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0", "parentId": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:20,154 2296 1900 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:20,154 2296 1900 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' to u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart' with digest=49c963ba1bb9e01947c8bc1e72112d09, digest_algorithm=md5 [INFO] [exec] 2017-03-22 11:25:20,154 2296 1900 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' with headers: {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} [INFO] [exec] 2017-03-22 11:25:20,171 2296 1900 TRACE nxdrive.engine.processor Transfer speed 0 ko/s [INFO] [exec] 2017-03-22 11:25:20,171 2296 1900 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart' [INFO] [exec] 2017-03-22 11:25:20,187 2296 1900 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace to 0 [INFO] [exec] 2017-03-22 11:25:20,188 2296 1900 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace with 0 [INFO] [exec] 2017-03-22 11:25:20,188 2296 1900 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:20,197 2296 1900 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls, remote_ref=defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0] [INFO] [exec] 2017-03-22 11:25:20,200 2296 1900 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Excel 97 file.xls' as readonly [INFO] [exec] 2017-03-22 11:25:20,201 2296 1900 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Excel 97 file.xls, remote_name=Excel 97 file.xls, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:20,204 2296 1900 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x071908F0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: unknown, Remote state: created, State: remotely_created) [INFO] [exec] 2017-03-22 11:25:20,206 2296 1900 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:20,206 2296 1900 TRACE nxdrive.engine.dao.sqlite No processor to release with id 1900 [INFO] [exec] 2017-03-22 11:25:20,207 2296 1900 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1900) end [INFO] [exec] 2017-03-22 11:25:20,210 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart'> [INFO] [exec] 2017-03-22 11:25:20,214 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart'> [INFO] [exec] 2017-03-22 11:25:20,214 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:20,214 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:20,214 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:20,217 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:20,220 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart'> [INFO] [exec] 2017-03-22 11:25:20,220 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart' [INFO] [exec] 2017-03-22 11:25:20,220 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart'> [INFO] [exec] 2017-03-22 11:25:20,220 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart' [INFO] [exec] 2017-03-22 11:25:20,221 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:20,221 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:20,223 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,226 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:20,229 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:20,229 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:20,233 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:20,233 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,234 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,234 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\.Excel 97 file.xls1900.nxpart', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:20,234 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\.Excel 97 file.xls1900.nxpart to C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:20,236 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:20,236 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:20,236 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,239 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:20,240 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:20,240 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:20,246 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:20,247 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,247 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,247 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:20,249 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:20,250 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,255 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 4 [INFO] [exec] 2017-03-22 11:25:20,257 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/Excel 97 file.xls (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:20,257 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls, remote_ref=defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0] [INFO] [exec] 2017-03-22 11:25:20,266 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:20,266 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:20,266 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:23,378 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:23,378 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:23,380 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1830, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:23,403 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178323000,"upperBound":1836}' [INFO] [exec] 2017-03-22 11:25:23,405 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:23,415 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:23,417 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:23,418 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:23,671 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 1, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:23,671 2296 1064 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False [INFO] [exec] 2017-03-22 11:25:23,674 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Lock with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"input": "doc:85d23669-a3e3-447a-9e61-54dd285325f0", "params": {}}' [INFO] [exec] 2017-03-22 11:25:23,696 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Lock' with cookies []: '{"entity-type":"document","repository":"default","uid":"85d23669-a3e3-447a-9e61-54dd285325f0","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Excel 97 file.xls","type":"File","state":"project","parentRef":"1ac83728-e64a-4fd9-b50a-adb5f88eb77a","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490178317519","title":"Excel 97 file.xls","lastModified":"2017-03-22T10:25:17.519Z","properties":{"uid:uid":null,"uid:major_version":0,"uid:minor_version":0,"thumb:thumbnail":{"name":"6774de45dfe501972e8b14cfda0b7605","mime-type":"image/png","encoding":null,"digestAlgorithm":"MD5","digest":"6774de45dfe501972e8b14cfda0b7605","length":"1304","data":"http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/thumb:thumbnail/6774de45dfe501972e8b14cfda0b7605"},"file:content":{"name":"Excel 97 file.xls","mime-type":"application/vnd.ms-excel","encoding":null,"digestAlgorithm":"MD5","digest":"49c963ba1bb9e01947c8bc1e72112d09","length":"10","data":"http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/file:content/Excel%2097%20file.xls"},"common:icon-expanded":null,"common:icon":"/icons/xls.png","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_2","dc:modified":"2017-03-22T10:25:17.519Z","dc:lastContributor":"driveuser_2","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-22T10:25:17.519Z","dc:title":"Excel 97 file.xls","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_2"],"dc:source":null,"dc:publisher":null,"relatedtext:relatedtextresources":[]},"facets":["Versionable","Publishable","Commentable","HasRelatedText","Thumbnail","Downloadable"]}' [INFO] [exec] 2017-03-22 11:25:23,697 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:25:23,697 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:24,786 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:26,658 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:26,658 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:26,661 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1836, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:26,687 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[{"eventId":"documentLocked","fileSystemItem":{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":false,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":false,"canRename":false,"userName":"driveuser_1"},"fileSystemItemId":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","fileSystemItemName":"Excel 97 file.xls","eventDate":1490178323689,"repositoryId":"default","docUuid":"85d23669-a3e3-447a-9e61-54dd285325f0"}],"hasTooManyChanges":false,"syncDate":1490178326000,"upperBound":1841}' [INFO] [exec] 2017-03-22 11:25:26,687 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher 1 remote changes detected [INFO] [exec] 2017-03-22 11:25:26,688 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentLocked', u'fileSystemItem': {u'canUpdate': False, u'userName': u'driveuser_1', u'name': u'Excel 97 file.xls', u'canDelete': False, u'creator': u'driveuser_2', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490178317519L, u'parentId': u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'canRename': False, u'downloadURL': u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls', u'lockInfo': None, u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'folder': False, u'creationDate': 1490178317519L, u'lastContributor': u'driveuser_2', u'id': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'digest': u'49c963ba1bb9e01947c8bc1e72112d09'}, u'repositoryId': u'default', u'fileSystemItemName': u'Excel 97 file.xls', u'fileSystemItemId': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'docUuid': u'85d23669-a3e3-447a-9e61-54dd285325f0', u'eventDate': 1490178323689L} [INFO] [exec] 2017-03-22 11:25:26,688 2296 2312 DEBUG tests.common Remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:26,691 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Excel 97 file.xls', eventId = documentLocked (force_recursion:0) [INFO] [exec] 2017-03-22 11:25:26,694 2296 2648 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: synchronized) with info = RemoteFileInfo(name=u'Excel 97 file.xls', uid=u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 17), last_contributor=u'driveuser_2', digest=u'49c963ba1bb9e01947c8bc1e72112d09', digest_algorithm=u'md5', download_url=u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls', can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: True) [INFO] [exec] 2017-03-22 11:25:26,694 2296 2648 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: synchronized) [INFO] [exec] 2017-03-22 11:25:26,700 2296 2648 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_modified, pair=None [INFO] [exec] 2017-03-22 11:25:26,700 2296 2648 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:False, State: remotely_modified) [INFO] [exec] 2017-03-22 11:25:26,700 2296 2648 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:26,704 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:26,706 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Setting u'/Nuxeo Drive Test Workspace/Excel 97 file.xls' as readonly [INFO] [exec] 2017-03-22 11:25:26,709 2296 2312 DEBUG nxdrive.engine.queue_manager creating remote file processor [INFO] [exec] 2017-03-22 11:25:26,713 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:26,713 2296 1008 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1008) start [INFO] [exec] 2017-03-22 11:25:26,721 2296 1008 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:26,726 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:26,726 2296 1280 DEBUG nxdrive.engine.workers Thread GenericProcessor(1280) start [INFO] [exec] 2017-03-22 11:25:26,733 2296 1280 DEBUG nxdrive.engine.workers Thread GenericProcessor(1280) end [INFO] [exec] 2017-03-22 11:25:26,737 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:26,739 2296 2632 DEBUG nxdrive.engine.workers Thread GenericProcessor(2632) start [INFO] [exec] 2017-03-22 11:25:26,739 2296 1008 TRACE nxdrive.engine.dao.sqlite Acquired processor 1008 for row 4 [INFO] [exec] 2017-03-22 11:25:26,740 2296 2476 DEBUG nxdrive.engine.workers Thread GenericProcessor(2476) start [INFO] [exec] 2017-03-22 11:25:26,750 2296 2632 DEBUG nxdrive.engine.workers Thread GenericProcessor(2632) end [INFO] [exec] 2017-03-22 11:25:26,752 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:26,753 2296 2476 DEBUG nxdrive.engine.workers Thread GenericProcessor(2476) end [INFO] [exec] 2017-03-22 11:25:26,769 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:26,770 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:26,775 2296 1008 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: remotely_modified)(1) [INFO] [exec] 2017-03-22 11:25:26,779 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:26,788 2296 1008 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_modified of <nxdrive.engine.processor.Processor object at 0x0B47F850>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: remotely_modified) [INFO] [exec] 2017-03-22 11:25:26,792 2296 1008 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:26,802 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: remotely_modified) [INFO] [exec] 2017-03-22 11:25:26,806 2296 1008 DEBUG nxdrive.engine.processor No local impact of metadata update on document 'Excel 97 file.xls'. [INFO] [exec] 2017-03-22 11:25:26,806 2296 2056 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 2056 for row 4: either row does't exist or it is being processed [INFO] [exec] 2017-03-22 11:25:26,809 2296 1008 DEBUG nxdrive.engine.processor Setting u'/Nuxeo Drive Test Workspace/Excel 97 file.xls' as readonly [INFO] [exec] 2017-03-22 11:25:26,811 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: remotely_modified) [INFO] [exec] 2017-03-22 11:25:26,815 2296 2056 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2056 [INFO] [exec] 2017-03-22 11:25:26,815 2296 1008 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Excel 97 file.xls, remote_name=Excel 97 file.xls, version=1] with version=1 [INFO] [exec] 2017-03-22 11:25:26,821 2296 1008 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_modified of <nxdrive.engine.processor.Processor object at 0x0B47F850>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: modified, State: remotely_modified) [INFO] [exec] 2017-03-22 11:25:26,822 2296 1008 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:26,822 2296 1008 TRACE nxdrive.engine.dao.sqlite No processor to release with id 1008 [INFO] [exec] 2017-03-22 11:25:26,823 2296 1008 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(1008) end [INFO] [exec] 2017-03-22 11:25:29,997 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:29,997 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:30,000 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1841, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:30,020 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178330000,"upperBound":1843}' [INFO] [exec] 2017-03-22 11:25:30,022 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:30,032 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:30,036 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:30,036 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:30,792 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 1, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:30,792 2296 1064 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False [INFO] [exec] 2017-03-22 11:25:30,801 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:25:30,805 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:30,806 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:25:30,812 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:30,812 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:30,819 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:30,825 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:30,829 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 4 [INFO] [exec] 2017-03-22 11:25:30,835 2296 2056 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:30,836 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls, remote_ref=None] [INFO] [exec] 2017-03-22 11:25:30,838 2296 2056 TRACE nxdrive.engine.dao.sqlite Increasing version to 2 for pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:30,839 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:30,845 2296 2056 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_modified, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:30,845 2296 2056 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:False, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,845 2296 2056 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:30,845 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:30,845 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:30,848 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,849 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,849 2296 2876 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2876) start [INFO] [exec] 2017-03-22 11:25:30,851 2296 2864 DEBUG nxdrive.engine.workers Thread GenericProcessor(2864) start [INFO] [exec] 2017-03-22 11:25:30,862 2296 2864 DEBUG nxdrive.engine.workers Thread GenericProcessor(2864) end [INFO] [exec] 2017-03-22 11:25:30,862 2296 2876 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:30,865 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:30,869 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,869 2296 1384 DEBUG nxdrive.engine.workers Thread GenericProcessor(1384) start [INFO] [exec] 2017-03-22 11:25:30,877 2296 1384 DEBUG nxdrive.engine.workers Thread GenericProcessor(1384) end [INFO] [exec] 2017-03-22 11:25:30,882 2296 2440 DEBUG nxdrive.engine.workers Thread GenericProcessor(2440) start [INFO] [exec] 2017-03-22 11:25:30,888 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,891 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:25:30,891 2296 2440 DEBUG nxdrive.engine.workers Thread GenericProcessor(2440) end [INFO] [exec] 2017-03-22 11:25:30,897 2296 2056 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_modified, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,900 2296 2876 TRACE nxdrive.engine.dao.sqlite Acquired processor 2876 for row 4 [INFO] [exec] 2017-03-22 11:25:30,903 2296 2056 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,910 2296 2056 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:30,911 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:30,918 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:30,918 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,921 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:30,921 2296 2876 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified)(2) [INFO] [exec] 2017-03-22 11:25:30,931 2296 2876 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0"}}' [INFO] [exec] 2017-03-22 11:25:30,934 2296 2368 DEBUG nxdrive.engine.workers Thread GenericProcessor(2368) start [INFO] [exec] 2017-03-22 11:25:30,934 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,944 2296 2368 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:30,953 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:30,954 2296 2404 DEBUG nxdrive.engine.workers Thread GenericProcessor(2404) start [INFO] [exec] 2017-03-22 11:25:30,956 2296 2368 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 2368 for row 4: either row does't exist or it is being processed [INFO] [exec] 2017-03-22 11:25:30,963 2296 2404 DEBUG nxdrive.engine.workers Thread GenericProcessor(2404) end [INFO] [exec] 2017-03-22 11:25:30,964 2296 2368 TRACE nxdrive.engine.processor Cannot acquire state for: QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,970 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,973 2296 2368 TRACE nxdrive.engine.processor Postpone creation of local file(Pair in use): QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,980 2296 2872 DEBUG nxdrive.engine.workers Thread GenericProcessor(2872) start [INFO] [exec] 2017-03-22 11:25:30,979 2296 2368 DEBUG nxdrive.engine.queue_manager Blacklisting pair for 3s: QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,986 2296 2056 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 2056 for row 4: either row does't exist or it is being processed [INFO] [exec] 2017-03-22 11:25:30,989 2296 2872 DEBUG nxdrive.engine.workers Thread GenericProcessor(2872) end [INFO] [exec] 2017-03-22 11:25:30,992 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:30,993 2296 2368 DEBUG nxdrive.engine.workers Thread GenericProcessor(2368) end [INFO] [exec] 2017-03-22 11:25:30,996 2296 2876 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":false,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":{"owner":"driveuser_2","created":1490178323685,"failed":false},"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":false,"canRename":false,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:31,003 2296 2056 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2056 [INFO] [exec] 2017-03-22 11:25:31,005 2296 2876 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) with info = RemoteFileInfo(name=u'Excel 97 file.xls', uid=u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 17), last_contributor=u'driveuser_2', digest=u'49c963ba1bb9e01947c8bc1e72112d09', digest_algorithm=u'md5', download_url=u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls', can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=u'driveuser_2', lock_created=datetime.datetime(2017, 3, 22, 11, 25, 23), can_scroll_descendants=False) [INFO] [exec] 2017-03-22 11:25:31,009 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:31,015 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:31,022 2296 2876 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_modified of <nxdrive.engine.processor.Processor object at 0x0AC0C8A0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:31,025 2296 2876 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:31,028 2296 2876 DEBUG nxdrive.engine.processor Skip update of remote document 'Excel 97 file.xls' as it is readonly. [INFO] [exec] 2017-03-22 11:25:31,032 2296 2876 DEBUG nxdrive.engine.processor Set pair unsynchronized: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:31,035 2296 2876 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0"}}' [INFO] [exec] 2017-03-22 11:25:31,040 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:31,042 2296 2056 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 2056 for row 4: either row does't exist or it is being processed [INFO] [exec] 2017-03-22 11:25:31,042 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:31,043 2296 2056 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2056 [INFO] [exec] 2017-03-22 11:25:31,053 2296 2876 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":false,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":{"owner":"driveuser_2","created":1490178323685,"failed":false},"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":false,"canRename":false,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:31,059 2296 2876 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_modified of <nxdrive.engine.processor.Processor object at 0x0AC0C8A0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:31,062 2296 2876 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:31,063 2296 2876 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2876 [INFO] [exec] 2017-03-22 11:25:31,063 2296 2876 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2876) end [INFO] [exec] 2017-03-22 11:25:33,290 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:33,290 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:33,292 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1843, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:33,315 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178333000,"upperBound":1850}' [INFO] [exec] 2017-03-22 11:25:33,315 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:33,326 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 1, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:33,987 2296 2312 DEBUG nxdrive.engine.queue_manager End of blacklist period, pushing doc_pair: QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:33,989 2296 2312 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:0, State: locally_modified) [INFO] [exec] 2017-03-22 11:25:33,989 2296 2312 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:33,989 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:33,990 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:33,990 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:33,990 2296 2292 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2292) start [INFO] [exec] 2017-03-22 11:25:33,990 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:33,994 2296 2184 DEBUG nxdrive.engine.workers Thread GenericProcessor(2184) start [INFO] [exec] 2017-03-22 11:25:33,999 2296 2292 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:34,006 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:34,000 2296 2184 DEBUG nxdrive.engine.workers Thread GenericProcessor(2184) end [INFO] [exec] 2017-03-22 11:25:34,010 2296 120 DEBUG nxdrive.engine.workers Thread GenericProcessor(120) start [INFO] [exec] 2017-03-22 11:25:34,013 2296 2292 TRACE nxdrive.engine.dao.sqlite Acquired processor 2292 for row 4 [INFO] [exec] 2017-03-22 11:25:34,023 2296 120 DEBUG nxdrive.engine.workers Thread GenericProcessor(120) end [INFO] [exec] 2017-03-22 11:25:34,030 2296 2824 DEBUG nxdrive.engine.workers Thread GenericProcessor(2824) start [INFO] [exec] 2017-03-22 11:25:34,035 2296 2292 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: unsynchronized)(2) [INFO] [exec] 2017-03-22 11:25:34,036 2296 2824 DEBUG nxdrive.engine.workers Thread GenericProcessor(2824) end [INFO] [exec] 2017-03-22 11:25:34,039 2296 2292 TRACE nxdrive.engine.processor Skip as pair is in non-processable state: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: synchronized, State: unsynchronized) [INFO] [exec] 2017-03-22 11:25:34,048 2296 2292 TRACE nxdrive.engine.dao.sqlite Released processor 2292 [INFO] [exec] 2017-03-22 11:25:34,048 2296 2292 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2292) end [INFO] [exec] 2017-03-22 11:25:36,575 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:36,575 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:36,575 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1850, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:36,595 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178336000,"upperBound":1852}' [INFO] [exec] 2017-03-22 11:25:36,596 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:36,605 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 3, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:36,608 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:36,608 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:36,904 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:37,905 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:38,907 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:39,845 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:39,849 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:39,849 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1852, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:39,871 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178339000,"upperBound":1854}' [INFO] [exec] 2017-03-22 11:25:39,872 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:39,880 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 4, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:39,882 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:39,882 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:39,907 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:40,908 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:41,913 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:42,914 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:43,125 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:43,125 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:43,127 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1854, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:43,153 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178343000,"upperBound":1856}' [INFO] [exec] 2017-03-22 11:25:43,154 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:43,163 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 5, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:43,167 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:43,167 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:43,914 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:44,915 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:45,917 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:46,424 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:46,424 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:46,424 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1856, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:46,444 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178346000,"upperBound":1858}' [INFO] [exec] 2017-03-22 11:25:46,446 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:46,453 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 6, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:46,457 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:46,457 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:46,917 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:47,920 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:48,921 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:49,694 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:49,694 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:49,696 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1858, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:49,717 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178349000,"upperBound":1860}' [INFO] [exec] 2017-03-22 11:25:49,717 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:49,729 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 7, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:49,733 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:49,733 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:49,923 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:50,924 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 0, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:25:50,924 2296 1064 WARNING tests.common Wait for sync timeout has expired [INFO] [exec] 2017-03-22 11:25:50,926 2296 1064 TRACE nxdrive.engine.dao.sqlite Cache Syncing count incorrect should be 0 was 4 [INFO] [exec] 2017-03-22 11:25:50,927 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0"}}' [INFO] [exec] 2017-03-22 11:25:50,941 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies []: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":{"owner":"driveuser_2","created":1490178323685,"failed":false},"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"}' [INFO] [exec] 2017-03-22 11:25:50,941 2296 1064 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' to None with digest=49c963ba1bb9e01947c8bc1e72112d09, digest_algorithm=md5 [INFO] [exec] 2017-03-22 11:25:50,943 2296 1064 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' with headers: {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} [INFO] [exec] 2017-03-22 11:25:50,969 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:50,976 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:50,976 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:50,980 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000' [INFO] [exec] 2017-03-22 11:25:50,984 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:50,993 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,010 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:51,026 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,036 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,040 2296 2056 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_created, pair=None [INFO] [exec] 2017-03-22 11:25:51,043 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,045 2296 2056 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:False, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,051 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,053 2296 2056 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:51,059 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,069 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:51,078 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:51,081 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:51,079 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,088 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000' [INFO] [exec] 2017-03-22 11:25:51,107 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,108 2296 2832 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2832) start [INFO] [exec] 2017-03-22 11:25:51,117 2296 2832 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:51,125 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,127 2296 2332 DEBUG nxdrive.engine.workers Thread GenericProcessor(2332) start [INFO] [exec] 2017-03-22 11:25:51,130 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> on known pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,132 2296 2832 TRACE nxdrive.engine.dao.sqlite Acquired processor 2832 for row 5 [INFO] [exec] 2017-03-22 11:25:51,138 2296 2332 DEBUG nxdrive.engine.workers Thread GenericProcessor(2332) end [INFO] [exec] 2017-03-22 11:25:51,145 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,151 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,151 2296 2056 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 2056 for row 5: either row does't exist or it is being processed [INFO] [exec] 2017-03-22 11:25:51,154 2296 2016 DEBUG nxdrive.engine.workers Thread GenericProcessor(2016) start [INFO] [exec] 2017-03-22 11:25:51,161 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,165 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,167 2296 2016 DEBUG nxdrive.engine.workers Thread GenericProcessor(2016) end [INFO] [exec] 2017-03-22 11:25:51,177 2296 2804 DEBUG nxdrive.engine.workers Thread GenericProcessor(2804) start [INFO] [exec] 2017-03-22 11:25:51,180 2296 2832 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created)(0) [INFO] [exec] 2017-03-22 11:25:51,184 2296 2056 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2056 [INFO] [exec] 2017-03-22 11:25:51,188 2296 2804 DEBUG nxdrive.engine.workers Thread GenericProcessor(2804) end [INFO] [exec] 2017-03-22 11:25:51,198 2296 2832 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x0D5685D0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,197 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,207 2296 2832 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/787D3000 [INFO] [exec] 2017-03-22 11:25:51,214 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:51,214 2296 2832 DEBUG nxdrive.engine.workers Increasing error [Can be Office Temp] (None) for StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,223 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:51,223 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,223 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:51,226 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,227 2296 2832 DEBUG nxdrive.engine.queue_manager Blacklisting pair for 60s: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,236 2296 2832 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x0D5685D0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,240 2296 2832 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/787d3000 [INFO] [exec] 2017-03-22 11:25:51,244 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,247 2296 2832 TRACE nxdrive.engine.dao.sqlite Released processor 2832 [INFO] [exec] 2017-03-22 11:25:51,250 2296 2832 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2832) end [INFO] [exec] 2017-03-22 11:25:51,252 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:51,253 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:51,253 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:51,260 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:51,262 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,262 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,262 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> [INFO] [exec] 2017-03-22 11:25:51,262 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000' [INFO] [exec] 2017-03-22 11:25:51,266 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000'> on known pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,267 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:25:51,269 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 5 [INFO] [exec] 2017-03-22 11:25:51,270 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_created, pair=StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:0, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:51,273 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,276 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls to C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\1743B25F.tmp [INFO] [exec] 2017-03-22 11:25:51,276 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:51,279 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:51,289 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,289 2296 1672 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(1672) start [INFO] [exec] 2017-03-22 11:25:51,296 2296 1672 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(1672) end [INFO] [exec] 2017-03-22 11:25:51,301 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,302 2296 2596 DEBUG nxdrive.engine.workers Thread GenericProcessor(2596) start [INFO] [exec] 2017-03-22 11:25:51,302 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:51,309 2296 2596 DEBUG nxdrive.engine.workers Thread GenericProcessor(2596) end [INFO] [exec] 2017-03-22 11:25:51,312 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,315 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,318 2296 1036 DEBUG nxdrive.engine.workers Thread GenericProcessor(1036) start [INFO] [exec] 2017-03-22 11:25:51,316 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,323 2296 1036 DEBUG nxdrive.engine.workers Thread GenericProcessor(1036) end [INFO] [exec] 2017-03-22 11:25:51,322 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:51,332 2296 2576 DEBUG nxdrive.engine.workers Thread GenericProcessor(2576) start [INFO] [exec] 2017-03-22 11:25:51,338 2296 2576 DEBUG nxdrive.engine.workers Thread GenericProcessor(2576) end [INFO] [exec] 2017-03-22 11:25:51,351 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,358 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:51,359 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:51,359 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:51,367 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:51,367 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,368 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,368 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,368 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\787D3000 to C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:51,368 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileMovedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\787D3000', dest_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> on known pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,371 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Detect move for u'Excel 97 file.xls' (StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created)) [INFO] [exec] 2017-03-22 11:25:51,371 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls, remote_ref=None] [INFO] [exec] 2017-03-22 11:25:51,371 2296 2056 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_created, pair=StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,371 2296 2056 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:False, State: locally_created) [INFO] [exec] 2017-03-22 11:25:51,372 2296 2056 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:51,372 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:51,374 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:51,375 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,377 2296 2380 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2380) start [INFO] [exec] 2017-03-22 11:25:51,377 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,378 2296 2844 DEBUG nxdrive.engine.workers Thread GenericProcessor(2844) start [INFO] [exec] 2017-03-22 11:25:51,381 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,382 2296 2380 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2380) end [INFO] [exec] 2017-03-22 11:25:51,388 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:51,387 2296 2844 DEBUG nxdrive.engine.workers Thread GenericProcessor(2844) end [INFO] [exec] 2017-03-22 11:25:51,397 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:51,398 2296 1688 DEBUG nxdrive.engine.workers Thread GenericProcessor(1688) start [INFO] [exec] 2017-03-22 11:25:51,404 2296 1688 DEBUG nxdrive.engine.workers Thread GenericProcessor(1688) end [INFO] [exec] 2017-03-22 11:25:51,410 2296 2412 DEBUG nxdrive.engine.workers Thread GenericProcessor(2412) start [INFO] [exec] 2017-03-22 11:25:51,414 2296 2412 DEBUG nxdrive.engine.workers Thread GenericProcessor(2412) end [INFO] [exec] 2017-03-22 11:25:51,417 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,424 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:51,427 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:51,427 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:51,433 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:51,433 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,433 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,434 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,434 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:51,434 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:51,436 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,436 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:51,437 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:51,437 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,437 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp' [INFO] [exec] 2017-03-22 11:25:51,437 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Event on a disappeared file: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> /Nuxeo Drive Test Workspace/1743B25F.tmp 1743B25F.tmp [INFO] [exec] 2017-03-22 11:25:51,438 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,438 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp' [INFO] [exec] 2017-03-22 11:25:51,440 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Event on a disappeared file: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> /Nuxeo Drive Test Workspace/1743B25F.tmp 1743B25F.tmp [INFO] [exec] 2017-03-22 11:25:51,440 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:51,440 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:51,440 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:51,441 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp'> [INFO] [exec] 2017-03-22 11:25:51,441 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\1743B25F.tmp' [INFO] [exec] 2017-03-22 11:25:51,443 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unknown pair deleted: /Nuxeo Drive Test Workspace/1743B25F.tmp [INFO] [exec] 2017-03-22 11:25:51,443 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> [INFO] [exec] 2017-03-22 11:25:51,443 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:51,444 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,447 2296 2056 TRACE nxdrive.engine.dao.sqlite Acquired processor 2056 for row 2 [INFO] [exec] 2017-03-22 11:25:51,447 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated [INFO] [exec] 2017-03-22 11:25:51,447 2296 2056 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a] [INFO] [exec] 2017-03-22 11:25:51,453 2296 2056 TRACE nxdrive.engine.dao.sqlite Released processor 2056 [INFO] [exec] 2017-03-22 11:25:51,453 2296 2056 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:51,453 2296 2056 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:53,017 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:53,017 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:53,019 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1860, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:53,040 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178353000,"upperBound":1866}' [INFO] [exec] 2017-03-22 11:25:53,042 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:53,052 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 8, local watcher empty events = 1, blacklist = 1, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:53,232 2296 2312 DEBUG nxdrive.engine.queue_manager End of blacklist period, pushing doc_pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/787D3000', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:53,233 2296 2312 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:0, State: locally_created) [INFO] [exec] 2017-03-22 11:25:53,233 2296 2312 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 [INFO] [exec] 2017-03-22 11:25:53,233 2296 2312 TRACE nxdrive.engine.queue_manager Launching processors [INFO] [exec] 2017-03-22 11:25:53,234 2296 2312 DEBUG nxdrive.engine.queue_manager creating local file processor [INFO] [exec] 2017-03-22 11:25:53,234 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:53,236 2296 2124 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2124) start [INFO] [exec] 2017-03-22 11:25:53,237 2296 2456 DEBUG nxdrive.engine.workers Thread GenericProcessor(2456) start [INFO] [exec] 2017-03-22 11:25:53,236 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:53,243 2296 2456 DEBUG nxdrive.engine.workers Thread GenericProcessor(2456) end [INFO] [exec] 2017-03-22 11:25:53,243 2296 2124 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:53,252 2296 2312 DEBUG nxdrive.engine.queue_manager creating additional file processor [INFO] [exec] 2017-03-22 11:25:53,253 2296 1240 DEBUG nxdrive.engine.workers Thread GenericProcessor(1240) start [INFO] [exec] 2017-03-22 11:25:53,256 2296 2124 TRACE nxdrive.engine.dao.sqlite Acquired processor 2124 for row 5 [INFO] [exec] 2017-03-22 11:25:53,259 2296 1240 DEBUG nxdrive.engine.workers Thread GenericProcessor(1240) end [INFO] [exec] 2017-03-22 11:25:53,262 2296 1676 DEBUG nxdrive.engine.workers Thread GenericProcessor(1676) start [INFO] [exec] 2017-03-22 11:25:53,273 2296 1676 DEBUG nxdrive.engine.workers Thread GenericProcessor(1676) end [INFO] [exec] 2017-03-22 11:25:53,282 2296 2124 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: None, Local state: created, Remote state: unknown, State: locally_created)(0) [INFO] [exec] 2017-03-22 11:25:53,286 2296 2124 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x0AC0C8F0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:53,286 2296 2124 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:53,289 2296 2124 TRACE nxdrive.engine.processor Entered _synchronize_locally_created, parent_pair = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:53,289 2296 2124 DEBUG nxdrive.engine.processor Creating remote document 'Excel 97 file.xls' in folder 'Nuxeo Drive Test Workspace' [INFO] [exec] 2017-03-22 11:25:53,299 2296 2124 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"batchId":"batchId-5555b906-a86c-4d80-9394-c34ecb34fd24"}' [INFO] [exec] 2017-03-22 11:25:53,299 2296 2124 TRACE nxdrive.utils Guessed mime type 'application/vnd.ms-excel' for 'Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:53,299 2296 2124 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-5555b906-a86c-4d80-9394-c34ecb34fd24/0 with headers {'Content-Length': 11L, 'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'X-File-Type': 'application/vnd.ms-excel', 'X-User-Id': 'driveuser_1', 'X-File-Size': 11L, 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'Excel%2097%20file.xls', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] for file \\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:53,315 2296 2124 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-5555b906-a86c-4d80-9394-c34ecb34fd24/0' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"uploaded":"true","fileIdx":"0","uploadedSize":"11","uploadType":"normal","batchId":"batchId-5555b906-a86c-4d80-9394-c34ecb34fd24"}' [INFO] [exec] 2017-03-22 11:25:53,315 2296 2124 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of NuxeoDrive.CreateFile with file \\?\C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\Nuxeo Drive\Nuxeo Drive Test Workspace\Excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:53,315 2296 2124 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-5555b906-a86c-4d80-9394-c34ecb34fd24/0/execute/NuxeoDrive.CreateFile with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"overwrite": false, "parentId": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:53,407 2296 2124 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-5555b906-a86c-4d80-9394-c34ecb34fd24/0/execute/NuxeoDrive.CreateFile' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digest":"13e564b77a0762c2c99cda859fcbd93f","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","lockInfo":null,"creationDate":1490178353375,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178353375,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"}' [INFO] [exec] 2017-03-22 11:25:53,413 2296 2124 TRACE nxdrive.engine.processor Transfer speed 0 ko/s [INFO] [exec] 2017-03-22 11:25:53,413 2296 2124 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f' on u'\\\\?\\C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:53,417 2296 2124 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'Excel 97 file.xls', uid=u'defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 53), last_contributor=u'driveuser_1', digest=u'13e564b77a0762c2c99cda859fcbd93f', digest_algorithm=u'md5', download_url=u'nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) [INFO] [exec] 2017-03-22 11:25:53,423 2296 2124 TRACE nxdrive.engine.processor Put remote_ref in defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f [INFO] [exec] 2017-03-22 11:25:53,423 2296 2124 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Excel 97 file.xls, remote_name=None, version=0] with version=0 [INFO] [exec] 2017-03-22 11:25:53,424 2296 2124 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x0AC0C8F0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: None, Local state: created, Remote state: unknown, State: locally_created) [INFO] [exec] 2017-03-22 11:25:53,426 2296 2124 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/excel 97 file.xls [INFO] [exec] 2017-03-22 11:25:53,427 2296 2124 TRACE nxdrive.engine.dao.sqlite No processor to release with id 2124 [INFO] [exec] 2017-03-22 11:25:53,427 2296 2124 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(2124) end [INFO] [exec] 2017-03-22 11:25:53,441 2296 2344 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:53,444 2296 2056 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls'> [INFO] [exec] 2017-03-22 11:25:53,444 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\Nuxeo Drive\\Nuxeo Drive Test Workspace\\Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:25:53,446 2296 2056 DEBUG nxdrive.engine.watcher.local_watcher Ignoring /Nuxeo Drive Test Workspace/Excel 97 file.xls as marked unsynchronized [INFO] [exec] 2017-03-22 11:25:56,319 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:56,319 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:56,319 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1866, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:56,348 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[{"eventId":"documentCreated","fileSystemItem":{"digest":"13e564b77a0762c2c99cda859fcbd93f","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","lockInfo":null,"creationDate":1490178353375,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178353375,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_1"},"fileSystemItemId":"defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","fileSystemItemName":"Excel 97 file.xls","eventDate":1490178353375,"repositoryId":"default","docUuid":"53f28cca-3bb6-4d0f-923a-a34af0d5ad7f"}],"hasTooManyChanges":false,"syncDate":1490178356000,"upperBound":1873}' [INFO] [exec] 2017-03-22 11:25:56,349 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher 1 remote changes detected [INFO] [exec] 2017-03-22 11:25:56,349 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'Excel 97 file.xls', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490178353375L, u'parentId': u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'canRename': True, u'downloadURL': u'nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls', u'lockInfo': None, u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', u'folder': False, u'creationDate': 1490178353375L, u'lastContributor': u'driveuser_1', u'id': u'defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', u'digest': u'13e564b77a0762c2c99cda859fcbd93f'}, u'repositoryId': u'default', u'fileSystemItemName': u'Excel 97 file.xls', u'fileSystemItemId': u'defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', u'docUuid': u'53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', u'eventDate': 1490178353375L} [INFO] [exec] 2017-03-22 11:25:56,351 2296 2312 DEBUG tests.common Remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:56,354 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Excel 97 file.xls', eventId = documentCreated (force_recursion:0) [INFO] [exec] 2017-03-22 11:25:56,354 2296 2648 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Excel 97 file.xls', uid=u'defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 25, 53), last_contributor=u'driveuser_1', digest=u'13e564b77a0762c2c99cda859fcbd93f', digest_algorithm=u'md5', download_url=u'nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) [INFO] [exec] 2017-03-22 11:25:56,354 2296 2648 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f, Local state: synchronized, Remote state: synchronized, State: synchronized) [INFO] [exec] 2017-03-22 11:25:56,359 2296 2648 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=None [INFO] [exec] 2017-03-22 11:25:56,369 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:59,621 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:25:59,621 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:25:59,622 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1873, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:25:59,644 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178359000,"upperBound":1875}' [INFO] [exec] 2017-03-22 11:25:59,645 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:59,657 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:25:59,661 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:25:59,661 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:00,276 2296 1064 DEBUG tests.common Sync completed, ended wait for sync [INFO] [exec] 2017-03-22 11:26:00,280 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0"}}' [INFO] [exec] 2017-03-22 11:26:00,299 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies []: '{"digest":"49c963ba1bb9e01947c8bc1e72112d09","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":{"owner":"driveuser_2","created":1490178323685,"failed":false},"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178317519,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"}' [INFO] [exec] 2017-03-22 11:26:00,299 2296 1064 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' to None with digest=49c963ba1bb9e01947c8bc1e72112d09, digest_algorithm=md5 [INFO] [exec] 2017-03-22 11:26:00,299 2296 1064 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/Excel%2097%20file.xls' with headers: {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'} [INFO] [exec] 2017-03-22 11:26:00,319 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies []: '{"batchId":"batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12"}' [INFO] [exec] 2017-03-22 11:26:00,319 2296 1064 TRACE nxdrive.utils Guessed mime type 'application/vnd.ms-excel' for 'New Excel 97 file.xls' [INFO] [exec] 2017-03-22 11:26:00,319 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12/0 with headers {'Content-Length': 11L, 'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'X-File-Type': 'application/vnd.ms-excel', 'X-User-Id': 'driveuser_2', 'X-File-Size': 11L, 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi', 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'New%20Excel%2097%20file.xls'} and cookies [] for file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpqs_yjy-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:26:00,332 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12/0' with cookies []: '{"uploaded":"true","fileIdx":"0","uploadedSize":"11","uploadType":"normal","batchId":"batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12"}' [INFO] [exec] 2017-03-22 11:26:00,332 2296 1064 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of NuxeoDrive.UpdateFile with file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7xzgej-nxdrive-uploads\tmpqs_yjy-nxdrive-file-to-upload [INFO] [exec] 2017-03-22 11:26:00,332 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12/0/execute/NuxeoDrive.UpdateFile with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0"}}' [INFO] [exec] 2017-03-22 11:26:00,371 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-4bed426c-d8dd-4626-a9f4-6731ab943a12/0/execute/NuxeoDrive.UpdateFile' with cookies []: '{"digest":"f5d9de1c61431b99a7b5a9c80571b409","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/New%20Excel%2097%20file.xls","name":"New Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":{"owner":"driveuser_2","created":1490178323685,"failed":false},"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178360344,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"}' [INFO] [exec] 2017-03-22 11:26:00,375 2296 1064 DEBUG tests.common Wait for sync [INFO] [exec] 2017-03-22 11:26:00,375 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:26:00,506 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:26:02,915 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:26:02,915 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:26:02,917 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1875, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:26:02,944 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[{"eventId":"documentModified","fileSystemItem":{"digest":"f5d9de1c61431b99a7b5a9c80571b409","digestAlgorithm":"MD5","canUpdate":false,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/New%20Excel%2097%20file.xls","name":"New Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178360344,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":false,"canRename":false,"userName":"driveuser_1"},"fileSystemItemId":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","fileSystemItemName":"New Excel 97 file.xls","eventDate":1490178360348,"repositoryId":"default","docUuid":"85d23669-a3e3-447a-9e61-54dd285325f0"}],"hasTooManyChanges":false,"syncDate":1490178362000,"upperBound":1887}' [INFO] [exec] 2017-03-22 11:26:02,946 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher 1 remote changes detected [INFO] [exec] 2017-03-22 11:26:02,947 2296 2648 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentModified', u'fileSystemItem': {u'canUpdate': False, u'userName': u'driveuser_1', u'name': u'New Excel 97 file.xls', u'canDelete': False, u'creator': u'driveuser_2', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490178360344L, u'parentId': u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', u'canRename': False, u'downloadURL': u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/New%20Excel%2097%20file.xls', u'lockInfo': None, u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'folder': False, u'creationDate': 1490178317519L, u'lastContributor': u'driveuser_2', u'id': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'digest': u'f5d9de1c61431b99a7b5a9c80571b409'}, u'repositoryId': u'default', u'fileSystemItemName': u'New Excel 97 file.xls', u'fileSystemItemId': u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', u'docUuid': u'85d23669-a3e3-447a-9e61-54dd285325f0', u'eventDate': 1490178360348L} [INFO] [exec] 2017-03-22 11:26:02,947 2296 2312 DEBUG tests.common Remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:02,950 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Excel 97 file.xls', eventId = documentModified (force_recursion:0) [INFO] [exec] 2017-03-22 11:26:02,950 2296 2648 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: modified, State: unsynchronized) with info = RemoteFileInfo(name=u'New Excel 97 file.xls', uid=u'defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', parent_uid=u'defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0', folderish=False, last_modification_time=datetime.datetime(2017, 3, 22, 11, 26), last_contributor=u'driveuser_2', digest=u'f5d9de1c61431b99a7b5a9c80571b409', digest_algorithm=u'md5', download_url=u'nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/New%20Excel%2097%20file.xls', can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) [INFO] [exec] 2017-03-22 11:26:02,950 2296 2648 TRACE nxdrive.engine.dao.sqlite Increasing version to 3 for pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Excel 97 file.xls', Remote: defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0, Local state: modified, Remote state: modified, State: unsynchronized) [INFO] [exec] 2017-03-22 11:26:02,954 2296 2648 TRACE nxdrive.engine.dao.sqlite Emit newConflict with: 4, pair=None [INFO] [exec] 2017-03-22 11:26:02,957 2296 2312 WARNING nxdrive.engine.engine conflict_resolver: name: 0 digest: 0(0237944b18bbe75cc35f051e9dc6105f/f5d9de1c61431b99a7b5a9c80571b409) parents: 1(defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a) [INFO] [exec] 2017-03-22 11:26:02,970 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:26:06,213 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:26:06,213 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:26:06,213 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1887, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:26:06,236 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178366000,"upperBound":1889}' [INFO] [exec] 2017-03-22 11:26:06,237 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:06,246 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:26:06,249 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:06,249 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:06,515 2296 1064 DEBUG tests.common Sync completed, _wait_remote_scan = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': False}, remote changes count = {u'd3ef65a10ee911e7a110080027c0f5de': 1, u'd40d9c000ee911e7a0c0080027c0f5de': 0}, no remote changes = {u'd3ef65a10ee911e7a110080027c0f5de': True, u'd40d9c000ee911e7a0c0080027c0f5de': True} [INFO] [exec] 2017-03-22 11:26:06,515 2296 1064 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False [INFO] [exec] 2017-03-22 11:26:06,519 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6Y2VlMWNi'}, cookies [] and JSON payload '{"params": {"id": "defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:26:06,549 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren' with cookies []: '[{"digest":"b53227da4280f0e18270f21dd77c91d0","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5a9f0d0e-7202-41d7-a4ad-caee8fa095a5/blobholder:0/test.txt","name":"test.txt","id":"defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#5a9f0d0e-7202-41d7-a4ad-caee8fa095a5","lockInfo":null,"creationDate":1490178312240,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178312240,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"},{"digest":"f5d9de1c61431b99a7b5a9c80571b409","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/85d23669-a3e3-447a-9e61-54dd285325f0/blobholder:0/New%20Excel%2097%20file.xls","name":"New Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#85d23669-a3e3-447a-9e61-54dd285325f0","lockInfo":null,"creationDate":1490178317519,"creator":"driveuser_2","folder":false,"lastContributor":"driveuser_2","lastModificationDate":1490178360344,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"},{"digest":"13e564b77a0762c2c99cda859fcbd93f","digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/53f28cca-3bb6-4d0f-923a-a34af0d5ad7f/blobholder:0/Excel%2097%20file.xls","name":"Excel 97 file.xls","id":"defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a/defaultFileSystemItemFactory#default#53f28cca-3bb6-4d0f-923a-a34af0d5ad7f","lockInfo":null,"creationDate":1490178353375,"creator":"driveuser_1","folder":false,"lastContributor":"driveuser_1","lastModificationDate":1490178353375,"parentId":"defaultSyncRootFolderItemFactory#default#1ac83728-e64a-4fd9-b50a-adb5f88eb77a","canDelete":true,"canRename":true,"userName":"driveuser_2"}]' [INFO] [exec] 2017-03-22 11:26:06,549 2296 1064 DEBUG nxdrive.report Create report 'tests.test_conflicts.TestConflicts.test_XLS_conflict_on_locked_document_from_start' [INFO] [exec] 2017-03-22 11:26:06,552 2296 1064 DEBUG nxdrive.report Manager metrics: '{'tracking': False, 'python_version': '2.7.13', 'appname': 'Nuxeo Drive', 'auto_update': True, 'qt_version': '4.8.7', 'tracker_id': '', 'platform': 'Windows', 'version': '2.2-dev', 'pyqt_version': '4.11.4', 'auto_start': True, 'beta_channel': False, 'device_id': 'd3ccc2700ee911e78b94080027c0f5de'}' [INFO] [exec] 2017-03-22 11:26:06,555 2296 1064 TRACE nxdrive.engine.dao.sqlite Cache Syncing count incorrect should be 0 was 1 [INFO] [exec] 2017-03-22 11:26:06,558 2296 1064 DEBUG nxdrive.report Engine metrics: '{'files_size': 23, 'sync_files': 2, 'syncing': 0, 'error_files': 0, 'conflicted_files': 1, 'sync_folders': 2, 'invalid_credentials': False, 'unsynchronized_files': 0}' [INFO] [exec] 2017-03-22 11:26:10,437 2296 2648 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False [INFO] [exec] 2017-03-22 11:26:10,456 2296 2648 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) [INFO] [exec] 2017-03-22 11:26:10,507 2296 2648 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 1889, "lastSyncActiveRootDefinitions": "default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a"}}' [INFO] [exec] 2017-03-22 11:26:10,688 2296 2648 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:1ac83728-e64a-4fd9-b50a-adb5f88eb77a","fileSystemChanges":[],"hasTooManyChanges":false,"syncDate":1490178370000,"upperBound":1893}' [INFO] [exec] 2017-03-22 11:26:10,726 2296 2312 TRACE tests.common No remote changes slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:10,953 2296 2312 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, Windows with win queue size = 0 and win folder scan size = 0 [INFO] [exec] 2017-03-22 11:26:11,029 2296 2312 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:11,048 2296 2312 DEBUG tests.common Sync Completed slot for: d3ef65a10ee911e7a110080027c0f5de [INFO] [exec] 2017-03-22 11:26:13,612 2296 1064 DEBUG tests.common Report generated in 'C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A/sources\tests.test_conflicts.TestConflicts.test_XLS_conflict_on_locked_document_from_start' [INFO] [exec] 2017-03-22 11:26:13,614 2296 1064 DEBUG tests.common TearDown unit test [INFO] [exec] 2017-03-22 11:26:13,614 2296 1064 DEBUG nxdrive.engine.queue_manager Suspending queue [INFO] [exec] 2017-03-22 11:26:13,614 2296 1064 DEBUG nxdrive.engine.engine Engine d3ef65a10ee911e7a110080027c0f5de stopping [INFO] [exec] 2017-03-22 11:26:13,618 2296 2648 DEBUG nxdrive.engine.workers Thread RemoteWatcher(2648) interrupted [INFO] [exec] 2017-03-22 11:26:13,618 2296 2312 TRACE nxdrive.engine.queue_manager Shutdown processors [INFO] [exec] 2017-03-22 11:26:13,622 2296 2056 INFO nxdrive.engine.watcher.local_watcher Stopping FS Observer thread [INFO] [exec] 2017-03-22 11:26:14,549 2296 2056 INFO nxdrive.engine.watcher.local_watcher Stopping FS root Observer thread [INFO] [exec] 2017-03-22 11:26:14,743 2296 2056 DEBUG nxdrive.engine.workers Thread LocalWatcher(2056) interrupted [INFO] [exec] 2017-03-22 11:26:14,746 2296 1064 DEBUG nxdrive.engine.engine Engine d3ef65a10ee911e7a110080027c0f5de stopped [INFO] [exec] 2017-03-22 11:26:14,749 2296 1064 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:26:14,750 2296 1064 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:26:14,750 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': u'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,786 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=Windows+Desktop&revoke=true&deviceId=d3ccc2700ee911e78b94080027c0f5de&permission=ReadWrite with headers {'X-Authentication-Token': u'a35b7db4-c07c-46f7-88bf-a14e3dd0020f', 'X-Device-Id': 'd3ccc2700ee911e78b94080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,796 2296 1064 TRACE nxdrive.client.base_automation_client Got token 'Token revoked for userName driveuser_1, applicationName Nuxeo Drive and deviceId d3ccc2700ee911e78b94080027c0f5de.' with cookies [Cookie(version=0, name='X-Authentication-Token', value='a35b7db4-c07c-46f7-88bf-a14e3dd0020f', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,796 2296 1064 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\nuxeo-drive-conf\\ndrive_d3ef65a10ee911e7a110080027c0f5de.db' [INFO] [exec] 2017-03-22 11:26:14,798 2296 1064 DEBUG nxdrive.engine.engine Remove DB file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmp7jtfkcdrive-1\nuxeo-drive-conf\ndrive_d3ef65a10ee911e7a110080027c0f5de.db [INFO] [exec] 2017-03-22 11:26:14,803 2296 1064 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmp7jtfkcdrive-1\\nuxeo-drive-conf\\manager.db' [INFO] [exec] 2017-03-22 11:26:14,805 2296 1064 DEBUG nxdrive.engine.queue_manager Suspending queue [INFO] [exec] 2017-03-22 11:26:14,805 2296 1064 DEBUG nxdrive.engine.engine Engine d40d9c000ee911e7a0c0080027c0f5de stopping [INFO] [exec] 2017-03-22 11:26:14,805 2296 1064 DEBUG nxdrive.engine.engine Engine d40d9c000ee911e7a0c0080027c0f5de stopped [INFO] [exec] 2017-03-22 11:26:14,809 2296 1064 ERROR nxdrive.manager Error retrieving PAC url from system: WindowsError(2, 'The system cannot find the file specified') [INFO] [exec] 2017-03-22 11:26:14,812 2296 1064 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None [INFO] [exec] 2017-03-22 11:26:14,812 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': u'da6f3800-e1bb-4e7f-87f7-d0c210c612c2', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='da6f3800-e1bb-4e7f-87f7-d0c210c612c2', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,848 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=Windows+Desktop&revoke=true&deviceId=d3d12f400ee911e7a19c080027c0f5de&permission=ReadWrite with headers {'X-Authentication-Token': u'da6f3800-e1bb-4e7f-87f7-d0c210c612c2', 'X-Device-Id': 'd3d12f400ee911e7a19c080027c0f5de', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='da6f3800-e1bb-4e7f-87f7-d0c210c612c2', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,861 2296 1064 TRACE nxdrive.client.base_automation_client Got token 'Token revoked for userName driveuser_2, applicationName Nuxeo Drive and deviceId d3d12f400ee911e7a19c080027c0f5de.' with cookies [Cookie(version=0, name='X-Authentication-Token', value='da6f3800-e1bb-4e7f-87f7-d0c210c612c2', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] [INFO] [exec] 2017-03-22 11:26:14,861 2296 1064 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmpkktzavdrive-2\\nuxeo-drive-conf\\ndrive_d40d9c000ee911e7a0c0080027c0f5de.db' [INFO] [exec] 2017-03-22 11:26:14,861 2296 1064 DEBUG nxdrive.engine.engine Remove DB file C:\Jenkins\0ebd1d51\workspace\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\tmp\tmpkktzavdrive-2\nuxeo-drive-conf\ndrive_d40d9c000ee911e7a0c0080027c0f5de.db [INFO] [exec] 2017-03-22 11:26:14,868 2296 1064 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'C:\\Jenkins\\0ebd1d51\\workspace\\VE-775-upgrade-requirements-NHBSJOEH6XVHTEJERITGH4O7XRQM7QOILJSEUU6BABBYFYS5PG5A\\tmp\\tmpkktzavdrive-2\\nuxeo-drive-conf\\manager.db' [INFO] [exec] 2017-03-22 11:26:14,869 2296 1064 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.TearDownIntegrationTests with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' [INFO] [exec] 2017-03-22 11:26:14,947 2296 1064 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.TearDownIntegrationTests' with cookies [] has content-type '' [INFO] [exec] 2017-03-22 11:26:14,966 2296 1064 DEBUG tests.common UnitTest thread finished [INFO] [exec] 2017-03-22 11:26:14,970 2296 2312 DEBUG tests.common UnitTest run finished [INFO] [exec] !!!!!!!!!!!!!!!!!!! Interrupted: stopping after 1 failures !!!!!!!!!!!!!!!!!!!! [INFO] [exec] ==================== 1 failed, 14 passed in 623.76 seconds ====================
- is related to
-
NXDRIVE-766 Fix conflict tests failing due to NXP-21854
- Resolved