Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
47d914edb7 | ||
|
|
99ad21c896 | ||
|
|
94189b6b63 | ||
|
|
8829260b15 | ||
|
|
55ac551a2a | ||
|
|
fc65326370 | ||
|
|
059c0802ad | ||
|
|
d7f30b5069 | ||
|
|
b42ceb6555 | ||
|
|
3cf627eedc | ||
|
|
d680d44683 | ||
|
|
6387cc4440 | ||
|
|
61985c5c89 | ||
|
|
88aaa2d30f | ||
|
|
1ce0925b61 | ||
|
|
bc35a051f2 | ||
|
|
fcbcbb30e0 | ||
|
|
be61d4aaf9 | ||
|
|
1680cacf49 |
@@ -12,6 +12,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
|
- '3.6'
|
||||||
- '3.7'
|
- '3.7'
|
||||||
- '3.8'
|
- '3.8'
|
||||||
- '3.9'
|
- '3.9'
|
||||||
@@ -21,15 +22,15 @@ jobs:
|
|||||||
|
|
||||||
name: Python ${{ matrix.python-version }}
|
name: Python ${{ matrix.python-version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Python ${{ matrix.python-version }}
|
- name: Setup Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Cached PIP dependencies
|
- name: Cached PIP dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cache/pip
|
~/.cache/pip
|
||||||
@@ -44,4 +45,4 @@ jobs:
|
|||||||
run: tox
|
run: tox
|
||||||
|
|
||||||
- name: Code coverage upload
|
- name: Code coverage upload
|
||||||
uses: codecov/codecov-action@v3
|
uses: codecov/codecov-action@v4
|
||||||
|
|||||||
+23
-6
@@ -1,19 +1,36 @@
|
|||||||
Change Log
|
Change Log
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
**1.4.2** (2024-07-14)
|
||||||
|
|
||||||
|
- Bump Github Actions to latest versions in favor of Node deprecations (`PR #159 <https://github.com/ndokter/dsmr_parser/pull/159>`_ by `dennissiemensma <https://github.com/dennissiemensma>`_)
|
||||||
|
- Swap pyserial-asyncio for pyserial-asyncio-fast (`PR #158 <https://github.com/ndokter/dsmr_parser/pull/158>`_ by `bdraco <https://github.com/bdraco>`_)
|
||||||
|
|
||||||
|
**1.4.1** (2024-06-04)
|
||||||
|
|
||||||
|
- Avoid loading timezone at runtime (`PR #157 <https://github.com/ndokter/dsmr_parser/pull/157>`_ by `elupus <https://github.com/elupus>`_)
|
||||||
|
|
||||||
|
**1.4.0** (2024-03-12)
|
||||||
|
|
||||||
|
- Mbus alt (`PR #142 <https://github.com/ndokter/dsmr_parser/pull/142>`_ by `dupondje <https://github.com/dupondje>`_)
|
||||||
|
- Q3D add CURRENT_ELECTRICITY_DELIVERY (`PR #149 <https://github.com/ndokter/dsmr_parser/pull/149>`_ by `Aeroid <https://github.com/Aeroid>`_)
|
||||||
|
- Copy head_parsers list on construct. (`PR #150 <https://github.com/ndokter/dsmr_parser/pull/150>`_ by `dupondje <https://github.com/dupondje>`_)
|
||||||
|
|
||||||
|
**1.3.2** (2024-01-29)
|
||||||
|
|
||||||
|
- Fix unit test for pyton 3.12 (`PR #148 <https://github.com/ndokter/dsmr_parser/pull/148>`_ by `ndokter <https://github.com/ndokter>`_)
|
||||||
|
|
||||||
**1.3.1** (2023-11-06)
|
**1.3.1** (2023-11-06)
|
||||||
- Fix parsing peak usage with invalid timestamps
|
|
||||||
(`PR #143 <https://github.com/ndokter/dsmr_parser/pull/143>`_ by `dupondje <https://github.com/dupondje>`_)
|
- Fix parsing peak usage with invalid timestamps (`PR #143 <https://github.com/ndokter/dsmr_parser/pull/143>`_ by `dupondje <https://github.com/dupondje>`_)
|
||||||
|
|
||||||
**1.3.0** (2023-08-01)
|
**1.3.0** (2023-08-01)
|
||||||
|
|
||||||
- added E.ON Hungary; refactored DSMR specifications to fix obis reference conflicts
|
- added E.ON Hungary; refactored DSMR specifications to fix obis reference conflicts (`PR #137 <https://github.com/ndokter/dsmr_parser/pull/137>`_ by `balazs92117 <https://github.com/balazs92117>`_)
|
||||||
(`PR #137 <https://github.com/ndokter/dsmr_parser/pull/137>`_ by `balazs92117 <https://github.com/balazs92117>`_)
|
|
||||||
|
|
||||||
**1.2.4** (2023-07-11)
|
**1.2.4** (2023-07-11)
|
||||||
|
|
||||||
- EQUIPMENT IDENTIFIER is wrong for Fluvius meters when other mbus devices are present
|
- EQUIPMENT IDENTIFIER is wrong for Fluvius meters when other mbus devices are present (`PR #133 <https://github.com/ndokter/dsmr_parser/pull/133>`_ by `ejpalacios <https://github.com/ejpalacios>`_)
|
||||||
(`PR #133 <https://github.com/ndokter/dsmr_parser/pull/133>`_ by `ejpalacios <https://github.com/ejpalacios>`_)
|
|
||||||
|
|
||||||
|
|
||||||
**1.2.3** (2023-04-18)
|
**1.2.3** (2023-04-18)
|
||||||
|
|||||||
+30
@@ -293,6 +293,36 @@ To install DSMR Parser:
|
|||||||
|
|
||||||
$ pip install dsmr-parser
|
$ pip install dsmr-parser
|
||||||
|
|
||||||
|
Development
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Create a virtualenv and activate it followed by the installation of the dsmr-parser:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
python3 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install -e .
|
||||||
|
|
||||||
|
Install tox and run it:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
pip install tox
|
||||||
|
tox
|
||||||
|
|
||||||
|
You should see that the tests have succeeded:
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
======================================================================================================== 59 passed in 0.91s ========================================================================================================
|
||||||
|
py: commands[1]> pylama dsmr_parser test
|
||||||
|
py: OK (11.55=setup[9.73]+cmd[1.29,0.53] seconds)
|
||||||
|
congratulations :) (11.69 seconds)
|
||||||
|
|
||||||
|
|
||||||
|
Now you can make changes by editing the code and rerunning tox to verify your changes.
|
||||||
|
|
||||||
Known issues
|
Known issues
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ class FileReader(object):
|
|||||||
try:
|
try:
|
||||||
yield self.telegram_parser.parse(telegram)
|
yield self.telegram_parser.parse(telegram)
|
||||||
except InvalidChecksumError as e:
|
except InvalidChecksumError as e:
|
||||||
logger.warning(str(e))
|
logger.info(str(e))
|
||||||
except ParseError as e:
|
except ParseError as e:
|
||||||
logger.error('Failed to parse telegram: %s', e)
|
logger.error('Failed to parse telegram: %s', e)
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from functools import partial
|
|||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from serial_asyncio import create_serial_connection
|
from serial_asyncio_fast import create_serial_connection
|
||||||
|
|
||||||
from dsmr_parser import telegram_specifications
|
from dsmr_parser import telegram_specifications
|
||||||
from dsmr_parser.clients.telegram_buffer import TelegramBuffer
|
from dsmr_parser.clients.telegram_buffer import TelegramBuffer
|
||||||
@@ -158,7 +158,7 @@ class DSMRProtocol(asyncio.Protocol):
|
|||||||
try:
|
try:
|
||||||
parsed_telegram = self.telegram_parser.parse(telegram)
|
parsed_telegram = self.telegram_parser.parse(telegram)
|
||||||
except InvalidChecksumError as e:
|
except InvalidChecksumError as e:
|
||||||
self.log.warning(str(e))
|
self.log.info(str(e))
|
||||||
except ParseError:
|
except ParseError:
|
||||||
self.log.exception("failed to parse telegram")
|
self.log.exception("failed to parse telegram")
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
from serial_asyncio import create_serial_connection
|
from serial_asyncio_fast import create_serial_connection
|
||||||
from .protocol import DSMRProtocol, _create_dsmr_protocol
|
from .protocol import DSMRProtocol, _create_dsmr_protocol
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import logging
|
import logging
|
||||||
import serial
|
import serial
|
||||||
import serial_asyncio
|
import serial_asyncio_fast
|
||||||
|
|
||||||
from dsmr_parser.clients.telegram_buffer import TelegramBuffer
|
from dsmr_parser.clients.telegram_buffer import TelegramBuffer
|
||||||
from dsmr_parser.exceptions import ParseError, InvalidChecksumError
|
from dsmr_parser.exceptions import ParseError, InvalidChecksumError
|
||||||
@@ -37,7 +37,7 @@ class SerialReader(object):
|
|||||||
try:
|
try:
|
||||||
yield self.telegram_parser.parse(telegram)
|
yield self.telegram_parser.parse(telegram)
|
||||||
except InvalidChecksumError as e:
|
except InvalidChecksumError as e:
|
||||||
logger.warning(str(e))
|
logger.info(str(e))
|
||||||
except ParseError as e:
|
except ParseError as e:
|
||||||
logger.error('Failed to parse telegram: %s', e)
|
logger.error('Failed to parse telegram: %s', e)
|
||||||
|
|
||||||
@@ -77,7 +77,7 @@ class AsyncSerialReader(SerialReader):
|
|||||||
:rtype: None
|
:rtype: None
|
||||||
"""
|
"""
|
||||||
# create Serial StreamReader
|
# create Serial StreamReader
|
||||||
conn = serial_asyncio.open_serial_connection(**self.serial_settings)
|
conn = serial_asyncio_fast.open_serial_connection(**self.serial_settings)
|
||||||
reader, _ = await conn
|
reader, _ = await conn
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
@@ -107,7 +107,7 @@ class AsyncSerialReader(SerialReader):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
# create Serial StreamReader
|
# create Serial StreamReader
|
||||||
conn = serial_asyncio.open_serial_connection(**self.serial_settings)
|
conn = serial_asyncio_fast.open_serial_connection(**self.serial_settings)
|
||||||
reader, _ = await conn
|
reader, _ = await conn
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|||||||
@@ -31,11 +31,15 @@ class SocketReader(object):
|
|||||||
buffer = b""
|
buffer = b""
|
||||||
|
|
||||||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as socket_handle:
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as socket_handle:
|
||||||
|
socket_handle.settimeout(60)
|
||||||
socket_handle.connect((self.host, self.port))
|
socket_handle.connect((self.host, self.port))
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
buffer += socket_handle.recv(self.BUFFER_SIZE)
|
try:
|
||||||
|
buffer += socket_handle.recv(self.BUFFER_SIZE)
|
||||||
|
except socket.timeout:
|
||||||
|
logger.error("Socket timeout occurred, exiting")
|
||||||
|
break
|
||||||
|
|
||||||
lines = buffer.splitlines(keepends=True)
|
lines = buffer.splitlines(keepends=True)
|
||||||
|
|
||||||
@@ -54,7 +58,7 @@ class SocketReader(object):
|
|||||||
try:
|
try:
|
||||||
yield self.telegram_parser.parse(telegram)
|
yield self.telegram_parser.parse(telegram)
|
||||||
except InvalidChecksumError as e:
|
except InvalidChecksumError as e:
|
||||||
logger.warning(str(e))
|
logger.info(str(e))
|
||||||
except ParseError as e:
|
except ParseError as e:
|
||||||
logger.error('Failed to parse telegram: %s', e)
|
logger.error('Failed to parse telegram: %s', e)
|
||||||
|
|
||||||
|
|||||||
@@ -69,8 +69,25 @@ ACTUAL_TRESHOLD_ELECTRICITY = r'^\d-\d:17\.0\.0.+?\r\n'
|
|||||||
ACTUAL_SWITCH_POSITION = r'^\d-\d:96\.3\.10.+?\r\n'
|
ACTUAL_SWITCH_POSITION = r'^\d-\d:96\.3\.10.+?\r\n'
|
||||||
VALVE_POSITION_GAS = r'^\d-\d:24\.4\.0.+?\r\n'
|
VALVE_POSITION_GAS = r'^\d-\d:24\.4\.0.+?\r\n'
|
||||||
|
|
||||||
|
# Multiple 'slaves' can be linked to the main device.
|
||||||
|
# The type is reported on 24.1.0
|
||||||
|
# Specifications are in EN 13757-3
|
||||||
|
# For example: Water mater = 7, Gas meter = 3
|
||||||
|
# Identifier is on 96.1.0 (in NL for ex) or
|
||||||
|
# on 96.1.1 (in BE for ex)
|
||||||
|
# The values are reported on 24.2.1
|
||||||
|
# With an exception in Belgium for the GAS meter
|
||||||
|
# Be aware that for the gas volume, another OBIS-code is published
|
||||||
|
# than the one listed in section 7 of DSMR P1.
|
||||||
|
# This is due to the fact that in Belgium the not-temperature
|
||||||
|
# corrected gas volume is used while in the Netherlands,
|
||||||
|
# the temperature corrected gas volume is used.
|
||||||
|
MBUS_DEVICE_TYPE = r'^\d-[1-9]:24\.1\.0.+?\r\n'
|
||||||
|
MBUS_EQUIPMENT_IDENTIFIER = r'^\d-[1-9]:96\.1\.[01].+?\r\n'
|
||||||
|
MBUS_VALVE_POSITION = r'^\d-[1-9]:24\.4\.0.+?\r\n'
|
||||||
|
MBUS_METER_READING = r'^\d-[1-9]:24\.2\.[13].+?\r\n'
|
||||||
|
|
||||||
# TODO 17.0.0
|
# TODO 17.0.0
|
||||||
# TODO 96.3.10
|
|
||||||
|
|
||||||
ELECTRICITY_USED_TARIFF_ALL = (
|
ELECTRICITY_USED_TARIFF_ALL = (
|
||||||
ELECTRICITY_USED_TARIFF_1,
|
ELECTRICITY_USED_TARIFF_1,
|
||||||
@@ -92,36 +109,6 @@ BELGIUM_CURRENT_AVERAGE_DEMAND = r'^\d-\d:1\.4\.0.+?\r\n'
|
|||||||
BELGIUM_MAXIMUM_DEMAND_MONTH = r'^\d-\d:1\.6\.0.+?\r\n'
|
BELGIUM_MAXIMUM_DEMAND_MONTH = r'^\d-\d:1\.6\.0.+?\r\n'
|
||||||
BELGIUM_MAXIMUM_DEMAND_13_MONTHS = r'^\d-\d:98\.1\.0.+?\r\n'
|
BELGIUM_MAXIMUM_DEMAND_13_MONTHS = r'^\d-\d:98\.1\.0.+?\r\n'
|
||||||
|
|
||||||
# Multiple 'slaves' can be linked to the main device.
|
|
||||||
# Mostly MBUS1 = GAS METER with values on 24.2.3
|
|
||||||
# While WATER METER reports it's values on 24.2.1
|
|
||||||
# The GAS METER also reports its valve state on 24.4.0
|
|
||||||
# Dev type for gas = 7 and water = 8
|
|
||||||
BELGIUM_MBUS1_DEVICE_TYPE = r'^\d-1:24\.1\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER = r'^\d-1:96\.1\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS1_VALVE_POSITION = r'^\d-1:24\.4\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS1_METER_READING1 = r'^\d-1:24\.2\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS1_METER_READING2 = r'^\d-1:24\.2\.3.+?\r\n'
|
|
||||||
|
|
||||||
BELGIUM_MBUS2_DEVICE_TYPE = r'^\d-2:24\.1\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER = r'^\d-2:96\.1\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS2_VALVE_POSITION = r'^\d-2:24\.4\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS2_METER_READING1 = r'^\d-2:24\.2\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS2_METER_READING2 = r'^\d-2:24\.2\.3.+?\r\n'
|
|
||||||
|
|
||||||
BELGIUM_MBUS3_DEVICE_TYPE = r'^\d-3:24\.1\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS3_EQUIPMENT_IDENTIFIER = r'^\d-3:96\.1\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS3_VALVE_POSITION = r'^\d-3:24\.4\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS3_METER_READING1 = r'^\d-3:24\.2\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS3_METER_READING2 = r'^\d-3:24\.2\.3.+?\r\n'
|
|
||||||
|
|
||||||
BELGIUM_MBUS4_DEVICE_TYPE = r'^\d-4:24\.1\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS4_EQUIPMENT_IDENTIFIER = r'^\d-4:96\.1\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS4_VALVE_POSITION = r'^\d-4:24\.4\.0.+?\r\n'
|
|
||||||
BELGIUM_MBUS4_METER_READING1 = r'^\d-4:24\.2\.1.+?\r\n'
|
|
||||||
BELGIUM_MBUS4_METER_READING2 = r'^\d-4:24\.2\.3.+?\r\n'
|
|
||||||
|
|
||||||
|
|
||||||
LUXEMBOURG_EQUIPMENT_IDENTIFIER = r'^\d-\d:42\.0\.0.+?\r\n' # Logical device name
|
LUXEMBOURG_EQUIPMENT_IDENTIFIER = r'^\d-\d:42\.0\.0.+?\r\n' # Logical device name
|
||||||
|
|
||||||
Q3D_EQUIPMENT_IDENTIFIER = r'^\d-\d:0\.0\.0.+?\r\n' # Logical device name
|
Q3D_EQUIPMENT_IDENTIFIER = r'^\d-\d:0\.0\.0.+?\r\n' # Logical device name
|
||||||
|
|||||||
@@ -28,12 +28,12 @@ class Telegram(dict):
|
|||||||
def add(self, obis_reference, dsmr_object, obis_name):
|
def add(self, obis_reference, dsmr_object, obis_name):
|
||||||
# Update name mapping used to get value by attribute. Example: telegram.P1_MESSAGE_HEADER
|
# Update name mapping used to get value by attribute. Example: telegram.P1_MESSAGE_HEADER
|
||||||
setattr(self, obis_name, dsmr_object)
|
setattr(self, obis_name, dsmr_object)
|
||||||
if obis_name not in self._item_names: # TODO repeating obis references
|
|
||||||
self._item_names.append(obis_name)
|
|
||||||
|
|
||||||
# TODO isinstance check: MaxDemandParser (BELGIUM_MAXIMUM_DEMAND_13_MONTHS) returns a list
|
# TODO isinstance check: MaxDemandParser (BELGIUM_MAXIMUM_DEMAND_13_MONTHS) returns a list
|
||||||
if isinstance(dsmr_object, DSMRObject) and dsmr_object.is_mbus_reading:
|
if isinstance(dsmr_object, DSMRObject) and dsmr_object.is_mbus_reading:
|
||||||
self._add_mbus(obis_reference, dsmr_object, obis_name)
|
self._add_mbus(obis_reference, dsmr_object, obis_name)
|
||||||
|
elif obis_name not in self._item_names: # TODO repeating obis references
|
||||||
|
self._item_names.append(obis_name)
|
||||||
|
|
||||||
# Fill dict which is only used for backwards compatibility
|
# Fill dict which is only used for backwards compatibility
|
||||||
if obis_reference not in self:
|
if obis_reference not in self:
|
||||||
|
|||||||
@@ -335,7 +335,7 @@ class ProfileGenericParser(DSMRObjectParser):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, buffer_types, head_parsers, parsers_for_unidentified):
|
def __init__(self, buffer_types, head_parsers, parsers_for_unidentified):
|
||||||
self.value_formats = head_parsers
|
self.value_formats = head_parsers.copy()
|
||||||
self.buffer_types = buffer_types
|
self.buffer_types = buffer_types
|
||||||
self.parsers_for_unidentified = parsers_for_unidentified
|
self.parsers_for_unidentified = parsers_for_unidentified
|
||||||
|
|
||||||
|
|||||||
@@ -430,11 +430,6 @@ V5 = {
|
|||||||
'value_parser': CosemParser(ValueParser(str)),
|
'value_parser': CosemParser(ValueParser(str)),
|
||||||
'value_name': 'TEXT_MESSAGE'
|
'value_name': 'TEXT_MESSAGE'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'obis_reference': obis.DEVICE_TYPE,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'DEVICE_TYPE'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'obis_reference': obis.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE,
|
'obis_reference': obis.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE,
|
||||||
'value_parser': CosemParser(ValueParser(Decimal)),
|
'value_parser': CosemParser(ValueParser(Decimal)),
|
||||||
@@ -466,17 +461,27 @@ V5 = {
|
|||||||
'value_name': 'INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE'
|
'value_name': 'INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.EQUIPMENT_IDENTIFIER_GAS,
|
'obis_reference': obis.MBUS_DEVICE_TYPE,
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
'value_parser': CosemParser(ValueParser(int)),
|
||||||
'value_name': 'EQUIPMENT_IDENTIFIER_GAS'
|
'value_name': 'MBUS_DEVICE_TYPE'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.HOURLY_GAS_METER_READING,
|
'obis_reference': obis.MBUS_EQUIPMENT_IDENTIFIER,
|
||||||
'value_parser': MBusParser(
|
'value_parser': CosemParser(ValueParser(str)),
|
||||||
|
'value_name': 'MBUS_EQUIPMENT_IDENTIFIER'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'obis_reference': obis.MBUS_VALVE_POSITION,
|
||||||
|
'value_parser': CosemParser(ValueParser(int)),
|
||||||
|
'value_name': 'MBUS_VALVE_POSITION'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'obis_reference': obis.MBUS_METER_READING,
|
||||||
|
'value_parser': MBusParser(
|
||||||
ValueParser(timestamp),
|
ValueParser(timestamp),
|
||||||
ValueParser(Decimal)
|
ValueParser(Decimal)
|
||||||
),
|
),
|
||||||
'value_name': 'HOURLY_GAS_METER_READING'
|
'value_name': 'MBUS_METER_READING'
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -624,11 +629,6 @@ BELGIUM_FLUVIUS = {
|
|||||||
'value_parser': CosemParser(ValueParser(Decimal)),
|
'value_parser': CosemParser(ValueParser(Decimal)),
|
||||||
'value_name': 'ACTUAL_TRESHOLD_ELECTRICITY'
|
'value_name': 'ACTUAL_TRESHOLD_ELECTRICITY'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'obis_reference': obis.ACTUAL_TRESHOLD_ELECTRICITY,
|
|
||||||
'value_parser': CosemParser(ValueParser(Decimal)),
|
|
||||||
'value_name': 'ACTUAL_TRESHOLD_ELECTRICITY'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'obis_reference': obis.FUSE_THRESHOLD_L1,
|
'obis_reference': obis.FUSE_THRESHOLD_L1,
|
||||||
'value_parser': CosemParser(ValueParser(Decimal)),
|
'value_parser': CosemParser(ValueParser(Decimal)),
|
||||||
@@ -640,128 +640,27 @@ BELGIUM_FLUVIUS = {
|
|||||||
'value_name': 'TEXT_MESSAGE'
|
'value_name': 'TEXT_MESSAGE'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.BELGIUM_MBUS1_DEVICE_TYPE,
|
'obis_reference': obis.MBUS_DEVICE_TYPE,
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
'value_parser': CosemParser(ValueParser(int)),
|
||||||
'value_name': 'BELGIUM_MBUS1_DEVICE_TYPE'
|
'value_name': 'MBUS_DEVICE_TYPE'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER,
|
'obis_reference': obis.MBUS_EQUIPMENT_IDENTIFIER,
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
'value_parser': CosemParser(ValueParser(str)),
|
||||||
'value_name': 'BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER'
|
'value_name': 'MBUS_EQUIPMENT_IDENTIFIER'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.BELGIUM_MBUS1_VALVE_POSITION,
|
'obis_reference': obis.MBUS_VALVE_POSITION,
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
'value_parser': CosemParser(ValueParser(int)),
|
||||||
'value_name': 'BELGIUM_MBUS1_VALVE_POSITION'
|
'value_name': 'MBUS_VALVE_POSITION'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.BELGIUM_MBUS1_METER_READING1,
|
'obis_reference': obis.MBUS_METER_READING,
|
||||||
'value_parser': MBusParser(
|
'value_parser': MBusParser(
|
||||||
ValueParser(timestamp),
|
ValueParser(timestamp),
|
||||||
ValueParser(Decimal)
|
ValueParser(Decimal)
|
||||||
),
|
),
|
||||||
'value_name': 'BELGIUM_MBUS1_METER_READING1'
|
'value_name': 'MBUS_METER_READING'
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS1_METER_READING2,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS1_METER_READING2'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS2_DEVICE_TYPE,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS2_DEVICE_TYPE'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER,
|
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
|
||||||
'value_name': 'BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS2_VALVE_POSITION,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS2_VALVE_POSITION'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS2_METER_READING1,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS2_METER_READING1'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS2_METER_READING2,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS2_METER_READING2'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS3_DEVICE_TYPE,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS3_DEVICE_TYPE'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS3_EQUIPMENT_IDENTIFIER,
|
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
|
||||||
'value_name': 'BELGIUM_MBUS3_EQUIPMENT_IDENTIFIER'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS3_VALVE_POSITION,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS3_VALVE_POSITION'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS3_METER_READING1,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS3_METER_READING1'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS3_METER_READING2,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS3_METER_READING2'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS4_DEVICE_TYPE,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS4_DEVICE_TYPE'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS4_EQUIPMENT_IDENTIFIER,
|
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
|
||||||
'value_name': 'BELGIUM_MBUS4_EQUIPMENT_IDENTIFIER'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS4_VALVE_POSITION,
|
|
||||||
'value_parser': CosemParser(ValueParser(int)),
|
|
||||||
'value_name': 'BELGIUM_MBUS4_VALVE_POSITION'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS4_METER_READING1,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS4_METER_READING1'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'obis_reference': obis.BELGIUM_MBUS4_METER_READING2,
|
|
||||||
'value_parser': MBusParser(
|
|
||||||
ValueParser(timestamp),
|
|
||||||
ValueParser(Decimal)
|
|
||||||
),
|
|
||||||
'value_name': 'BELGIUM_MBUS4_METER_READING2'
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -962,6 +861,11 @@ Q3D = {
|
|||||||
'value_parser': CosemParser(ValueParser(Decimal)),
|
'value_parser': CosemParser(ValueParser(Decimal)),
|
||||||
'value_name': 'CURRENT_ELECTRICITY_USAGE'
|
'value_name': 'CURRENT_ELECTRICITY_USAGE'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'obis_reference': obis.CURRENT_ELECTRICITY_DELIVERY,
|
||||||
|
'value_parser': CosemParser(ValueParser(Decimal)),
|
||||||
|
'value_name': 'CURRENT_ELECTRICITY_DELIVERY'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'obis_reference': obis.Q3D_EQUIPMENT_STATE,
|
'obis_reference': obis.Q3D_EQUIPMENT_STATE,
|
||||||
'value_parser': CosemParser(ValueParser(str)),
|
'value_parser': CosemParser(ValueParser(str)),
|
||||||
|
|||||||
@@ -2,6 +2,10 @@ import datetime
|
|||||||
|
|
||||||
import pytz
|
import pytz
|
||||||
|
|
||||||
|
# TODO : Use system timezone
|
||||||
|
# Preload timezone to avoid loading in event loop later
|
||||||
|
local_tz = pytz.timezone('Europe/Amsterdam')
|
||||||
|
|
||||||
|
|
||||||
def timestamp(value):
|
def timestamp(value):
|
||||||
try:
|
try:
|
||||||
@@ -20,8 +24,6 @@ def timestamp(value):
|
|||||||
else:
|
else:
|
||||||
is_dst = False
|
is_dst = False
|
||||||
|
|
||||||
# TODO : Use system timezone
|
|
||||||
local_tz = pytz.timezone('Europe/Amsterdam')
|
|
||||||
localized_datetime = local_tz.localize(naive_datetime, is_dst=is_dst)
|
localized_datetime = local_tz.localize(naive_datetime, is_dst=is_dst)
|
||||||
|
|
||||||
return localized_datetime.astimezone(pytz.utc)
|
return localized_datetime.astimezone(pytz.utc)
|
||||||
|
|||||||
@@ -7,11 +7,11 @@ setup(
|
|||||||
author_email='mail@nldr.net',
|
author_email='mail@nldr.net',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
url='https://github.com/ndokter/dsmr_parser',
|
url='https://github.com/ndokter/dsmr_parser',
|
||||||
version='1.3.1',
|
version='1.4.2',
|
||||||
packages=find_packages(exclude=('test', 'test.*')),
|
packages=find_packages(exclude=('test', 'test.*')),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'pyserial>=3,<4',
|
'pyserial>=3,<4',
|
||||||
'pyserial-asyncio<1',
|
'pyserial-asyncio-fast>=0.11',
|
||||||
'pytz',
|
'pytz',
|
||||||
'Tailer==0.4.1',
|
'Tailer==0.4.1',
|
||||||
'dlms_cosem==21.3.2'
|
'dlms_cosem==21.3.2'
|
||||||
|
|||||||
@@ -15,59 +15,59 @@ class MbusDeviceTest(unittest.TestCase):
|
|||||||
device_type_parser = [
|
device_type_parser = [
|
||||||
object["value_parser"]
|
object["value_parser"]
|
||||||
for object in v5_objects
|
for object in v5_objects
|
||||||
if object["obis_reference"] == obis_references.DEVICE_TYPE
|
if object["obis_reference"] == obis_references.MBUS_DEVICE_TYPE
|
||||||
][0]
|
][0]
|
||||||
device_type = device_type_parser.parse('0-2:24.1.0(003)\r\n')
|
device_type = device_type_parser.parse('0-2:24.1.0(003)\r\n')
|
||||||
|
|
||||||
equipment_parser = [
|
equipment_parser = [
|
||||||
object["value_parser"]
|
object["value_parser"]
|
||||||
for object in v5_objects
|
for object in v5_objects
|
||||||
if object["obis_reference"] == obis_references.EQUIPMENT_IDENTIFIER_GAS
|
if object["obis_reference"] == obis_references.MBUS_EQUIPMENT_IDENTIFIER
|
||||||
][0]
|
][0]
|
||||||
equipment = equipment_parser.parse('0-2:96.1.0(4730303339303031393336393930363139)\r\n')
|
equipment = equipment_parser.parse('0-2:96.1.0(4730303339303031393336393930363139)\r\n')
|
||||||
|
|
||||||
gas_reading_parser = [
|
gas_reading_parser = [
|
||||||
object["value_parser"]
|
object["value_parser"]
|
||||||
for object in v5_objects
|
for object in v5_objects
|
||||||
if object["obis_reference"] == obis_references.HOURLY_GAS_METER_READING
|
if object["obis_reference"] == obis_references.MBUS_METER_READING
|
||||||
][0]
|
][0]
|
||||||
gas_reading = gas_reading_parser.parse('0-2:24.2.1(200426223001S)(00246.138*m3)\r\n')
|
gas_reading = gas_reading_parser.parse('0-2:24.2.1(200426223001S)(00246.138*m3)\r\n')
|
||||||
|
|
||||||
mbus_device = MbusDevice(channel_id=1)
|
mbus_device = MbusDevice(channel_id=2)
|
||||||
mbus_device.add(obis_references.DEVICE_TYPE, device_type, "DEVICE_TYPE")
|
mbus_device.add(obis_references.MBUS_DEVICE_TYPE, device_type, "MBUS_DEVICE_TYPE")
|
||||||
mbus_device.add(obis_references.EQUIPMENT_IDENTIFIER_GAS, equipment, "EQUIPMENT_IDENTIFIER_GAS")
|
mbus_device.add(obis_references.MBUS_EQUIPMENT_IDENTIFIER, equipment, "MBUS_EQUIPMENT_IDENTIFIER")
|
||||||
mbus_device.add(obis_references.HOURLY_GAS_METER_READING, gas_reading, "HOURLY_GAS_METER_READING")
|
mbus_device.add(obis_references.MBUS_METER_READING, gas_reading, "MBUS_METER_READING")
|
||||||
|
|
||||||
self.mbus_device = mbus_device
|
self.mbus_device = mbus_device
|
||||||
|
|
||||||
def test_attributes(self):
|
def test_attributes(self):
|
||||||
self.assertEqual(self.mbus_device.DEVICE_TYPE.value, 3)
|
self.assertEqual(self.mbus_device.MBUS_DEVICE_TYPE.value, 3)
|
||||||
self.assertEqual(self.mbus_device.DEVICE_TYPE.unit, None)
|
self.assertEqual(self.mbus_device.MBUS_DEVICE_TYPE.unit, None)
|
||||||
|
|
||||||
self.assertEqual(self.mbus_device.EQUIPMENT_IDENTIFIER_GAS.value,
|
self.assertEqual(self.mbus_device.MBUS_EQUIPMENT_IDENTIFIER.value,
|
||||||
'4730303339303031393336393930363139')
|
'4730303339303031393336393930363139')
|
||||||
self.assertEqual(self.mbus_device.EQUIPMENT_IDENTIFIER_GAS.unit, None)
|
self.assertEqual(self.mbus_device.MBUS_EQUIPMENT_IDENTIFIER.unit, None)
|
||||||
|
|
||||||
self.assertEqual(self.mbus_device.HOURLY_GAS_METER_READING.value, Decimal('246.138'))
|
self.assertEqual(self.mbus_device.MBUS_METER_READING.value, Decimal('246.138'))
|
||||||
self.assertEqual(self.mbus_device.HOURLY_GAS_METER_READING.unit, 'm3')
|
self.assertEqual(self.mbus_device.MBUS_METER_READING.unit, 'm3')
|
||||||
|
|
||||||
def test_to_json(self):
|
def test_to_json(self):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
json.loads(self.mbus_device.to_json()),
|
json.loads(self.mbus_device.to_json()),
|
||||||
{
|
{
|
||||||
'CHANNEL_ID': 1,
|
'CHANNEL_ID': 2,
|
||||||
'DEVICE_TYPE': {'value': 3, 'unit': None},
|
'MBUS_DEVICE_TYPE': {'value': 3, 'unit': None},
|
||||||
'EQUIPMENT_IDENTIFIER_GAS': {'value': '4730303339303031393336393930363139', 'unit': None},
|
'MBUS_EQUIPMENT_IDENTIFIER': {'value': '4730303339303031393336393930363139', 'unit': None},
|
||||||
'HOURLY_GAS_METER_READING': {'datetime': '2020-04-26T20:30:01+00:00', 'value': 246.138, 'unit': 'm3'}}
|
'MBUS_METER_READING': {'datetime': '2020-04-26T20:30:01+00:00', 'value': 246.138, 'unit': 'm3'}}
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_str(self):
|
def test_str(self):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
str(self.mbus_device),
|
str(self.mbus_device),
|
||||||
(
|
(
|
||||||
'MBUS DEVICE (channel 1)\n'
|
'MBUS DEVICE (channel 2)\n'
|
||||||
'\tDEVICE_TYPE: 3 [None]\n'
|
'\tMBUS_DEVICE_TYPE: 3 [None]\n'
|
||||||
'\tEQUIPMENT_IDENTIFIER_GAS: 4730303339303031393336393930363139 [None]\n'
|
'\tMBUS_EQUIPMENT_IDENTIFIER: 4730303339303031393336393930363139 [None]\n'
|
||||||
'\tHOURLY_GAS_METER_READING: 246.138 [m3] at 2020-04-26T20:30:01+00:00\n'
|
'\tMBUS_METER_READING: 246.138 [m3] at 2020-04-26T20:30:01+00:00\n'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -216,14 +216,6 @@ class TelegramTest(unittest.TestCase):
|
|||||||
value_type=Decimal,
|
value_type=Decimal,
|
||||||
value_val=Decimal('2'))
|
value_val=Decimal('2'))
|
||||||
|
|
||||||
# DEVICE_TYPE (0-x:24.1.0)
|
|
||||||
self.verify_telegram_item(telegram,
|
|
||||||
'DEVICE_TYPE',
|
|
||||||
object_type=CosemObject,
|
|
||||||
unit_val=None,
|
|
||||||
value_type=int,
|
|
||||||
value_val=3)
|
|
||||||
|
|
||||||
# INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE (1-0:21.7.0)
|
# INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE (1-0:21.7.0)
|
||||||
self.verify_telegram_item(telegram,
|
self.verify_telegram_item(telegram,
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE',
|
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE',
|
||||||
@@ -272,7 +264,15 @@ class TelegramTest(unittest.TestCase):
|
|||||||
value_type=Decimal,
|
value_type=Decimal,
|
||||||
value_val=Decimal('0'))
|
value_val=Decimal('0'))
|
||||||
|
|
||||||
# EQUIPMENT_IDENTIFIER_GAS (0-x:96.1.0)
|
# DEVICE_TYPE (0-1:24.1.0)
|
||||||
|
self.verify_telegram_item(telegram,
|
||||||
|
'DEVICE_TYPE',
|
||||||
|
object_type=CosemObject,
|
||||||
|
unit_val=None,
|
||||||
|
value_type=int,
|
||||||
|
value_val=3)
|
||||||
|
|
||||||
|
# EQUIPMENT_IDENTIFIER_GAS (0-1:96.1.0)
|
||||||
self.verify_telegram_item(telegram,
|
self.verify_telegram_item(telegram,
|
||||||
'EQUIPMENT_IDENTIFIER_GAS',
|
'EQUIPMENT_IDENTIFIER_GAS',
|
||||||
object_type=CosemObject,
|
object_type=CosemObject,
|
||||||
@@ -340,28 +340,28 @@ class TelegramTest(unittest.TestCase):
|
|||||||
self.assertEqual(len(mbus_devices), 2)
|
self.assertEqual(len(mbus_devices), 2)
|
||||||
|
|
||||||
mbus_device_1 = mbus_devices[0]
|
mbus_device_1 = mbus_devices[0]
|
||||||
self.assertEqual(mbus_device_1.DEVICE_TYPE.value, 3)
|
self.assertEqual(mbus_device_1.MBUS_DEVICE_TYPE.value, 3)
|
||||||
self.assertEqual(mbus_device_1.EQUIPMENT_IDENTIFIER_GAS.value, None)
|
self.assertEqual(mbus_device_1.MBUS_EQUIPMENT_IDENTIFIER.value, None)
|
||||||
self.assertEqual(mbus_device_1.HOURLY_GAS_METER_READING.value, Decimal('0'))
|
self.assertEqual(mbus_device_1.MBUS_METER_READING.value, Decimal('0'))
|
||||||
|
|
||||||
mbus_device_2 = mbus_devices[1]
|
mbus_device_2 = mbus_devices[1]
|
||||||
self.assertEqual(mbus_device_2.DEVICE_TYPE.value, 3)
|
self.assertEqual(mbus_device_2.MBUS_DEVICE_TYPE.value, 3)
|
||||||
self.assertEqual(mbus_device_2.EQUIPMENT_IDENTIFIER_GAS.value, '4730303339303031393336393930363139')
|
self.assertEqual(mbus_device_2.MBUS_EQUIPMENT_IDENTIFIER.value, '4730303339303031393336393930363139')
|
||||||
self.assertEqual(mbus_device_2.HOURLY_GAS_METER_READING.value, Decimal('246.138'))
|
self.assertEqual(mbus_device_2.MBUS_METER_READING.value, Decimal('246.138'))
|
||||||
|
|
||||||
def test_get_mbus_device_by_channel(self):
|
def test_get_mbus_device_by_channel(self):
|
||||||
parser = TelegramParser(telegram_specifications.V5)
|
parser = TelegramParser(telegram_specifications.V5)
|
||||||
telegram = parser.parse(TELEGRAM_V5_TWO_MBUS)
|
telegram = parser.parse(TELEGRAM_V5_TWO_MBUS)
|
||||||
|
|
||||||
mbus_device_1 = telegram.get_mbus_device_by_channel(1)
|
mbus_device_1 = telegram.get_mbus_device_by_channel(1)
|
||||||
self.assertEqual(mbus_device_1.DEVICE_TYPE.value, 3)
|
self.assertEqual(mbus_device_1.MBUS_DEVICE_TYPE.value, 3)
|
||||||
self.assertEqual(mbus_device_1.EQUIPMENT_IDENTIFIER_GAS.value, None)
|
self.assertEqual(mbus_device_1.MBUS_EQUIPMENT_IDENTIFIER.value, None)
|
||||||
self.assertEqual(mbus_device_1.HOURLY_GAS_METER_READING.value, Decimal('0'))
|
self.assertEqual(mbus_device_1.MBUS_METER_READING.value, Decimal('0'))
|
||||||
|
|
||||||
mbus_device_2 = telegram.get_mbus_device_by_channel(2)
|
mbus_device_2 = telegram.get_mbus_device_by_channel(2)
|
||||||
self.assertEqual(mbus_device_2.DEVICE_TYPE.value, 3)
|
self.assertEqual(mbus_device_2.MBUS_DEVICE_TYPE.value, 3)
|
||||||
self.assertEqual(mbus_device_2.EQUIPMENT_IDENTIFIER_GAS.value, '4730303339303031393336393930363139')
|
self.assertEqual(mbus_device_2.MBUS_EQUIPMENT_IDENTIFIER.value, '4730303339303031393336393930363139')
|
||||||
self.assertEqual(mbus_device_2.HOURLY_GAS_METER_READING.value, Decimal('246.138'))
|
self.assertEqual(mbus_device_2.MBUS_METER_READING.value, Decimal('246.138'))
|
||||||
|
|
||||||
def test_without_mbus_devices(self):
|
def test_without_mbus_devices(self):
|
||||||
parser = TelegramParser(telegram_specifications.V5, apply_checksum_validation=False)
|
parser = TelegramParser(telegram_specifications.V5, apply_checksum_validation=False)
|
||||||
@@ -375,11 +375,12 @@ class TelegramTest(unittest.TestCase):
|
|||||||
telegram = parser.parse(TELEGRAM_V5)
|
telegram = parser.parse(TELEGRAM_V5)
|
||||||
json_data = json.loads(telegram.to_json())
|
json_data = json.loads(telegram.to_json())
|
||||||
|
|
||||||
|
self.maxDiff = None
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
json_data,
|
json_data,
|
||||||
{'CURRENT_ELECTRICITY_DELIVERY': {'unit': 'kW', 'value': 0.0},
|
{'CURRENT_ELECTRICITY_DELIVERY': {'unit': 'kW', 'value': 0.0},
|
||||||
'CURRENT_ELECTRICITY_USAGE': {'unit': 'kW', 'value': 0.244},
|
'CURRENT_ELECTRICITY_USAGE': {'unit': 'kW', 'value': 0.244},
|
||||||
'DEVICE_TYPE': {'unit': None, 'value': 3},
|
|
||||||
'ELECTRICITY_ACTIVE_TARIFF': {'unit': None, 'value': '0002'},
|
'ELECTRICITY_ACTIVE_TARIFF': {'unit': None, 'value': '0002'},
|
||||||
'ELECTRICITY_DELIVERED_TARIFF_1': {'unit': 'kWh', 'value': 2.444},
|
'ELECTRICITY_DELIVERED_TARIFF_1': {'unit': 'kWh', 'value': 2.444},
|
||||||
'ELECTRICITY_DELIVERED_TARIFF_2': {'unit': 'kWh', 'value': 0.0},
|
'ELECTRICITY_DELIVERED_TARIFF_2': {'unit': 'kWh', 'value': 0.0},
|
||||||
@@ -387,10 +388,6 @@ class TelegramTest(unittest.TestCase):
|
|||||||
'ELECTRICITY_USED_TARIFF_2': {'unit': 'kWh', 'value': 2.399},
|
'ELECTRICITY_USED_TARIFF_2': {'unit': 'kWh', 'value': 2.399},
|
||||||
'EQUIPMENT_IDENTIFIER': {'unit': None,
|
'EQUIPMENT_IDENTIFIER': {'unit': None,
|
||||||
'value': '4B384547303034303436333935353037'},
|
'value': '4B384547303034303436333935353037'},
|
||||||
'EQUIPMENT_IDENTIFIER_GAS': {'unit': None, 'value': None},
|
|
||||||
'HOURLY_GAS_METER_READING': {'datetime': '2017-01-02T15:10:05+00:00',
|
|
||||||
'unit': 'm3',
|
|
||||||
'value': 0.107},
|
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L1_NEGATIVE': {'unit': 'kW', 'value': 0.0},
|
'INSTANTANEOUS_ACTIVE_POWER_L1_NEGATIVE': {'unit': 'kW', 'value': 0.0},
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE': {'unit': 'kW', 'value': 0.07},
|
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE': {'unit': 'kW', 'value': 0.07},
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L2_NEGATIVE': {'unit': 'kW', 'value': 0.0},
|
'INSTANTANEOUS_ACTIVE_POWER_L2_NEGATIVE': {'unit': 'kW', 'value': 0.0},
|
||||||
@@ -405,15 +402,16 @@ class TelegramTest(unittest.TestCase):
|
|||||||
'INSTANTANEOUS_VOLTAGE_L3': {'unit': 'V', 'value': 229.0},
|
'INSTANTANEOUS_VOLTAGE_L3': {'unit': 'V', 'value': 229.0},
|
||||||
'LONG_POWER_FAILURE_COUNT': {'unit': None, 'value': 0},
|
'LONG_POWER_FAILURE_COUNT': {'unit': None, 'value': 0},
|
||||||
'MBUS_DEVICES': [{'CHANNEL_ID': 1,
|
'MBUS_DEVICES': [{'CHANNEL_ID': 1,
|
||||||
'DEVICE_TYPE': {'unit': None, 'value': 3},
|
'MBUS_DEVICE_TYPE': {'unit': None, 'value': 3},
|
||||||
'EQUIPMENT_IDENTIFIER_GAS': {'unit': None,
|
'MBUS_EQUIPMENT_IDENTIFIER': {'unit': None,
|
||||||
'value': '3232323241424344313233343536373839'},
|
'value': '3232323241424344313233343536373839'},
|
||||||
'HOURLY_GAS_METER_READING': {'datetime': '2017-01-02T15:10:05+00:00',
|
'MBUS_METER_READING': {'datetime': '2017-01-02T15:10:05+00:00',
|
||||||
'unit': 'm3',
|
'unit': 'm3',
|
||||||
'value': 0.107}},
|
'value': 0.107}},
|
||||||
{'CHANNEL_ID': 2,
|
{'CHANNEL_ID': 2,
|
||||||
'DEVICE_TYPE': {'unit': None, 'value': 3},
|
'MBUS_DEVICE_TYPE': {'unit': None, 'value': 3},
|
||||||
'EQUIPMENT_IDENTIFIER_GAS': {'unit': None, 'value': None}}],
|
'MBUS_EQUIPMENT_IDENTIFIER': {'unit': None,
|
||||||
|
'value': None}}],
|
||||||
'P1_MESSAGE_HEADER': {'unit': None, 'value': '50'},
|
'P1_MESSAGE_HEADER': {'unit': None, 'value': '50'},
|
||||||
'P1_MESSAGE_TIMESTAMP': {'unit': None, 'value': '2017-01-02T18:20:02+00:00'},
|
'P1_MESSAGE_TIMESTAMP': {'unit': None, 'value': '2017-01-02T18:20:02+00:00'},
|
||||||
'POWER_EVENT_FAILURE_LOG': {'buffer': [],
|
'POWER_EVENT_FAILURE_LOG': {'buffer': [],
|
||||||
@@ -433,6 +431,8 @@ class TelegramTest(unittest.TestCase):
|
|||||||
parser = TelegramParser(telegram_specifications.V5)
|
parser = TelegramParser(telegram_specifications.V5)
|
||||||
telegram = parser.parse(TELEGRAM_V5)
|
telegram = parser.parse(TELEGRAM_V5)
|
||||||
|
|
||||||
|
self.maxDiff = None
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
str(telegram),
|
str(telegram),
|
||||||
(
|
(
|
||||||
@@ -463,22 +463,19 @@ class TelegramTest(unittest.TestCase):
|
|||||||
'INSTANTANEOUS_CURRENT_L2: 0.44 [A]\n'
|
'INSTANTANEOUS_CURRENT_L2: 0.44 [A]\n'
|
||||||
'INSTANTANEOUS_CURRENT_L3: 0.86 [A]\n'
|
'INSTANTANEOUS_CURRENT_L3: 0.86 [A]\n'
|
||||||
'TEXT_MESSAGE: None [None]\n'
|
'TEXT_MESSAGE: None [None]\n'
|
||||||
'DEVICE_TYPE: 3 [None]\n'
|
|
||||||
'MBUS DEVICE (channel 1)\n'
|
|
||||||
' DEVICE_TYPE: 3 [None]\n'
|
|
||||||
' EQUIPMENT_IDENTIFIER_GAS: 3232323241424344313233343536373839 [None]\n'
|
|
||||||
' HOURLY_GAS_METER_READING: 0.107 [m3] at 2017-01-02T15:10:05+00:00\n'
|
|
||||||
'MBUS DEVICE (channel 2)\n'
|
|
||||||
' DEVICE_TYPE: 3 [None]\n'
|
|
||||||
' EQUIPMENT_IDENTIFIER_GAS: None [None]\n'
|
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE: 0.070 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE: 0.070 [kW]\n'
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L2_POSITIVE: 0.032 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L2_POSITIVE: 0.032 [kW]\n'
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L3_POSITIVE: 0.142 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L3_POSITIVE: 0.142 [kW]\n'
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L1_NEGATIVE: 0.000 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L1_NEGATIVE: 0.000 [kW]\n'
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L2_NEGATIVE: 0.000 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L2_NEGATIVE: 0.000 [kW]\n'
|
||||||
'INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE: 0.000 [kW]\n'
|
'INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE: 0.000 [kW]\n'
|
||||||
'EQUIPMENT_IDENTIFIER_GAS: None [None]\n'
|
'MBUS DEVICE (channel 1)\n'
|
||||||
'HOURLY_GAS_METER_READING: 0.107 [m3] at 2017-01-02T15:10:05+00:00\n'
|
' MBUS_DEVICE_TYPE: 3 [None]\n'
|
||||||
|
' MBUS_EQUIPMENT_IDENTIFIER: 3232323241424344313233343536373839 [None]\n'
|
||||||
|
' MBUS_METER_READING: 0.107 [m3] at 2017-01-02T15:10:05+00:00\n'
|
||||||
|
'MBUS DEVICE (channel 2)\n'
|
||||||
|
' MBUS_DEVICE_TYPE: 3 [None]\n'
|
||||||
|
' MBUS_EQUIPMENT_IDENTIFIER: None [None]\n'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
+60
-66
@@ -228,47 +228,53 @@ class TelegramParserFluviusTest(unittest.TestCase):
|
|||||||
assert result.TEXT_MESSAGE.unit is None
|
assert result.TEXT_MESSAGE.unit is None
|
||||||
assert result.TEXT_MESSAGE.value is None
|
assert result.TEXT_MESSAGE.value is None
|
||||||
|
|
||||||
# BELGIUM_MBUS1_DEVICE_TYPE (0-1:24.1.0)
|
# MBUS DEVICE 1
|
||||||
assert isinstance(result.BELGIUM_MBUS1_DEVICE_TYPE, CosemObject)
|
mbus1 = result.get_mbus_device_by_channel(1)
|
||||||
assert result.BELGIUM_MBUS1_DEVICE_TYPE.unit is None
|
|
||||||
assert isinstance(result.BELGIUM_MBUS1_DEVICE_TYPE.value, int)
|
|
||||||
assert result.BELGIUM_MBUS1_DEVICE_TYPE.value == 3
|
|
||||||
|
|
||||||
# BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER (0-1:96.1.1)
|
# MBUS_DEVICE_TYPE (0-1:24.1.0)
|
||||||
assert isinstance(result.BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER, CosemObject)
|
assert isinstance(mbus1.MBUS_DEVICE_TYPE, CosemObject)
|
||||||
assert result.BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER.unit is None
|
assert mbus1.MBUS_DEVICE_TYPE.unit is None
|
||||||
assert isinstance(result.BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER.value, str)
|
assert isinstance(mbus1.MBUS_DEVICE_TYPE.value, int)
|
||||||
assert result.BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER.value == '37464C4F32313139303333373333'
|
assert mbus1.MBUS_DEVICE_TYPE.value == 3
|
||||||
|
|
||||||
# BELGIUM_MBUS1_VALVE_POSITION (0-1:24.4.0)
|
# MBUS_EQUIPMENT_IDENTIFIER (0-1:96.1.1)
|
||||||
assert isinstance(result.BELGIUM_MBUS1_VALVE_POSITION, CosemObject)
|
assert isinstance(mbus1.MBUS_EQUIPMENT_IDENTIFIER, CosemObject)
|
||||||
assert result.BELGIUM_MBUS1_VALVE_POSITION.unit is None
|
assert mbus1.MBUS_EQUIPMENT_IDENTIFIER.unit is None
|
||||||
assert isinstance(result.BELGIUM_MBUS1_VALVE_POSITION.value, int)
|
assert isinstance(mbus1.MBUS_EQUIPMENT_IDENTIFIER.value, str)
|
||||||
assert result.BELGIUM_MBUS1_VALVE_POSITION.value == 1
|
assert mbus1.MBUS_EQUIPMENT_IDENTIFIER.value == '37464C4F32313139303333373333'
|
||||||
|
|
||||||
# BELGIUM_MBUS1_METER_READING2 (0-1:24.2.3)
|
# MBUS_VALVE_POSITION (0-1:24.4.0)
|
||||||
assert isinstance(result.BELGIUM_MBUS1_METER_READING2, MBusObject)
|
assert isinstance(result.MBUS_VALVE_POSITION, CosemObject)
|
||||||
assert result.BELGIUM_MBUS1_METER_READING2.unit == 'm3'
|
assert result.MBUS_VALVE_POSITION.unit is None
|
||||||
assert isinstance(result.BELGIUM_MBUS1_METER_READING2.value, Decimal)
|
assert isinstance(result.MBUS_VALVE_POSITION.value, int)
|
||||||
assert result.BELGIUM_MBUS1_METER_READING2.value == Decimal('112.384')
|
assert result.MBUS_VALVE_POSITION.value == 1
|
||||||
|
|
||||||
# BELGIUM_MBUS2_DEVICE_TYPE (0-2:24.1.0)
|
# MBUS_METER_READING (0-1:24.2.3)
|
||||||
assert isinstance(result.BELGIUM_MBUS2_DEVICE_TYPE, CosemObject)
|
assert isinstance(mbus1.MBUS_METER_READING, MBusObject)
|
||||||
assert result.BELGIUM_MBUS2_DEVICE_TYPE.unit is None
|
assert mbus1.MBUS_METER_READING.unit == 'm3'
|
||||||
assert isinstance(result.BELGIUM_MBUS2_DEVICE_TYPE.value, int)
|
assert isinstance(mbus1.MBUS_METER_READING.value, Decimal)
|
||||||
assert result.BELGIUM_MBUS2_DEVICE_TYPE.value == 7
|
assert mbus1.MBUS_METER_READING.value == Decimal('112.384')
|
||||||
|
|
||||||
# BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER (0-2:96.1.1)
|
# MBUS DEVICE 2
|
||||||
assert isinstance(result.BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER, CosemObject)
|
mbus2 = result.get_mbus_device_by_channel(2)
|
||||||
assert result.BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER.unit is None
|
|
||||||
assert isinstance(result.BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER.value, str)
|
|
||||||
assert result.BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER.value == '3853414731323334353637383930'
|
|
||||||
|
|
||||||
# BELGIUM_MBUS2_METER_READING1 (0-1:24.2.1)
|
# MBUS_DEVICE_TYPE (0-2:24.1.0)
|
||||||
assert isinstance(result.BELGIUM_MBUS2_METER_READING1, MBusObject)
|
assert isinstance(mbus2.MBUS_DEVICE_TYPE, CosemObject)
|
||||||
assert result.BELGIUM_MBUS2_METER_READING1.unit == 'm3'
|
assert mbus2.MBUS_DEVICE_TYPE.unit is None
|
||||||
assert isinstance(result.BELGIUM_MBUS2_METER_READING1.value, Decimal)
|
assert isinstance(mbus2.MBUS_DEVICE_TYPE.value, int)
|
||||||
assert result.BELGIUM_MBUS2_METER_READING1.value == Decimal('872.234')
|
assert mbus2.MBUS_DEVICE_TYPE.value == 7
|
||||||
|
|
||||||
|
# MBUS_EQUIPMENT_IDENTIFIER (0-2:96.1.1)
|
||||||
|
assert isinstance(mbus2.MBUS_EQUIPMENT_IDENTIFIER, CosemObject)
|
||||||
|
assert mbus2.MBUS_EQUIPMENT_IDENTIFIER.unit is None
|
||||||
|
assert isinstance(mbus2.MBUS_EQUIPMENT_IDENTIFIER.value, str)
|
||||||
|
assert mbus2.MBUS_EQUIPMENT_IDENTIFIER.value == '3853414731323334353637383930'
|
||||||
|
|
||||||
|
# MBUS_METER_READING (0-1:24.2.1)
|
||||||
|
assert isinstance(mbus2.MBUS_METER_READING, MBusObject)
|
||||||
|
assert mbus2.MBUS_METER_READING.unit == 'm3'
|
||||||
|
assert isinstance(mbus2.MBUS_METER_READING.value, Decimal)
|
||||||
|
assert mbus2.MBUS_METER_READING.value == Decimal('872.234')
|
||||||
|
|
||||||
def test_checksum_valid(self):
|
def test_checksum_valid(self):
|
||||||
# No exception is raised.
|
# No exception is raised.
|
||||||
@@ -296,6 +302,8 @@ class TelegramParserFluviusTest(unittest.TestCase):
|
|||||||
telegram = parser.parse(TELEGRAM_FLUVIUS_V171_ALT)
|
telegram = parser.parse(TELEGRAM_FLUVIUS_V171_ALT)
|
||||||
json_data = json.loads(telegram.to_json())
|
json_data = json.loads(telegram.to_json())
|
||||||
|
|
||||||
|
self.maxDiff = None
|
||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
json_data,
|
json_data,
|
||||||
{'BELGIUM_VERSION_INFORMATION': {'value': '50217', 'unit': None},
|
{'BELGIUM_VERSION_INFORMATION': {'value': '50217', 'unit': None},
|
||||||
@@ -338,26 +346,19 @@ class TelegramParserFluviusTest(unittest.TestCase):
|
|||||||
'ACTUAL_TRESHOLD_ELECTRICITY': {'value': 999.9, 'unit': 'kW'},
|
'ACTUAL_TRESHOLD_ELECTRICITY': {'value': 999.9, 'unit': 'kW'},
|
||||||
'FUSE_THRESHOLD_L1': {'value': 999.0, 'unit': 'A'},
|
'FUSE_THRESHOLD_L1': {'value': 999.0, 'unit': 'A'},
|
||||||
'TEXT_MESSAGE': {'value': None, 'unit': None},
|
'TEXT_MESSAGE': {'value': None, 'unit': None},
|
||||||
'BELGIUM_MBUS1_DEVICE_TYPE': {'value': 3, 'unit': None},
|
'MBUS_DEVICES': [{'MBUS_DEVICE_TYPE': {'value': 3, 'unit': None},
|
||||||
'MBUS_DEVICES': [{'BELGIUM_MBUS1_DEVICE_TYPE': {'value': 3, 'unit': None},
|
'MBUS_EQUIPMENT_IDENTIFIER': {'value': '37464C4F32313233303838303237',
|
||||||
'BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER': {'value': '37464C4F32313233303838303237',
|
|
||||||
'unit': None},
|
'unit': None},
|
||||||
'BELGIUM_MBUS1_VALVE_POSITION': {'value': 1, 'unit': None},
|
'MBUS_VALVE_POSITION': {'value': 1, 'unit': None},
|
||||||
'BELGIUM_MBUS1_METER_READING2': {'datetime': '2023-11-02T11:10:02+00:00',
|
'MBUS_METER_READING': {'datetime': '2023-11-02T11:10:02+00:00',
|
||||||
'value': 92.287, 'unit': 'm3'},
|
'value': 92.287, 'unit': 'm3'},
|
||||||
'CHANNEL_ID': 1},
|
'CHANNEL_ID': 1},
|
||||||
{'BELGIUM_MBUS2_DEVICE_TYPE': {'value': 7, 'unit': None},
|
{'MBUS_DEVICE_TYPE': {'value': 7, 'unit': None},
|
||||||
'BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER': {'value': '3853455430303030393631313733',
|
'MBUS_EQUIPMENT_IDENTIFIER': {'value': '3853455430303030393631313733',
|
||||||
'unit': None},
|
'unit': None},
|
||||||
'BELGIUM_MBUS2_METER_READING1': {'datetime': '2023-11-02T11:15:32+00:00',
|
'MBUS_METER_READING': {'datetime': '2023-11-02T11:15:32+00:00',
|
||||||
'value': 8.579, 'unit': 'm3'},
|
'value': 8.579, 'unit': 'm3'},
|
||||||
'CHANNEL_ID': 2}],
|
'CHANNEL_ID': 2}]}
|
||||||
'BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER': {'value': '37464C4F32313233303838303237', 'unit': None},
|
|
||||||
'BELGIUM_MBUS1_VALVE_POSITION': {'value': 1, 'unit': None},
|
|
||||||
'BELGIUM_MBUS1_METER_READING2': {'datetime': '2023-11-02T11:10:02+00:00', 'value': 92.287, 'unit': 'm3'},
|
|
||||||
'BELGIUM_MBUS2_DEVICE_TYPE': {'value': 7, 'unit': None},
|
|
||||||
'BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER': {'value': '3853455430303030393631313733', 'unit': None},
|
|
||||||
'BELGIUM_MBUS2_METER_READING1': {'datetime': '2023-11-02T11:15:32+00:00', 'value': 8.579, 'unit': 'm3'}}
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_to_str(self):
|
def test_to_str(self):
|
||||||
@@ -399,21 +400,14 @@ class TelegramParserFluviusTest(unittest.TestCase):
|
|||||||
'ACTUAL_TRESHOLD_ELECTRICITY: 999.9 [kW]\n'
|
'ACTUAL_TRESHOLD_ELECTRICITY: 999.9 [kW]\n'
|
||||||
'FUSE_THRESHOLD_L1: 999 [A]\n'
|
'FUSE_THRESHOLD_L1: 999 [A]\n'
|
||||||
'TEXT_MESSAGE: None [None]\n'
|
'TEXT_MESSAGE: None [None]\n'
|
||||||
'BELGIUM_MBUS1_DEVICE_TYPE: 3 [None]\n'
|
|
||||||
'MBUS DEVICE (channel 1)\n'
|
'MBUS DEVICE (channel 1)\n'
|
||||||
' BELGIUM_MBUS1_DEVICE_TYPE: 3 [None]\n'
|
' MBUS_DEVICE_TYPE: 3 [None]\n'
|
||||||
' BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER: 37464C4F32313233303838303237 [None]\n'
|
' MBUS_EQUIPMENT_IDENTIFIER: 37464C4F32313233303838303237 [None]\n'
|
||||||
' BELGIUM_MBUS1_VALVE_POSITION: 1 [None]\n'
|
' MBUS_VALVE_POSITION: 1 [None]\n'
|
||||||
' BELGIUM_MBUS1_METER_READING2: 92.287 [m3] at 2023-11-02T11:10:02+00:00\n'
|
' MBUS_METER_READING: 92.287 [m3] at 2023-11-02T11:10:02+00:00\n'
|
||||||
'MBUS DEVICE (channel 2)\n'
|
'MBUS DEVICE (channel 2)\n'
|
||||||
' BELGIUM_MBUS2_DEVICE_TYPE: 7 [None]\n'
|
' MBUS_DEVICE_TYPE: 7 [None]\n'
|
||||||
' BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER: 3853455430303030393631313733 [None]\n'
|
' MBUS_EQUIPMENT_IDENTIFIER: 3853455430303030393631313733 [None]\n'
|
||||||
' BELGIUM_MBUS2_METER_READING1: 8.579 [m3] at 2023-11-02T11:15:32+00:00\n'
|
' MBUS_METER_READING: 8.579 [m3] at 2023-11-02T11:15:32+00:00\n'
|
||||||
'BELGIUM_MBUS1_EQUIPMENT_IDENTIFIER: 37464C4F32313233303838303237 [None]\n'
|
|
||||||
'BELGIUM_MBUS1_VALVE_POSITION: 1 [None]\n'
|
|
||||||
'BELGIUM_MBUS1_METER_READING2: 92.287 [m3] at 2023-11-02T11:10:02+00:00\n'
|
|
||||||
'BELGIUM_MBUS2_DEVICE_TYPE: 7 [None]\n'
|
|
||||||
'BELGIUM_MBUS2_EQUIPMENT_IDENTIFIER: 3853455430303030393631313733 [None]\n'
|
|
||||||
'BELGIUM_MBUS2_METER_READING1: 8.579 [m3] at 2023-11-02T11:15:32+00:00\n'
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
+24
-27
@@ -172,12 +172,6 @@ class TelegramParserV5Test(unittest.TestCase):
|
|||||||
assert telegram.TEXT_MESSAGE.unit is None
|
assert telegram.TEXT_MESSAGE.unit is None
|
||||||
assert telegram.TEXT_MESSAGE.value is None
|
assert telegram.TEXT_MESSAGE.value is None
|
||||||
|
|
||||||
# DEVICE_TYPE (0-x:24.1.0)
|
|
||||||
assert isinstance(telegram.DEVICE_TYPE, CosemObject)
|
|
||||||
assert telegram.DEVICE_TYPE.unit is None
|
|
||||||
assert isinstance(telegram.DEVICE_TYPE.value, int)
|
|
||||||
assert telegram.DEVICE_TYPE.value == 3
|
|
||||||
|
|
||||||
# INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE (1-0:21.7.0)
|
# INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE (1-0:21.7.0)
|
||||||
assert isinstance(telegram.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE, CosemObject)
|
assert isinstance(telegram.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE, CosemObject)
|
||||||
assert telegram.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE.unit == 'kW'
|
assert telegram.INSTANTANEOUS_ACTIVE_POWER_L1_POSITIVE.unit == 'kW'
|
||||||
@@ -215,27 +209,27 @@ class TelegramParserV5Test(unittest.TestCase):
|
|||||||
assert telegram.INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE.value == Decimal('0')
|
assert telegram.INSTANTANEOUS_ACTIVE_POWER_L3_NEGATIVE.value == Decimal('0')
|
||||||
|
|
||||||
# There's only one Mbus device (gas meter) in this case. Alternatively
|
# There's only one Mbus device (gas meter) in this case. Alternatively
|
||||||
# use get_mbget_mbus_device_by_channel
|
# use get_mbus_device_by_channel
|
||||||
gas_meter_devices = telegram.MBUS_DEVICES
|
gas_meter_devices = telegram.MBUS_DEVICES
|
||||||
gas_meter_device = gas_meter_devices[0]
|
gas_meter_device = gas_meter_devices[0]
|
||||||
|
|
||||||
# EQUIPMENT_IDENTIFIER_GAS (0-x:96.1.0)
|
# MBUS_DEVICE_TYPE (0-1:96.1.0)
|
||||||
assert isinstance(gas_meter_device.DEVICE_TYPE, CosemObject)
|
assert isinstance(gas_meter_device.MBUS_DEVICE_TYPE, CosemObject)
|
||||||
assert gas_meter_device.DEVICE_TYPE.unit is None
|
assert gas_meter_device.MBUS_DEVICE_TYPE.unit is None
|
||||||
assert isinstance(gas_meter_device.DEVICE_TYPE.value, int)
|
assert isinstance(gas_meter_device.MBUS_DEVICE_TYPE.value, int)
|
||||||
assert gas_meter_device.DEVICE_TYPE.value == 3
|
assert gas_meter_device.MBUS_DEVICE_TYPE.value == 3
|
||||||
|
|
||||||
# EQUIPMENT_IDENTIFIER_GAS (0-x:96.1.0)
|
# MBUS_EQUIPMENT_IDENTIFIER (0-1:96.1.0)
|
||||||
assert isinstance(gas_meter_device.EQUIPMENT_IDENTIFIER_GAS, CosemObject)
|
assert isinstance(gas_meter_device.MBUS_EQUIPMENT_IDENTIFIER, CosemObject)
|
||||||
assert gas_meter_device.EQUIPMENT_IDENTIFIER_GAS.unit is None
|
assert gas_meter_device.MBUS_EQUIPMENT_IDENTIFIER.unit is None
|
||||||
assert isinstance(gas_meter_device.EQUIPMENT_IDENTIFIER_GAS.value, str)
|
assert isinstance(gas_meter_device.MBUS_EQUIPMENT_IDENTIFIER.value, str)
|
||||||
assert gas_meter_device.EQUIPMENT_IDENTIFIER_GAS.value == '3232323241424344313233343536373839'
|
assert gas_meter_device.MBUS_EQUIPMENT_IDENTIFIER.value == '3232323241424344313233343536373839'
|
||||||
|
|
||||||
# HOURLY_GAS_METER_READING (0-1:24.2.1)
|
# MBUS_METER_READING (0-1:24.2.1)
|
||||||
assert isinstance(gas_meter_device.HOURLY_GAS_METER_READING, MBusObject)
|
assert isinstance(gas_meter_device.MBUS_METER_READING, MBusObject)
|
||||||
assert gas_meter_device.HOURLY_GAS_METER_READING.unit == 'm3'
|
assert gas_meter_device.MBUS_METER_READING.unit == 'm3'
|
||||||
assert isinstance(telegram.HOURLY_GAS_METER_READING.value, Decimal)
|
assert isinstance(telegram.MBUS_METER_READING.value, Decimal)
|
||||||
assert gas_meter_device.HOURLY_GAS_METER_READING.value == Decimal('0.107')
|
assert gas_meter_device.MBUS_METER_READING.value == Decimal('0.107')
|
||||||
|
|
||||||
def test_checksum_valid(self):
|
def test_checksum_valid(self):
|
||||||
# No exception is raised.
|
# No exception is raised.
|
||||||
@@ -270,8 +264,11 @@ class TelegramParserV5Test(unittest.TestCase):
|
|||||||
parser = TelegramParser(telegram_specifications.V5)
|
parser = TelegramParser(telegram_specifications.V5)
|
||||||
telegram = parser.parse(invalid_date_telegram)
|
telegram = parser.parse(invalid_date_telegram)
|
||||||
|
|
||||||
# HOURLY_GAS_METER_READING (0-1:24.2.1)
|
# MBUS DEVICE 1
|
||||||
assert isinstance(telegram.HOURLY_GAS_METER_READING, MBusObject)
|
mbus1 = telegram.get_mbus_device_by_channel(1)
|
||||||
assert telegram.HOURLY_GAS_METER_READING.unit is None
|
|
||||||
assert isinstance(telegram.HOURLY_GAS_METER_READING.value, Decimal)
|
# MBUS_METER_READING (0-1:24.2.1)
|
||||||
assert telegram.HOURLY_GAS_METER_READING.value == Decimal('0.000')
|
assert isinstance(mbus1.MBUS_METER_READING, MBusObject)
|
||||||
|
assert mbus1.MBUS_METER_READING.unit is None
|
||||||
|
assert isinstance(mbus1.MBUS_METER_READING.value, Decimal)
|
||||||
|
assert mbus1.MBUS_METER_READING.value == Decimal('0.000')
|
||||||
|
|||||||
@@ -14,6 +14,9 @@ commands=
|
|||||||
[pylama:dsmr_parser/clients/__init__.py]
|
[pylama:dsmr_parser/clients/__init__.py]
|
||||||
ignore = W0611
|
ignore = W0611
|
||||||
|
|
||||||
|
[pylama:dsmr_parser/clients/socket_.py]
|
||||||
|
ignore = C901
|
||||||
|
|
||||||
[pylama:dsmr_parser/parsers.py]
|
[pylama:dsmr_parser/parsers.py]
|
||||||
ignore = W605
|
ignore = W605
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user