Skip to content
Snippets Groups Projects
Commit 983bcdfa authored by Gabriel Fedel's avatar Gabriel Fedel :speech_balloon:
Browse files

tests: Update to use new limit sizes on waveforms

parent fde81fae
No related branches found
No related tags found
1 merge request!21Update tests
...@@ -8,12 +8,17 @@ import numpy as np ...@@ -8,12 +8,17 @@ import numpy as np
MAXINTERVAL = 65 #ms MAXINTERVAL = 65 #ms
def get_max_acq(prefix, prefixdig, dec_fac): def get_max_acq(prefix, prefixdig, dec_fac, down_or_int="Dwn0"):
fsamp = caget_assert(prefix + ":FreqSampling") fsamp = caget_assert(prefix + ":FreqSampling")
neariqn = caget_assert(prefixdig + ":IQSmpNearIQ-N-RB") neariqn = caget_assert(prefixdig + ":IQSmpNearIQ-N-RB")
faclimit = 1/(fsamp*1000)*neariqn faclimit = 1/(fsamp*1000)*neariqn
return int(MAXINTERVAL/(faclimit*dec_fac)) nelm = caget_assert(prefixdig + (":%s-Cmp0.NELM") % (down_or_int))
# the limit is the maximum number of elements on waveform
if nelm < int(MAXINTERVAL/(faclimit*dec_fac)):
return nelm
else:
return int(MAXINTERVAL/(faclimit*dec_fac))
def get_max_dec(prefix, prefixdig, smnm): def get_max_dec(prefix, prefixdig, smnm):
fsamp = caget_assert(prefix + ":FreqSampling") fsamp = caget_assert(prefix + ":FreqSampling")
......
...@@ -20,7 +20,7 @@ class TestInternalChannels: ...@@ -20,7 +20,7 @@ class TestInternalChannels:
if ch != "ILCtrl": if ch != "ILCtrl":
assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1) assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1)
# number of samples # number of samples
smnm = randint(1, get_max_acq(prefix, prefixdig, 1)) smnm = randint(1, get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch)))
caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm) caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm)
sleep(0.1) sleep(0.1)
smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch)) smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch))
...@@ -41,11 +41,11 @@ class TestInternalChannels: ...@@ -41,11 +41,11 @@ class TestInternalChannels:
# check limit for number of samples # check limit for number of samples
if ch != "ILCtrl": if ch != "ILCtrl":
assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1) assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1)
smnm = randint(get_max_acq(prefix, prefixdig, 1), 10*get_max_acq(prefix, prefixdig, 1)) smnm = randint(get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch)), 10*get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch)))
caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm) caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm)
sleep(0.1) sleep(0.1)
smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch)) smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch))
assert smnm_rbv <= get_max_acq(prefix, prefixdig, 1) assert smnm_rbv <= get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch))
#ILCtrl doesn't have decimation #ILCtrl doesn't have decimation
if ch != "ILCtrl": if ch != "ILCtrl":
...@@ -65,7 +65,7 @@ class TestInternalChannels: ...@@ -65,7 +65,7 @@ class TestInternalChannels:
caput_assert(prefixdig + (":IntCh%sDecF" % ch), 1) caput_assert(prefixdig + (":IntCh%sDecF" % ch), 1)
sleep(0.1) sleep(0.1)
caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), get_max_acq(prefix, prefixdig, 1)) caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch)))
sleep(0.1) sleep(0.1)
...@@ -117,7 +117,7 @@ class TestInternalChannels: ...@@ -117,7 +117,7 @@ class TestInternalChannels:
assert change_state(prefixdig, state) assert change_state(prefixdig, state)
if ch != "ILCtrl": if ch != "ILCtrl":
assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1) assert check_readback(prefixdig + (":IntCh%sDecF" % ch), 1)
smnm = randint(1, get_max_acq(prefix, prefixdig, 1)) smnm = randint(1, get_max_acq(prefix, prefixdig, 1, ("IntCh%s" % ch)))
caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm) caput_assert(prefixdig + (":IntCh%sSmpNm" % ch), smnm)
sleep(0.1) sleep(0.1)
smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch)) smnm_rbv = caget_assert(prefixdig + (":IntCh%sSmpNm-RB" % ch))
......
...@@ -8,7 +8,8 @@ from helper import check_readback, change_state, sim_bp_trig, caget_assert, \ ...@@ -8,7 +8,8 @@ from helper import check_readback, change_state, sim_bp_trig, caget_assert, \
caput_assert,fixed_to_float, float_to_fixed caput_assert,fixed_to_float, float_to_fixed
import numpy as np import numpy as np
MAXELEM = 677721 # 1 order less than the maximum size MAXELEM = 50000
MAXCALELEM = 5000
IQLIMITS = [-1, 0.999969] # for SP and FF IQLIMITS = [-1, 0.999969] # for SP and FF
QMNIQ = (1, 15, 1) QMNIQ = (1, 15, 1)
...@@ -297,7 +298,7 @@ class TestPICalibTables: ...@@ -297,7 +298,7 @@ class TestPICalibTables:
caput_assert(prefixdig+":RFCtrl" + pitype + "CalEn", 0) caput_assert(prefixdig+":RFCtrl" + pitype + "CalEn", 0)
# generate RAW and EGU arrays # generate RAW and EGU arrays
nelem = randint(20,MAXELEM) nelem = randint(20,MAXCALELEM)
slope = uniform(2, 100) slope = uniform(2, 100)
offset = uniform(2, 100) offset = uniform(2, 100)
...@@ -310,6 +311,7 @@ class TestPICalibTables: ...@@ -310,6 +311,7 @@ class TestPICalibTables:
egu = [] egu = []
for i in range(nelem): for i in range(nelem):
egu.append(raw[i]*slope + offset) egu.append(raw[i]*slope + offset)
egu = sorted(egu)
caput_assert(prefixdig+":RFCtrl" + pitype + "CalEGU", egu) caput_assert(prefixdig+":RFCtrl" + pitype + "CalEGU", egu)
caput_assert(prefixdig+":RFCtrl" + pitype + "CalRaw", raw) caput_assert(prefixdig+":RFCtrl" + pitype + "CalRaw", raw)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment