aboutsummaryrefslogtreecommitdiff
path: root/test/test_polaris_stuff.py
blob: b921891d81529c59ca6cf7eb07407c287d7411ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python3
import sys
import os.path
sys.path.extend([
    os.path.realpath(
        os.path.join(os.path.dirname(os.path.join(__file__)), '..')
    )
])

import src.syncleo as polaris


if __name__ == '__main__':
    sc = [cl for cl in syncleo.protocol.CmdIncomingMessage.__subclasses__()
          if cl is not syncleo.protocol.SimpleBooleanMessage]
    sc.extend(syncleo.protocol.SimpleBooleanMessage.__subclasses__())
    for cl in sc:
        # if cl == polaris.protocol.HandshakeMessage:
        #     print('skip')
        #     continue
        print(cl.__name__, cl.TYPE)