def setUp(self):
     self.tmp_content = FilePath('tmp_content_coherence-%d' % os.getpid())
     f = self.tmp_content.child('content')
     audio = f.child('audio')
     f.child('images').makedirs()
     f.child('video').makedirs()
     album = audio.child('album-1')
     album.makedirs()
     album.child('track-1.mp3').touch()
     album.child('track-2.mp3').touch()
     album = audio.child('album-2')
     album.makedirs()
     album.child('track-1.ogg').touch()
     album.child('track-2.ogg').touch()
     louie.reset()
     self.coherence = Coherence({
         'unittest': 'yes',
         'logmode': 'debug',
         'subsystem_log': {
             'controlpoint': 'error',
             'action': 'error',
             'soap': 'error'
         },
         'controlpoint': 'yes'
     })
     self.uuid = UUID()
     p = self.coherence.add_plugin('FSStore',
                                   name='MediaServer-%d' % os.getpid(),
                                   content=self.tmp_content.path,
                                   uuid=str(self.uuid))
 def setUp(self):
     self.tmp_content = FilePath(self.mktemp())
     f = self.tmp_content.child('content')
     audio = f.child('audio')
     f.child('images').makedirs()
     f.child('video').makedirs()
     album = audio.child('album-1')
     album.makedirs()
     album.child('track-1.mp3').touch()
     album.child('track-2.mp3').touch()
     album = audio.child('album-2')
     album.makedirs()
     album.child('track-1.ogg').touch()
     album.child('track-2.ogg').touch()
     louie.reset()
     self.coherence = Coherence(
       {'unittest': 'yes',
        'logmode': 'critical',
        'no-subsystem_log': {'controlpoint': 'error',
                             'action': 'info',
                             'soap': 'error'},
        'controlpoint': 'yes'})
     self.uuid = str(UUID())
     self.coherence.add_plugin('FSStore',
                               name='MediaServer-%d' % os.getpid(),
                               content=self.tmp_content.path,
                               uuid=self.uuid,
                               enable_inotify=False)
 def setUp(self):
     self.tmp_content = FilePath('tmp_content_coherence-%d'%os.getpid())
     f = self.tmp_content.get_child()('content')
     audio = f.get_child()('audio')
     f.get_child()('images').makedirs()
     f.get_child()('video').makedirs()
     album = audio.get_child()('album-1')
     album.makedirs()
     album.get_child()('track-1.mp3').touch()
     album.get_child()('track-2.mp3').touch()
     album = audio.get_child()('album-2')
     album.makedirs()
     album.get_child()('track-1.ogg').touch()
     album.get_child()('track-2.ogg').touch()
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'debug','subsystem_log':{'controlpoint':'error',
                                                                                     'action':'error',
                                                                                     'soap':'error'},'controlpoint':'yes'})
     self.uuid = UUID()
     p = self.coherence.add_plugin('FSStore',
                                   name='MediaServer-%d'%os.getpid(),
                                   content=self.tmp_content.path,
                                   uuid=str(self.uuid))
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'error','subsystem_log':{'controlpoint':'error'},'controlpoint':'yes'})
     self.uuid = UUID()
     p = self.coherence.add_plugin('SimpleLight', name='test-light-%d'%os.getpid(),uuid=str(self.uuid))
Example #5
0
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'error','use_dbus':'yes','controlpoint':'yes'})
     self.bus = dbus.SessionBus()
     self.coherence_service = self.bus.get_object(BUS_NAME,OBJECT_PATH)
     self.uuid = UUID()
Example #6
0
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'error'})
Example #7
0
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'error','use_dbus':'yes','controlpoint':'yes'})
     self.bus = dbus.SessionBus()
     self.coherence_service = self.bus.get_object(BUS_NAME,OBJECT_PATH)
     self.uuid = UUID()
Example #8
0
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest': 'yes', 'logmode': 'error'})
 def setUp(self):
     louie.reset()
     self.coherence = Coherence({'unittest':'yes','logmode':'error','subsystem_log':{'controlpoint':'error'},'controlpoint':'yes'})
     self.uuid = UUID()
     p = self.coherence.add_plugin('SimpleLight', name='test-light-%d'%os.getpid(),uuid=str(self.uuid))