-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cn0540 test and import statement for cn0540
Add test for cn0540 with import statement and new attribute test Signed-off-by: Trisha De Vera <Trisha.Devera@analog.com>
- Loading branch information
1 parent
37563ff
commit d0d9ae5
Showing
5 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
import random | ||
from test.attr_tests import floor_step_size | ||
|
||
import adi | ||
import pytest | ||
from adi.cn0540 import cn0540 | ||
|
||
hardware = "cn0540" | ||
classname = "cn0540" | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware, True) | ||
@pytest.mark.parametrize("classname", [(classname)]) | ||
@pytest.mark.parametrize("channel", [0]) | ||
def test_cn0540_rx_data(test_dma_rx, iio_uri, classname, channel): | ||
test_dma_rx(iio_uri, classname, channel) | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware) | ||
@pytest.mark.parametrize("classname", [(classname)]) | ||
@pytest.mark.parametrize( | ||
"attr, val", | ||
[("sample_rate", [256000, 128000, 64000, 32000, 16000, 8000, 4000, 2000, 1000,],),], | ||
) | ||
def test_cn0540_attr_multiple( | ||
test_attribute_multiple_values, iio_uri, classname, attr, val | ||
): | ||
test_attribute_multiple_values(iio_uri, classname, attr, val, 0) | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware) | ||
@pytest.mark.parametrize("classname", [(classname)]) | ||
@pytest.mark.parametrize( | ||
"attr, value", | ||
[ | ||
("monitor_powerup", 0), | ||
("monitor_powerup", 1), | ||
("fda_disable_status", 0), | ||
("fda_disable_status", 1), | ||
("red_led_enable", 0), | ||
("red_led_enable", 1), | ||
("sw_cc", 0), | ||
("sw_cc", 1), | ||
("fda_mode", "low-power"), | ||
("fda_mode", "full-power"), | ||
], | ||
) | ||
def test_cn0540_attr_boolean( | ||
test_attribute_single_value_boolean, iio_uri, classname, attr, value | ||
): | ||
test_attribute_single_value_boolean(iio_uri, classname, attr, value) | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware) | ||
@pytest.mark.parametrize("classname", [(classname)]) | ||
@pytest.mark.parametrize( | ||
"attr", [("sw_ff_status"),], | ||
) | ||
def test_cn0540_attr_boolean_readonly( | ||
test_attribute_single_value_boolean_readonly, iio_uri, classname, attr | ||
): | ||
test_attribute_single_value_boolean_readonly(iio_uri, classname, attr) | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware, True) | ||
@pytest.mark.parametrize("classname", [(classname)]) | ||
@pytest.mark.parametrize( | ||
"attr, start, stop, step, repeats ", [("shift_voltage", 0, 65535, 1, 2),], | ||
) | ||
def test_cn0540_shift_voltage(iio_uri, classname, attr, start, stop, step, repeats): | ||
device = cn0540(uri=iio_uri) | ||
bi = eval(classname + "(uri='" + iio_uri + "')") | ||
|
||
if not hasattr(bi, attr): | ||
raise AttributeError(f"no attribute named: {attr}") | ||
|
||
# Pick random number in operational range | ||
numints = int((stop - start) / step) | ||
for _ in range(repeats): | ||
ind = random.randint(0, numints) | ||
val = start + step * ind | ||
if isinstance(val, float): | ||
val = floor_step_size(val, str(step)) | ||
|
||
setattr(bi, "raw", val) | ||
assert 0 <= device.shift_voltage <= 4997.04375 | ||
|
||
|
||
######################################### | ||
@pytest.mark.iio_hardware(hardware, True) | ||
def test_cn0540_readonly(iio_uri): | ||
device = cn0540(uri=iio_uri) | ||
attr = [device.input_voltage, device.sensor_voltage] | ||
for _ in attr: | ||
assert type(_) != None |