File: conftest.py

package info (click to toggle)
extra-data 1.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 968 kB
  • sloc: python: 10,423; makefile: 4
file content (240 lines) | stat: -rw-r--r-- 7,414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import os
import os.path as osp

import h5py
import numpy as np
import pytest
from tempfile import TemporaryDirectory

from . import make_examples


@pytest.fixture(scope='session', params=['0.5', '1.0', '1.2'])
def format_version(request):
    return request.param


@pytest.fixture(scope='module')
def mock_agipd_data(format_version):
    # This one uses the older index format
    # (first/last/status instead of first/count)
    with TemporaryDirectory() as td:
        path = osp.join(td, 'CORR-R9999-AGIPD07-S00000.h5')
        make_examples.make_agipd_example_file(path, format_version=format_version)
        yield path


@pytest.fixture(scope='module')
def mock_lpd_data(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R9999-LPD00-S00000.h5')
        make_examples.make_lpd_file(path, format_version=format_version)
        yield path


@pytest.fixture(scope='module')
def mock_fxe_control_data(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0450-DA01-S00001.h5')
        make_examples.make_fxe_da_file(path, format_version=format_version)
        yield path


@pytest.fixture(scope='module')
def mock_fxe_control_data1(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0451-DA01-S00001.h5')
        make_examples.make_fxe_da_file(path, firsttrain=20000, format_version=format_version)
        yield path


@pytest.fixture(scope='module')
def mock_sa3_control_data(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0450-DA01-S00001.h5')
        make_examples.make_sa3_da_file(path, format_version=format_version)
        yield path


@pytest.fixture
def mock_sa3_control_aliases():
    return {
        'sa3-xgm': 'SA3_XTD10_XGM/XGM/DOOCS',
        'hv': ('SA3_XTD10_XGM/XGM/DOOCS', 'pulseEnergy.wavelengthUsed'),
        'beam-x': ('SA3_XTD10_XGM/XGM/DOOCS', 'beamPosition.ixPos'),
        'beam-y': ('SA3_XTD10_XGM/XGM/DOOCS', 'beamPosition.iyPos'),

        'imgfel-frames': ('SA3_XTD10_IMGFEL/CAM/BEAMVIEW:daqOutput', 'data.image.pixels'),
        'imgfel-frames2': ('SA3_XTD10_IMGFEL/CAM/BEAMVIEW2:daqOutput', 'data.image.pixels'),
        'imgfel-screen-pos': ('SA3_XTD10_IMGFEL/MOTOR/SCREEN', 'actualPosition'),
        'imgfel-filter-pos': ('SA3_XTD10_IMGFEL/MOTOR/FILTER', 'actualPosition'),

        'mcp-adc': 'SA3_XTD10_MCP/ADC/1',
        'mcp-mpod': 'SA3_XTD10_MCP/MCPS/MPOD',
        'mcp-voltage': ('SA3_XTD10_MCP/MCPS/MPOD', 'channels.U3.voltage'),
        'mcp-trace': ('SA3_XTD10_MCP/ADC/1:channel_5.output', 'data.rawData'),

        'bogus-source': 'SA4_XTD20_XGM/XGM/DOOCS',
        'bogus-key': ('SA3_XTD10_XGM/XGM/DOOCS', 'foo')
    }


@pytest.fixture(scope='module')
def mock_control_data_with_empty_source(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0451-DA01-S00001.h5')
        make_examples.make_da_file_with_empty_source(path, format_version=format_version)
        yield path


@pytest.fixture(scope='module')
def mock_spb_control_data_badname(format_version):
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0309-DA01-S00000.h5')
        make_examples.make_data_file_bad_device_name(path, format_version=format_version)
        yield path


@pytest.fixture(scope='session')
def mock_fxe_raw_run(format_version):
    with TemporaryDirectory() as td:
        make_examples.make_fxe_run(td, format_version=format_version)
        yield td


@pytest.fixture(scope='session')
def mock_lpd_parallelgain_run():
    with TemporaryDirectory() as td:
        make_examples.make_lpd_parallelgain_run(td, format_version='1.0')
        yield td


@pytest.fixture(scope='session')
def mock_lpd_mini_gap_run():
    with TemporaryDirectory() as td:
        make_examples.make_lpd_run_mini_missed_train(td)
        yield td


@pytest.fixture(scope='session')
def mock_spb_proc_run(format_version):
    with TemporaryDirectory() as td:
        make_examples.make_spb_run(td, raw=False, format_version=format_version)
        yield td


@pytest.fixture(scope='session')
def mock_reduced_spb_proc_run(format_version):
    """Varying number of frames stored from AGIPD"""
    rng = np.random.RandomState(123)  # Fix seed
    with TemporaryDirectory() as td:
        make_examples.make_reduced_spb_run(td, raw=False, rng=rng,
                                           format_version=format_version)
        yield td


@pytest.fixture(scope='session')
def mock_spb_raw_run(format_version):
    with TemporaryDirectory() as td:
        make_examples.make_spb_run(td, format_version=format_version)
        yield td


@pytest.fixture()
def mock_spb_raw_and_proc_run():
    with TemporaryDirectory() as td:
        prop_dir = osp.join(str(td), 'SPB', '201830', 'p002012')

        # Set up raw
        raw_run_dir = osp.join(prop_dir, 'raw', 'r0238')
        os.makedirs(raw_run_dir)
        make_examples.make_spb_run(raw_run_dir)

        # Set up proc
        proc_run_dir = osp.join(prop_dir, 'proc', 'r0238')
        os.makedirs(proc_run_dir)
        make_examples.make_spb_run(proc_run_dir, raw=False)

        yield td, raw_run_dir, proc_run_dir

@pytest.fixture(scope='session')
def mock_spb_raw_run_fmt1():
    with TemporaryDirectory() as td:
        make_examples.make_spb_run(td, format_version="1.2")
        yield td

@pytest.fixture(scope='session')
def mock_modern_spb_proc_run():
    with TemporaryDirectory() as td:
        make_examples.make_modern_spb_proc_run(td)
        yield td

@pytest.fixture()
def mock_spb_raw_and_modern_proc_run():
    with TemporaryDirectory() as td:
        prop_dir = osp.join(str(td), 'SPB', '201830', 'p002012')

        # Set up raw
        raw_run_dir = osp.join(prop_dir, 'raw', 'r0238')
        os.makedirs(raw_run_dir)
        make_examples.make_spb_run(raw_run_dir)

        # Set up proc
        proc_run_dir = osp.join(prop_dir, 'proc', 'r0238')
        os.makedirs(proc_run_dir)
        make_examples.make_modern_spb_proc_run(proc_run_dir)

        yield td, raw_run_dir, proc_run_dir

@pytest.fixture(scope='session')
def mock_jungfrau_run():
    with TemporaryDirectory() as td:
        make_examples.make_jungfrau_run(td)
        yield td

@pytest.fixture(scope='session')
def mock_fxe_jungfrau_run():
    with TemporaryDirectory() as td:
        make_examples.make_fxe_jungfrau_run(td)
        yield td

@pytest.fixture(scope='session')
def mock_scs_run():
    with TemporaryDirectory() as td:
        make_examples.make_scs_run(td)
        yield td


@pytest.fixture(scope='session')
def mock_remi_run():
    with TemporaryDirectory() as td:
        make_examples.make_remi_run(td)
        yield td


@pytest.fixture(scope='session')
def empty_h5_file():
    with TemporaryDirectory() as td:
        path = osp.join(td, 'empty.h5')
        with h5py.File(path, 'w'):
            pass

        yield path


@pytest.fixture(scope='session')
def mock_no_metadata_file():
    with TemporaryDirectory() as td:
        path = osp.join(td, 'no_metadata.h5')
        with h5py.File(path, 'w') as f:
            f.create_dataset('INDEX/trainId', data=[], dtype=np.uint64)

        yield path


@pytest.fixture(scope='session')
def mock_empty_file():
    with TemporaryDirectory() as td:
        path = osp.join(td, 'RAW-R0450-DA01-S00002.h5')
        make_examples.make_sa3_da_file(path, ntrains=0)
        yield path