Exemplo n.º 1
0
 def test_output_lister(self):
     pl = Pl()
     with replace_attr(i3wm, 'get_connected_xrandr_outputs',
                       self.get_outputs):
         self.assertEqual(
             list(i3wm.output_lister(pl=pl, segment_info={'a': 1})), [
                 ({
                     'a': 1,
                     'output': 'LVDS1'
                 }, {
                     'draw_inner_divider': None
                 }),
                 ({
                     'a': 1,
                     'output': 'HDMI1'
                 }, {
                     'draw_inner_divider': None
                 }),
                 ({
                     'a': 1,
                     'output': 'DVI01'
                 }, {
                     'draw_inner_divider': None
                 }),
             ])
Exemplo n.º 2
0
 def test_run_cmd(self):
     pl = Pl()
     self.assertEqual(run_cmd(pl, ['xxx_nonexistent_command_xxx']), None)
     self.assertEqual(len(pl.exceptions), 1)
     pl = Pl()
     self.assertEqual(run_cmd(pl, ['echo', '  test  ']), 'test')
     self.assertFalse(pl)
     self.assertEqual(run_cmd(pl, ['echo', '  test  '], strip=True), 'test')
     self.assertFalse(pl)
     self.assertEqual(run_cmd(pl, ['echo', '  test  '], strip=False),
                      '  test  \n')
     self.assertFalse(pl)
     self.assertEqual(run_cmd(pl, ['cat'], stdin='test'), 'test')
     self.assertFalse(pl)
     self.assertEqual(run_cmd(pl, ['sh', '-c', 'cat >&2'], stdin='test'),
                      '')
     self.assertFalse(pl)
Exemplo n.º 3
0
 def test_single_tab(self):
     pl = Pl()
     single_tab = partial(self.vim.single_tab,
                          pl=pl,
                          segment_info=None,
                          mode=None)
     with vim_module._with('tabpage'):
         self.assertEqual(single_tab(), False)
     self.assertEqual(single_tab(), True)
Exemplo n.º 4
0
	def test_threaded_segment(self):
		log = []
		pl = Pl()
		updates = [(None,)]
		lock = threading.Lock()
		event = threading.Event()
		block_event = threading.Event()

		class TestSegment(ThreadedSegment):
			interval = 10

			def set_state(self, **kwargs):
				event.clear()
				log.append(('set_state', kwargs))
				return super(TestSegment, self).set_state(**kwargs)

			def update(self, update_value):
				block_event.wait()
				event.set()
				# Make sleep first to prevent some race conditions
				log.append(('update', update_value))
				with lock:
					ret = updates[0]
				if isinstance(ret, Exception):
					raise ret
				else:
					return ret[0]

			def render(self, update, **kwargs):
				log.append(('render', update, kwargs))
				if isinstance(update, Exception):
					raise update
				else:
					return update

		# Non-threaded tests
		segment = TestSegment()
		block_event.set()
		updates[0] = (None,)
		self.assertEqual(segment(pl=pl), None)
		self.assertEqual(thread_number(), 1)
		self.assertEqual(log, [
			('set_state', {}),
			('update', None),
			('render', None, {'pl': pl, 'update_first': True}),
		])
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		updates[0] = ('abc',)
		self.assertEqual(segment(pl=pl), 'abc')
		self.assertEqual(thread_number(), 1)
		self.assertEqual(log, [
			('set_state', {}),
			('update', None),
			('render', 'abc', {'pl': pl, 'update_first': True}),
		])
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		updates[0] = ('abc',)
		self.assertEqual(segment(pl=pl, update_first=False), 'abc')
		self.assertEqual(thread_number(), 1)
		self.assertEqual(log, [
			('set_state', {}),
			('update', None),
			('render', 'abc', {'pl': pl, 'update_first': False}),
		])
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		updates[0] = ValueError('abc')
		self.assertEqual(segment(pl=pl), None)
		self.assertEqual(thread_number(), 1)
		self.assertEqual(len(pl.exceptions), 1)
		self.assertEqual(log, [
			('set_state', {}),
			('update', None),
		])
		log[:] = ()
		pl.exceptions[:] = ()

		segment = TestSegment()
		block_event.set()
		updates[0] = (TypeError('def'),)
		self.assertRaises(TypeError, segment, pl=pl)
		self.assertEqual(thread_number(), 1)
		self.assertEqual(log, [
			('set_state', {}),
			('update', None),
			('render', updates[0][0], {'pl': pl, 'update_first': True}),
		])
		log[:] = ()

		# Threaded tests
		segment = TestSegment()
		block_event.clear()
		kwargs = {'pl': pl, 'update_first': False, 'other': 1}
		with lock:
			updates[0] = ('abc',)
		segment.startup(**kwargs)
		ret = segment(**kwargs)
		self.assertEqual(thread_number(), 2)
		block_event.set()
		event.wait()
		segment.shutdown_event.set()
		segment.thread.join()
		self.assertEqual(ret, None)
		self.assertEqual(log, [
			('set_state', {'update_first': False, 'other': 1}),
			('render', None, {'pl': pl, 'update_first': False, 'other': 1}),
			('update', None),
		])
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		kwargs = {'pl': pl, 'update_first': True, 'other': 1}
		with lock:
			updates[0] = ('def',)
		segment.startup(**kwargs)
		ret = segment(**kwargs)
		self.assertEqual(thread_number(), 2)
		segment.shutdown_event.set()
		segment.thread.join()
		self.assertEqual(ret, 'def')
		self.assertEqual(log, [
			('set_state', {'update_first': True, 'other': 1}),
			('update', None),
			('render', 'def', {'pl': pl, 'update_first': True, 'other': 1}),
		])
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		kwargs = {'pl': pl, 'update_first': True, 'interval': 0.2}
		with lock:
			updates[0] = ('abc',)
		segment.startup(**kwargs)
		start = monotonic()
		ret1 = segment(**kwargs)
		with lock:
			updates[0] = ('def',)
		self.assertEqual(thread_number(), 2)
		sleep(0.5)
		ret2 = segment(**kwargs)
		segment.shutdown_event.set()
		segment.thread.join()
		end = monotonic()
		duration = end - start
		self.assertEqual(ret1, 'abc')
		self.assertEqual(ret2, 'def')
		self.assertEqual(log[:5], [
			('set_state', {'update_first': True, 'interval': 0.2}),
			('update', None),
			('render', 'abc', {'pl': pl, 'update_first': True, 'interval': 0.2}),
			('update', 'abc'),
			('update', 'def'),
		])
		num_runs = len([e for e in log if e[0] == 'update'])
		self.assertAlmostEqual(duration / 0.2, num_runs, delta=1)
		log[:] = ()

		segment = TestSegment()
		block_event.set()
		kwargs = {'pl': pl, 'update_first': True, 'interval': 0.2}
		with lock:
			updates[0] = ('ghi',)
		segment.startup(**kwargs)
		start = monotonic()
		ret1 = segment(**kwargs)
		with lock:
			updates[0] = TypeError('jkl')
		self.assertEqual(thread_number(), 2)
		sleep(0.5)
		ret2 = segment(**kwargs)
		segment.shutdown_event.set()
		segment.thread.join()
		end = monotonic()
		duration = end - start
		self.assertEqual(ret1, 'ghi')
		self.assertEqual(ret2, None)
		self.assertEqual(log[:5], [
			('set_state', {'update_first': True, 'interval': 0.2}),
			('update', None),
			('render', 'ghi', {'pl': pl, 'update_first': True, 'interval': 0.2}),
			('update', 'ghi'),
			('update', 'ghi'),
		])
		num_runs = len([e for e in log if e[0] == 'update'])
		self.assertAlmostEqual(duration / 0.2, num_runs, delta=1)
		self.assertEqual(num_runs - 1, len(pl.exceptions))
		log[:] = ()
Exemplo n.º 5
0
    def test_threaded_segment(self):
        log = []
        pl = Pl()
        updates = [(None, )]
        lock = threading.Lock()
        event = threading.Event()
        block_event = threading.Event()

        class TestSegment(ThreadedSegment):
            interval = 10

            def set_state(self, **kwargs):
                event.clear()
                log.append(('set_state', kwargs))
                return super(TestSegment, self).set_state(**kwargs)

            def update(self, update_value):
                block_event.wait()
                event.set()
                # Make sleep first to prevent some race conditions
                log.append(('update', update_value))
                with lock:
                    ret = updates[0]
                if isinstance(ret, Exception):
                    raise ret
                else:
                    return ret[0]

            def render(self, update, **kwargs):
                log.append(('render', update, kwargs))
                if isinstance(update, Exception):
                    raise update
                else:
                    return update

        # Non-threaded tests
        segment = TestSegment()
        block_event.set()
        updates[0] = (None, )
        self.assertEqual(segment(pl=pl), None)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('set_state', {}),
            ('update', None),
            ('render', None, {
                'pl': pl,
                'update_first': True
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        updates[0] = ('abc', )
        self.assertEqual(segment(pl=pl), 'abc')
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('set_state', {}),
            ('update', None),
            ('render', 'abc', {
                'pl': pl,
                'update_first': True
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        updates[0] = ('abc', )
        self.assertEqual(segment(pl=pl, update_first=False), 'abc')
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('set_state', {}),
            ('update', None),
            ('render', 'abc', {
                'pl': pl,
                'update_first': False
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        updates[0] = ValueError('abc')
        self.assertEqual(segment(pl=pl), None)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(len(pl.exceptions), 1)
        self.assertEqual(log, [
            ('set_state', {}),
            ('update', None),
        ])
        log[:] = ()
        pl.exceptions[:] = ()

        segment = TestSegment()
        block_event.set()
        updates[0] = (TypeError('def'), )
        self.assertRaises(TypeError, segment, pl=pl)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('set_state', {}),
            ('update', None),
            ('render', updates[0][0], {
                'pl': pl,
                'update_first': True
            }),
        ])
        log[:] = ()

        # Threaded tests
        segment = TestSegment()
        block_event.clear()
        kwargs = {'pl': pl, 'update_first': False, 'other': 1}
        with lock:
            updates[0] = ('abc', )
        segment.startup(**kwargs)
        ret = segment(**kwargs)
        self.assertEqual(thread_number(), 2)
        block_event.set()
        event.wait()
        segment.shutdown_event.set()
        segment.thread.join()
        self.assertEqual(ret, None)
        self.assertEqual(log, [
            ('set_state', {
                'update_first': False,
                'other': 1
            }),
            ('render', None, {
                'pl': pl,
                'update_first': False,
                'other': 1
            }),
            ('update', None),
        ])
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        kwargs = {'pl': pl, 'update_first': True, 'other': 1}
        with lock:
            updates[0] = ('def', )
        segment.startup(**kwargs)
        ret = segment(**kwargs)
        self.assertEqual(thread_number(), 2)
        segment.shutdown_event.set()
        segment.thread.join()
        self.assertEqual(ret, 'def')
        self.assertEqual(log, [
            ('set_state', {
                'update_first': True,
                'other': 1
            }),
            ('update', None),
            ('render', 'def', {
                'pl': pl,
                'update_first': True,
                'other': 1
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        kwargs = {'pl': pl, 'update_first': True, 'interval': 0.2}
        with lock:
            updates[0] = ('abc', )
        segment.startup(**kwargs)
        start = monotonic()
        ret1 = segment(**kwargs)
        with lock:
            updates[0] = ('def', )
        self.assertEqual(thread_number(), 2)
        sleep(0.5)
        ret2 = segment(**kwargs)
        segment.shutdown_event.set()
        segment.thread.join()
        end = monotonic()
        duration = end - start
        self.assertEqual(ret1, 'abc')
        self.assertEqual(ret2, 'def')
        self.assertEqual(log[:5], [
            ('set_state', {
                'update_first': True,
                'interval': 0.2
            }),
            ('update', None),
            ('render', 'abc', {
                'pl': pl,
                'update_first': True,
                'interval': 0.2
            }),
            ('update', 'abc'),
            ('update', 'def'),
        ])
        num_runs = len([e for e in log if e[0] == 'update'])
        self.assertAlmostEqual(duration / 0.2, num_runs, delta=1)
        log[:] = ()

        segment = TestSegment()
        block_event.set()
        kwargs = {'pl': pl, 'update_first': True, 'interval': 0.2}
        with lock:
            updates[0] = ('ghi', )
        segment.startup(**kwargs)
        start = monotonic()
        ret1 = segment(**kwargs)
        with lock:
            updates[0] = TypeError('jkl')
        self.assertEqual(thread_number(), 2)
        sleep(0.5)
        ret2 = segment(**kwargs)
        segment.shutdown_event.set()
        segment.thread.join()
        end = monotonic()
        duration = end - start
        self.assertEqual(ret1, 'ghi')
        self.assertEqual(ret2, None)
        self.assertEqual(log[:5], [
            ('set_state', {
                'update_first': True,
                'interval': 0.2
            }),
            ('update', None),
            ('render', 'ghi', {
                'pl': pl,
                'update_first': True,
                'interval': 0.2
            }),
            ('update', 'ghi'),
            ('update', 'ghi'),
        ])
        num_runs = len([e for e in log if e[0] == 'update'])
        self.assertAlmostEqual(duration / 0.2, num_runs, delta=1)
        self.assertEqual(num_runs - 1, len(pl.exceptions))
        log[:] = ()
Exemplo n.º 6
0
    def test_kw_threaded_segment(self):
        log = []
        pl = Pl()
        event = threading.Event()

        class TestSegment(KwThreadedSegment):
            interval = 10

            @staticmethod
            def key(_key=(None, ), **kwargs):
                log.append(('key', _key, kwargs))
                return _key

            def compute_state(self, key):
                event.set()
                sleep(0.1)
                log.append(('compute_state', key))
                ret = key
                if isinstance(ret, Exception):
                    raise ret
                else:
                    return ret[0]

            def render_one(self, state, **kwargs):
                log.append(('render_one', state, kwargs))
                if isinstance(state, Exception):
                    raise state
                else:
                    return state

        # Non-threaded tests
        segment = TestSegment()
        event.clear()
        self.assertEqual(segment(pl=pl), None)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('key', (None, ), {
                'pl': pl
            }),
            ('compute_state', (None, )),
            ('render_one', None, {
                'pl': pl
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        kwargs = {'pl': pl, '_key': ('abc', ), 'update_first': False}
        event.clear()
        self.assertEqual(segment(**kwargs), 'abc')
        kwargs.update(_key=('def', ))
        self.assertEqual(segment(**kwargs), 'def')
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('key', ('abc', ), {
                'pl': pl
            }),
            ('compute_state', ('abc', )),
            ('render_one', 'abc', {
                'pl': pl,
                '_key': ('abc', )
            }),
            ('key', ('def', ), {
                'pl': pl
            }),
            ('compute_state', ('def', )),
            ('render_one', 'def', {
                'pl': pl,
                '_key': ('def', )
            }),
        ])
        log[:] = ()

        segment = TestSegment()
        kwargs = {'pl': pl, '_key': ValueError('xyz'), 'update_first': False}
        event.clear()
        self.assertEqual(segment(**kwargs), None)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('key', kwargs['_key'], {
                'pl': pl
            }),
            ('compute_state', kwargs['_key']),
        ])
        log[:] = ()

        segment = TestSegment()
        kwargs = {
            'pl': pl,
            '_key': (ValueError('abc'), ),
            'update_first': False
        }
        event.clear()
        self.assertRaises(ValueError, segment, **kwargs)
        self.assertEqual(thread_number(), 1)
        self.assertEqual(log, [
            ('key', kwargs['_key'], {
                'pl': pl
            }),
            ('compute_state', kwargs['_key']),
            ('render_one', kwargs['_key'][0], {
                'pl': pl,
                '_key': kwargs['_key']
            }),
        ])
        log[:] = ()

        # Threaded tests
        segment = TestSegment()
        kwargs = {'pl': pl, 'update_first': False, '_key': ('_abc', )}
        event.clear()
        segment.startup(**kwargs)
        ret = segment(**kwargs)
        self.assertEqual(thread_number(), 2)
        segment.shutdown_event.set()
        segment.thread.join()
        self.assertEqual(ret, None)
        self.assertEqual(log[:2], [
            ('key', kwargs['_key'], {
                'pl': pl
            }),
            ('render_one', None, {
                'pl': pl,
                '_key': kwargs['_key']
            }),
        ])
        self.assertLessEqual(len(log), 3)
        if len(log) > 2:
            self.assertEqual(log[2], ('compute_state', kwargs['_key']))
        log[:] = ()

        segment = TestSegment()
        kwargs = {'pl': pl, 'update_first': True, '_key': ('_abc', )}
        event.clear()
        segment.startup(**kwargs)
        ret1 = segment(**kwargs)
        kwargs.update(_key=('_def', ))
        ret2 = segment(**kwargs)
        self.assertEqual(thread_number(), 2)
        segment.shutdown_event.set()
        segment.thread.join()
        self.assertEqual(ret1, '_abc')
        self.assertEqual(ret2, '_def')
        self.assertEqual(log, [
            ('key', ('_abc', ), {
                'pl': pl
            }),
            ('compute_state', ('_abc', )),
            ('render_one', '_abc', {
                'pl': pl,
                '_key': ('_abc', )
            }),
            ('key', ('_def', ), {
                'pl': pl
            }),
            ('compute_state', ('_def', )),
            ('render_one', '_def', {
                'pl': pl,
                '_key': ('_def', )
            }),
        ])
        log[:] = ()
Exemplo n.º 7
0
    def test_workspace_lister(self):
        pl = Pl()
        with replace_attr(i3wm, 'get_i3_connection',
                          lambda: Args(get_workspaces=self.get_workspaces)):
            self.assertEqual(
                list(i3wm.workspace_lister(pl=pl, segment_info={'a': 1})), [
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': {
                            'name': '1: w1',
                            'focused': False,
                            'urgent': False,
                            'visible': False
                        }
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': {
                            'name': '2: w2',
                            'focused': False,
                            'urgent': False,
                            'visible': True
                        }
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'HDMI1',
                        'workspace': {
                            'name': '3: w3',
                            'focused': False,
                            'urgent': True,
                            'visible': True
                        }
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'DVI01',
                        'workspace': {
                            'name': '4: w4',
                            'focused': True,
                            'urgent': True,
                            'visible': True
                        }
                    }, {
                        'draw_inner_divider': None
                    }),
                ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={'a': 1},
                                          output='LVDS1')), [
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '1: w1',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': False
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '2: w2',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                          ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={
                                              'a': 1,
                                              'output': 'LVDS1'
                                          })), [
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '1: w1',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': False
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '2: w2',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                          ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={
                                              'a': 1,
                                              'output': 'LVDS1'
                                          },
                                          output=False)), [
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '1: w1',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': False
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'LVDS1',
                                                  'workspace': {
                                                      'name': '2: w2',
                                                      'focused': False,
                                                      'urgent': False,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'HDMI1',
                                                  'workspace': {
                                                      'name': '3: w3',
                                                      'focused': False,
                                                      'urgent': True,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'DVI01',
                                                  'workspace': {
                                                      'name': '4: w4',
                                                      'focused': True,
                                                      'urgent': True,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                          ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={'a': 1},
                                          only_show=['focused', 'urgent'])), [
                                              ({
                                                  'a': 1,
                                                  'output': 'HDMI1',
                                                  'workspace': {
                                                      'name': '3: w3',
                                                      'focused': False,
                                                      'urgent': True,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                              ({
                                                  'a': 1,
                                                  'output': 'DVI01',
                                                  'workspace': {
                                                      'name': '4: w4',
                                                      'focused': True,
                                                      'urgent': True,
                                                      'visible': True
                                                  }
                                              }, {
                                                  'draw_inner_divider': None
                                              }),
                                          ])
Exemplo n.º 8
0
    def test_workspace_lister(self):
        pl = Pl()
        with replace_attr(i3wm, 'get_i3_connection',
                          lambda: Args(get_workspaces=self.get_workspaces)):
            self.assertEqual(
                list(i3wm.workspace_lister(pl=pl, segment_info={'a': 1})), [
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[0],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[1],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'HDMI1',
                        'workspace': self.workspaces[2],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'DVI01',
                        'workspace': self.workspaces[3],
                    }, {
                        'draw_inner_divider': None
                    }),
                ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={'a': 1},
                                          output='LVDS1')),
                [
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[0],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[1],
                    }, {
                        'draw_inner_divider': None
                    }),
                ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={
                                              'a': 1,
                                              'output': 'LVDS1'
                                          })),
                [
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[0],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[1],
                    }, {
                        'draw_inner_divider': None
                    }),
                ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={
                                              'a': 1,
                                              'output': 'LVDS1'
                                          },
                                          output=False)),
                [
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[0],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'LVDS1',
                        'workspace': self.workspaces[1],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'HDMI1',
                        'workspace': self.workspaces[2],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'DVI01',
                        'workspace': self.workspaces[3],
                    }, {
                        'draw_inner_divider': None
                    }),
                ])

            self.assertEqual(
                list(
                    i3wm.workspace_lister(pl=pl,
                                          segment_info={'a': 1},
                                          only_show=['focused', 'urgent'])),
                [
                    ({
                        'a': 1,
                        'output': 'HDMI1',
                        'workspace': self.workspaces[2],
                    }, {
                        'draw_inner_divider': None
                    }),
                    ({
                        'a': 1,
                        'output': 'DVI01',
                        'workspace': self.workspaces[3],
                    }, {
                        'draw_inner_divider': None
                    }),
                ])