def test_v026_chile(self):
        # receiver beacons from chile have a APRS position message with a pure user comment
        message = parse("VITACURA1>APRS,TCPIP*,qAC,GLIDERN4:/201146h3322.79SI07034.80W&/A=002329 Vitacura Municipal Aerodrome, Club de Planeadores Vitacura")

        self.assertEqual(message['user_comment'], "Vitacura Municipal Aerodrome, Club de Planeadores Vitacura")

        message_with_id = parse("ALFALFAL>APRS,TCPIP*,qAC,GLIDERN4:/221830h3330.40SI07007.88W&/A=008659 Alfalfal Hidroelectric Plant, Club de Planeadores Vitacurs")

        self.assertEqual(message_with_id['user_comment'], "Alfalfal Hidroelectric Plant, Club de Planeadores Vitacurs")
    def test_v026_chile(self):
        # receiver beacons from chile have a APRS position message with a pure user comment
        message = parse("VITACURA1>APRS,TCPIP*,qAC,GLIDERN4:/201146h3322.79SI07034.80W&/A=002329 Vitacura Municipal Aerodrome, Club de Planeadores Vitacura")

        self.assertEqual(message['user_comment'], "Vitacura Municipal Aerodrome, Club de Planeadores Vitacura")

        message_with_id = parse("ALFALFAL>APRS,TCPIP*,qAC,GLIDERN4:/221830h3330.40SI07007.88W&/A=008659 Alfalfal Hidroelectric Plant, Club de Planeadores Vitacurs")

        self.assertEqual(message_with_id['user_comment'], "Alfalfal Hidroelectric Plant, Club de Planeadores Vitacurs")
    def test_default_reference_date(self, createTimestamp_mock):
        valid_aprs_string = "Lachens>APRS,TCPIP*,qAC,GLIDERN2:/165334h4344.70NI00639.19E&/A=005435 v0.2.1 CPU:0.3 RAM:1764.4/2121.4MB NTP:2.8ms/+4.9ppm +47.0C RF:+0.70dB"

        parse(valid_aprs_string)
        call_args_before = createTimestamp_mock.call_args

        sleep(1)

        parse(valid_aprs_string)
        call_args_seconds_later = createTimestamp_mock.call_args

        self.assertNotEqual(call_args_before, call_args_seconds_later)
    def test_default_reference_date(self, createTimestamp_mock):
        valid_aprs_string = "Lachens>APRS,TCPIP*,qAC,GLIDERN2:/165334h4344.70NI00639.19E&/A=005435 v0.2.1 CPU:0.3 RAM:1764.4/2121.4MB NTP:2.8ms/+4.9ppm +47.0C RF:+0.70dB"

        parse(valid_aprs_string)
        call_args_before = createTimestamp_mock.call_args

        sleep(1)

        parse(valid_aprs_string)
        call_args_seconds_later = createTimestamp_mock.call_args

        self.assertNotEqual(call_args_before, call_args_seconds_later)
 def parse_valid_beacon_data_file(self, filename, beacon_type):
     with open(os.path.dirname(__file__) + '/valid_beacon_data/' + filename) as f:
         for line in f:
             try:
                 message = parse(line, datetime(2015, 4, 10, 17, 0))
                 self.assertFalse(message is None)
                 if message['aprs_type'] == 'position' or message['aprs_type'] == 'status':
                     self.assertEqual(message['beacon_type'], beacon_type)
             except NotImplementedError as e:
                 print(e)
 def parse_valid_beacon_data_file(self, filename, beacon_type):
     with open(os.path.dirname(__file__) + '/valid_beacon_data/' + filename) as f:
         for line in f:
             try:
                 message = parse(line, datetime(2015, 4, 10, 17, 0))
                 self.assertFalse(message is None)
                 if message['aprs_type'] == 'position' or message['aprs_type'] == 'status':
                     self.assertEqual(message['beacon_type'], beacon_type)
             except NotImplementedError as e:
                 print(e)
Esempio n. 7
0
 def test_fail_bad_dstcall(self):
     with self.assertRaises(OgnParseError):
         parse(
             "EPZR>WTFDSTCALL,TCPIP*,qAC,GLIDERN1:>093456h this is a comment"
         )
 def test_fail_empty(self):
     with self.assertRaises(AprsParseError):
         parse("")
 def test_fail_bad_string(self):
     with self.assertRaises(AprsParseError):
         parse("Lachens>APRS,TCPIwontbeavalidstring")
Esempio n. 10
0
 def test_fail_empty(self):
     with self.assertRaises(AprsParseError):
         parse("")
Esempio n. 11
0
 def test_fail_parse_aprs_none(self):
     with self.assertRaises(TypeError):
         parse(None)
Esempio n. 12
0
 def test_generic_beacons(self):
     message = parse("EPZR>WTFDSTCALL,TCPIP*,qAC,GLIDERN1:>093456h this is a comment")
     self.assertEqual(message['beacon_type'], 'unknown')
     self.assertEqual(message['comment'], "this is a comment")
Esempio n. 13
0
    def test_copy_constructor(self):
        valid_aprs_string = "FLRDDA5BA>APRS,qAS,LFMX:/160829h4415.41N/00600.03E'342/049/A=005524 id0ADDA5BA -454fpm -1.1rot 8.8dB 0e +51.2kHz gps4x5"
        message = parse(valid_aprs_string)

        self.assertEqual(message['name'], 'FLRDDA5BA')
        self.assertEqual(message['address'], 'DDA5BA')
 def test_fail_parse_aprs_none(self):
     with self.assertRaises(TypeError):
         parse(None)
    def test_copy_constructor(self):
        valid_aprs_string = "FLRDDA5BA>APRS,qAS,LFMX:/160829h4415.41N/00600.03E'342/049/A=005524 id0ADDA5BA -454fpm -1.1rot 8.8dB 0e +51.2kHz gps4x5"
        message = parse(valid_aprs_string)

        self.assertEqual(message['name'], 'FLRDDA5BA')
        self.assertEqual(message['address'], 'DDA5BA')
 def test_fail_bad_string(self):
     with self.assertRaises(AprsParseError):
         parse("Lachens>APRS,TCPIwontbeavalidstring")
 def test_fail_bad_dstcall(self):
     with self.assertRaises(OgnParseError):
         parse("EPZR>WTFDSTCALL,TCPIP*,qAC,GLIDERN1:>093456h this is a comment")