Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. 2015-07-28 22:37:50,667 [commonlib.eventlistener.socketlistener:30] INFO connected to to localhost:25011
  2. 2015-07-28 22:37:50,701 [root:16] INFO starting compare test
  3. 2015-07-28 22:37:50,729 [endpointlib.remote_service.os_service:19] INFO getting dirs and files for /Users/qa/Documents/Unames
  4. 2015-07-28 22:37:50,742 [endpointlib.remote_service.os_service:28] INFO deleting /Users/qa/Documents/Unames
  5. 2015-07-28 22:37:51,757 [root:290] INFO collecting attributes for path "/Users/qa/Desktop/Unames"
  6. FAILED2015-07-28 22:37:51,895 [commonlib.eventlistener.socketlistener:41] DEBUG closing connection localhost:25011
  7. 2015-07-28 22:37:51,896 [commonlib.eventlistener.socketlistener:44] DEBUG closed connection successfully localhost:25011
  8. 2015-07-28 22:37:51,896 [commonlib.eventlistener.socketlistener:24] INFO connecting to localhost:25011 ....
  9. 2015-07-28 22:37:51,896 [commonlib.eventlistener.socketlistener:41] DEBUG closing connection localhost:25012
  10. 2015-07-28 22:37:51,896 [commonlib.eventlistener.eventlistener2:31] DEBUG json value error happened
  11. 2015-07-28 22:37:51,896 [commonlib.eventlistener.socketlistener:44] DEBUG closed connection successfully localhost:25012
  12. 2015-07-28 22:37:51,897 [test.compare_test.test_compare.TestCompare:327] INFO Checking for error in product log ....
  13. 2015-07-28 22:37:51,897 [commonlib.eventlistener.socketlistener:24] INFO connecting to localhost:25012 ....
  14. 2015-07-28 22:37:51,897 [test.compare_test.test_compare.TestCompare:169] INFO Test directory was not cleaned
  15. 2015-07-28 22:37:51,897 [test.compare_test.test_compare.TestCompare:64] DEBUG tear down method
  16. 2015-07-28 22:37:51,898 [test.conftest:86] INFO session href: None
  17. 2015-07-28 22:37:51,898 [test.conftest:91] INFO unable to write version into file expected a character buffer object
  18.  
  19. self = <test.compare_test.test_compare.TestCompare object at 0x10b234c90>
  20.  
  21. def test_compare1(self):
  22. # TODO copy dataset
  23. import time
  24. time.sleep(120)
  25. logging.info("starting compare test")
  26. path1 = self.join_with_home_dir('Desktop/Unames')
  27. path2 = self.join_with_home_dir('Documents/Unames')
  28. self.delete_directory(path2)
  29. compare = Compare()
  30. > compare.set_backup_data(self.remote_service.collect_data(path1))
  31.  
  32. test/compare_test/test_compare.py:21:
  33. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  34. endpointlib/remote_service/osx/remote_service.py:291: in collect_data
  35. return self.get_proxy().collect_data(path, verify_list)
  36. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:1224: in __call__
  37. return self.__send(self.__name, args)
  38. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:1578: in __request
  39. verbose=self.__verbose
  40. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:1264: in request
  41. return self.single_request(host, handler, request_body, verbose)
  42. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:1297: in single_request
  43. return self.parse_response(response)
  44. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:1473: in parse_response
  45. return u.close()
  46. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  47.  
  48. self = <xmlrpclib.Unmarshaller instance at 0x10b23d3b0>
  49.  
  50. def close(self):
  51. # return response tuple and target method
  52. if self._type is None or self._marks:
  53. raise ResponseError()
  54. if self._type == "fault":
  55. > raise Fault(**self._stack[0])
  56. E Fault: <Fault 1: "<type 'exceptions.AttributeError'>:FSO instance has no attribute 'the_path'">
  57.  
  58. /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xmlrpclib.py:793: Fault
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement