forked from openlp/openlp
Bugfix 1550891 - non-standard class reply from projector
This commit is contained in:
parent
1c9713ef4e
commit
9774618d37
@ -665,7 +665,15 @@ class PJLink1(QTcpSocket):
|
|||||||
|
|
||||||
:param data: Class that projector supports.
|
:param data: Class that projector supports.
|
||||||
"""
|
"""
|
||||||
self.pjlink_class = data
|
# bug 1550891: Projector returns non-standard class response:
|
||||||
|
# : Expected: %1CLSS=1
|
||||||
|
# : Received: %1CLSS=Class 1
|
||||||
|
if len(data) > 1:
|
||||||
|
# Split non-standard information from response
|
||||||
|
clss = data.split()[-1]
|
||||||
|
else:
|
||||||
|
clss = data
|
||||||
|
self.pjlink_class = clss
|
||||||
log.debug('(%s) Setting pjlink_class for this projector to "%s"' % (self.ip, self.pjlink_class))
|
log.debug('(%s) Setting pjlink_class for this projector to "%s"' % (self.ip, self.pjlink_class))
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -60,3 +60,17 @@ class TestPJLink(TestCase):
|
|||||||
"Connection request should have been called with TEST_SALT"))
|
"Connection request should have been called with TEST_SALT"))
|
||||||
self.assertTrue(mock_qmd5_hash.called_with(TEST_PIN,
|
self.assertTrue(mock_qmd5_hash.called_with(TEST_PIN,
|
||||||
"Connection request should have been called with TEST_PIN"))
|
"Connection request should have been called with TEST_PIN"))
|
||||||
|
|
||||||
|
def non_standard_class_reply_test(self):
|
||||||
|
"""
|
||||||
|
bugfix 1550891 - CLSS request returns non-standard 'Class N' reply
|
||||||
|
"""
|
||||||
|
# GIVEN: Test object
|
||||||
|
pjlink = pjlink_test
|
||||||
|
|
||||||
|
# WHEN: Process non-standard reply
|
||||||
|
pjlink.process_clss('Class 1')
|
||||||
|
|
||||||
|
# THEN: Projector class should be set with proper value
|
||||||
|
self.assertEquals(pjlink.pjlink_class, '1',
|
||||||
|
'Non-standard class reply should have set proper class')
|
||||||
|
Loading…
Reference in New Issue
Block a user