Coverage for /opt/conda/envs/apienv/lib/python3.10/site-packages/daiquiri/core/hardware/abstract/valve.py: 0%

19 statements  

« prev     ^ index     » next       coverage.py v7.6.5, created at 2024-11-15 02:12 +0000

1#!/usr/bin/env python 

2# -*- coding: utf-8 -*- 

3from marshmallow import fields 

4 

5from daiquiri.core.hardware.abstract import HardwareObject 

6from daiquiri.core.schema.hardware import HardwareSchema 

7from daiquiri.core.schema.validators import RequireEmpty, OneOf 

8 

9import logging 

10 

11logger = logging.getLogger(__name__) 

12 

13ValveStates = ["OPEN", "CLOSED", "UNKNOWN", "FAULT"] 

14 

15 

16class ValvePropertiesSchema(HardwareSchema): 

17 state = OneOf(ValveStates, metadata={"readOnly": True}) 

18 status = fields.Str(metadata={"readOnly": True}) 

19 

20 

21class ValveCallablesSchema(HardwareSchema): 

22 open = RequireEmpty() 

23 close = RequireEmpty() 

24 reset = RequireEmpty() 

25 

26 

27class Valve(HardwareObject): 

28 _type = "valve" 

29 _state_ok = [ValveStates[0], ValveStates[1]] 

30 

31 _properties = ValvePropertiesSchema() 

32 _callables = ValveCallablesSchema()