Share Pastebin
Guest
Public paste!

ray

By: a guest | Jul 2nd, 2010 | Syntax: Python | Size: 6.29 KB | Hits: 91 | Expires: Never
Copy text to clipboard
  1. root@mythtrunk:/
  2. #/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py
  3. running base classes
  4.     running orddict                                   PASSED
  5.     running dictinvert                                PASSED
  6. running connections
  7.     running msearch                                   PASSED
  8.     running base connections
  9.         running dbconn                                PASSED
  10.         running beconn                                PASSED
  11.         running xmlconn                               PASSED
  12.         running feconn                                FAILED
  13.     running connection caches
  14.         running DBCache
  15.             running dbcache_normal                    PASSED
  16.             running dbcache_manual_args               PASSED
  17.             running dbcache_manual_kw                 PASSED
  18.             running dbcache_upnp                     SKIPPED
  19.             running dbcache_recurse                   PASSED
  20.             running dbcache_storagegroup              PASSED
  21.         running becache                               PASSED
  22.         running feconn_upnp                          SKIPPED
  23. running collections
  24.     running database objects
  25.         running Record
  26.             running record_getall                     PASSED
  27.             running record_openone                    PASSED
  28.         running Recorded
  29.             running recorded_getall                   PASSED
  30.             running recorded_getone                   PASSED
  31.             running recorded_cast                     PASSED
  32.             running recorded_seek                     PASSED
  33.             running recorded_markup                   PASSED
  34.         running RecordedProgram
  35.             running recordedprogram_getall            PASSED
  36.             running recordedprogram_getone            PASSED
  37.             running recordedprogram_fromrecorded      PASSED
  38.         running OldRecorded
  39.             running oldrecorded_getall                PASSED
  40.             running oldrecorded_getone                PASSED
  41.         running Job
  42.             running job_getall                        PASSED
  43.             running job_getone                       SKIPPED
  44.         running Guide
  45.             running guide_getall                      PASSED
  46.             running guide_getone                      PASSED
  47.             running guide_record                      FAILED
  48.         running Channel
  49.             running chan_getall                       PASSED
  50.             running chan_getone                       PASSED
  51.         running Video
  52.             running video_getall                      PASSED
  53.             running video_getone                      PASSED
  54.             running video_create                      PASSED
  55.     running method collections
  56.         running MythBE
  57.             running mythbe_getrecordings              PASSED
  58.         running MythDB
  59.             running searchRecorded                    PASSED
  60.             running searchOldRecorded                 PASSED
  61.             running searchJobs                        PASSED
  62.             running searchGuide                       PASSED
  63.             running searchRecord                      PASSED
  64.         running MythXML
  65.             running mythxml_hosts                     PASSED
  66.             running mythxml_keys                      PASSED
  67.             running mythxml_getkey                    PASSED
  68.             running mythxml_programs                  PASSED
  69.             running mythxml_program                   FAILED
  70.             running mythxml_guide                     PASSED
  71.             running mythxml_expiring                  PASSED
  72.         running MythVideo
  73.             running mythvideo_scan                    PASSED
  74.             running mythvideo_search                  PASSED
  75.  
  76. ---------------------------------
  77. test_feconn Failed:
  78. Traceback (most recent call last):
  79.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 92, in __call__
  80.     res = self.func(*args, **kwargs)
  81.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 205, in test_feconn
  82.     fe = FEConnection(FRONTEND[0], FRONTEND[1])
  83.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/connections.py", line 451, in __init__
  84.     self.connect(test)
  85.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/connections.py", line 493, in connect
  86.     raise MythFEError(MythError.FE_CONNECTION, self.host, self.port)
  87. MythFEError: Connection to frontend 127.0.0.1:6546 failed
  88.  
  89.  
  90. ---------------------------------
  91. test_guide_record Failed:
  92. Traceback (most recent call last):
  93.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 92, in __call__
  94.     res = self.func(*args, **kwargs)
  95.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 71, in __call__
  96.     self.func(*args, **kwargs)
  97.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 437, in test_guide_record
  98.     record = Record.fromGuide(prog)
  99.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/dataheap.py", line 88, in fromGuide
  100.     return rec.create()
  101.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/dataheap.py", line 53, in create
  102.     self._pull()
  103.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/database.py", line 254, in _pull
  104.     DBData._pull(self)
  105.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/database.py", line 131, in _pull
  106.     raise MythError('DBData() could not read from database')
  107. MythError: DBData() could not read from database
  108.  
  109.  
  110. ---------------------------------
  111. test_mythxml_program Failed:
  112. Traceback (most recent call last):
  113.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 92, in __call__
  114.     res = self.func(*args, **kwargs)
  115.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 71, in __call__
  116.     self.func(*args, **kwargs)
  117.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/testbindings.py", line 589, in test_mythxml_program
  118.     xml.getProgramDetails(prog.chanid, prog.starttime)
  119.   File "/root/mythtv-trunk-bindings/mythtv/bindings/python/MythTV/methodheap.py", line 836, in getProgramDetails
  120.     prog = tree.find('ProgramDetails').find('Program')
  121. AttributeError: 'NoneType' object has no attribute 'find'