Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sis8300llrf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
epics-modules
RF
sis8300llrf
Commits
983bcdfa
Commit
983bcdfa
authored
3 years ago
by
Gabriel Fedel
Browse files
Options
Downloads
Patches
Plain Diff
tests: Update to use new limit sizes on waveforms
parent
fde81fae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!21
Update tests
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
test/test_downsampled.py
+7
-2
7 additions, 2 deletions
test/test_downsampled.py
test/test_internal.py
+5
-5
5 additions, 5 deletions
test/test_internal.py
test/test_pi_magang_tables.py
+4
-2
4 additions, 2 deletions
test/test_pi_magang_tables.py
with
16 additions
and
9 deletions
test/test_downsampled.py
+
7
−
2
View file @
983bcdfa
...
@@ -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
"
)
...
...
This diff is collapsed.
Click to expand it.
test/test_internal.py
+
5
−
5
View file @
983bcdfa
...
@@ -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
))
...
...
This diff is collapsed.
Click to expand it.
test/test_pi_magang_tables.py
+
4
−
2
View file @
983bcdfa
...
@@ -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
,
MAX
CAL
ELEM
)
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment