~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to tests/vmtests/test_mdadm_bcache.py

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from . import VMBaseClass
2
 
from .releases import base_vm_classes as relbase
3
 
 
4
 
import textwrap
5
 
 
6
 
 
7
 
class TestMdadmAbs(VMBaseClass):
8
 
    interactive = False
9
 
    extra_disks = []
10
 
    active_mdadm = "1"
11
 
    collect_scripts = [textwrap.dedent("""
12
 
        cd OUTPUT_COLLECT_D
13
 
        cat /etc/fstab > fstab
14
 
        mdadm --detail --scan > mdadm_status
15
 
        mdadm --detail --scan | grep -c ubuntu > mdadm_active1
16
 
        grep -c active /proc/mdstat > mdadm_active2
17
 
        ls /dev/disk/by-dname > ls_dname
18
 
        find /etc/network/interfaces.d > find_interfacesd
19
 
        cat /proc/mdstat | tee mdstat
20
 
        cat /proc/partitions | tee procpartitions
21
 
        ls -1 /sys/class/block | tee sys_class_block
22
 
        ls -1 /dev/md* | tee dev_md
23
 
        """)]
24
 
 
25
 
    def test_mdadm_output_files_exist(self):
26
 
        self.output_files_exist(
27
 
            ["fstab", "mdadm_status", "mdadm_active1", "mdadm_active2",
28
 
             "ls_dname"])
29
 
 
30
 
    def test_mdadm_status(self):
31
 
        # ubuntu:<ID> is the name assigned to the md array
32
 
        self.check_file_regex("mdadm_status", r"ubuntu:[0-9]*")
33
 
        self.check_file_strippedline("mdadm_active1", self.active_mdadm)
34
 
        self.check_file_strippedline("mdadm_active2", self.active_mdadm)
35
 
 
36
 
 
37
 
class TestMdadmBcacheAbs(TestMdadmAbs):
38
 
    arch_skip = [
39
 
        "s390x",  # lp:1565029
40
 
        ]
41
 
    conf_file = "examples/tests/mdadm_bcache.yaml"
42
 
    disk_to_check = [('main_disk', 1),
43
 
                     ('main_disk', 2),
44
 
                     ('main_disk', 3),
45
 
                     ('main_disk', 4),
46
 
                     ('main_disk', 5),
47
 
                     ('main_disk', 6),
48
 
                     ('md0', 0),
49
 
                     ('cached_array', 0),
50
 
                     ('cached_array_2', 0)]
51
 
    extra_disks = ['4G', '4G']
52
 
    collect_scripts = TestMdadmAbs.collect_scripts + [textwrap.dedent("""
53
 
        cd OUTPUT_COLLECT_D
54
 
        bcache-super-show /dev/vda6 > bcache_super_vda6
55
 
        bcache-super-show /dev/vda7 > bcache_super_vda7
56
 
        bcache-super-show /dev/md0 > bcache_super_md0
57
 
        ls /sys/fs/bcache > bcache_ls
58
 
        cat /sys/block/bcache0/bcache/cache_mode > bcache_cache_mode
59
 
        cat /sys/block/bcache1/bcache/cache_mode >> bcache_cache_mode
60
 
        cat /sys/block/bcache2/bcache/cache_mode >> bcache_cache_mode
61
 
        cat /proc/mounts > proc_mounts
62
 
        find /etc/network/interfaces.d > find_interfacesd
63
 
        """)]
64
 
    fstab_expected = {
65
 
        '/dev/vda1': '/media/sda1',
66
 
        '/dev/vda7': '/boot',
67
 
        '/dev/bcache1': '/media/data',
68
 
        '/dev/bcache0': '/media/bcache_normal',
69
 
        '/dev/bcache2': '/media/bcachefoo_fulldiskascache_storage'
70
 
    }
71
 
 
72
 
    def test_bcache_output_files_exist(self):
73
 
        self.output_files_exist(["bcache_super_vda6",
74
 
                                 "bcache_super_vda7",
75
 
                                 "bcache_super_md0",
76
 
                                 "bcache_ls",
77
 
                                 "bcache_cache_mode"])
78
 
 
79
 
    def test_bcache_status(self):
80
 
        bcache_supers = [
81
 
            "bcache_super_vda6",
82
 
            "bcache_super_vda7",
83
 
            "bcache_super_md0",
84
 
        ]
85
 
        bcache_cset_uuid = None
86
 
        found = {}
87
 
        for bcache_super in bcache_supers:
88
 
            for line in self.load_collect_file(bcache_super).splitlines():
89
 
                if line != "" and line.split()[0] == "cset.uuid":
90
 
                    bcache_cset_uuid = line.split()[-1].rstrip()
91
 
                    if bcache_cset_uuid in found:
92
 
                        found[bcache_cset_uuid].append(bcache_super)
93
 
                    else:
94
 
                        found[bcache_cset_uuid] = [bcache_super]
95
 
            self.assertIsNotNone(bcache_cset_uuid)
96
 
            self.assertTrue(bcache_cset_uuid in
97
 
                            self.load_collect_file("bcache_ls").splitlines())
98
 
 
99
 
        # one cset.uuid for all devices
100
 
        self.assertEqual(len(found), 1)
101
 
 
102
 
        # three devices with same cset.uuid
103
 
        self.assertEqual(len(found[bcache_cset_uuid]), 3)
104
 
 
105
 
        # check the cset.uuid in the dict
106
 
        self.assertEqual(list(found.keys()).pop(),
107
 
                         bcache_cset_uuid)
108
 
 
109
 
    def test_bcache_cachemode(self):
110
 
        # definition is on order 0->back,1->through,2->around
111
 
        # but after reboot it can be anything since order is not guaranteed
112
 
        # until we find a way to redetect the order we just check that all
113
 
        # three are there
114
 
        self.check_file_regex("bcache_cache_mode", r"\[writeback\]")
115
 
        self.check_file_regex("bcache_cache_mode", r"\[writethrough\]")
116
 
        self.check_file_regex("bcache_cache_mode", r"\[writearound\]")
117
 
 
118
 
 
119
 
class TrustyTestMdadmBcache(relbase.trusty, TestMdadmBcacheAbs):
120
 
    __test__ = True
121
 
 
122
 
    # FIXME(LP: #1523037): dname does not work on trusty
123
 
    # when dname works on trusty, then we need to re-enable by removing line.
124
 
    def test_dname(self):
125
 
        print("test_dname does not work for Trusty")
126
 
 
127
 
    def test_ptable(self):
128
 
        print("test_ptable does not work for Trusty")
129
 
 
130
 
 
131
 
class TrustyHWEXTestMdadmBcache(relbase.trusty_hwe_x, TrustyTestMdadmBcache):
132
 
    __test__ = True
133
 
 
134
 
 
135
 
class XenialTestMdadmBcache(relbase.xenial, TestMdadmBcacheAbs):
136
 
    __test__ = True
137
 
 
138
 
 
139
 
class ZestyTestMdadmBcache(relbase.zesty, TestMdadmBcacheAbs):
140
 
    __test__ = True
141
 
 
142
 
 
143
 
class ArtfulTestMdadmBcache(relbase.artful, TestMdadmBcacheAbs):
144
 
    __test__ = True
145
 
 
146
 
 
147
 
class BionicTestMdadmBcache(relbase.bionic, TestMdadmBcacheAbs):
148
 
    __test__ = True
149
 
 
150
 
 
151
 
class TestMirrorbootAbs(TestMdadmAbs):
152
 
    # alternative config for more complex setup
153
 
    conf_file = "examples/tests/mirrorboot.yaml"
154
 
    # initialize secondary disk
155
 
    extra_disks = ['4G']
156
 
    disk_to_check = [('main_disk', 1),
157
 
                     ('main_disk', 2),
158
 
                     ('second_disk', 1),
159
 
                     ('md0', 0)]
160
 
 
161
 
 
162
 
class TrustyTestMirrorboot(relbase.trusty, TestMirrorbootAbs):
163
 
    __test__ = True
164
 
 
165
 
    # FIXME(LP: #1523037): dname does not work on trusty
166
 
    # when dname works on trusty, then we need to re-enable by removing line.
167
 
    def test_dname(self):
168
 
        print("test_dname does not work for Trusty")
169
 
 
170
 
    def test_ptable(self):
171
 
        print("test_ptable does not work for Trusty")
172
 
 
173
 
 
174
 
class TrustyHWEXTestMirrorboot(relbase.trusty_hwe_x, TrustyTestMirrorboot):
175
 
    # This tests kernel upgrade in target
176
 
    __test__ = True
177
 
 
178
 
 
179
 
class XenialTestMirrorboot(relbase.xenial, TestMirrorbootAbs):
180
 
    __test__ = True
181
 
 
182
 
 
183
 
class ZestyTestMirrorboot(relbase.zesty, TestMirrorbootAbs):
184
 
    __test__ = True
185
 
 
186
 
 
187
 
class ArtfulTestMirrorboot(relbase.artful, TestMirrorbootAbs):
188
 
    __test__ = True
189
 
 
190
 
 
191
 
class BionicTestMirrorboot(relbase.bionic, TestMirrorbootAbs):
192
 
    __test__ = True
193
 
 
194
 
 
195
 
class TestMirrorbootPartitionsAbs(TestMdadmAbs):
196
 
    # alternative config for more complex setup
197
 
    conf_file = "examples/tests/mirrorboot-msdos-partition.yaml"
198
 
    # initialize secondary disk
199
 
    extra_disks = ['10G']
200
 
    disk_to_check = [('main_disk', 1),
201
 
                     ('second_disk', 1),
202
 
                     ('md0', 2)]
203
 
 
204
 
 
205
 
class TrustyTestMirrorbootPartitions(relbase.trusty,
206
 
                                     TestMirrorbootPartitionsAbs):
207
 
    __test__ = True
208
 
 
209
 
    # FIXME(LP: #1523037): dname does not work on trusty
210
 
    # when dname works on trusty, then we need to re-enable by removing line.
211
 
    def test_dname(self):
212
 
        print("test_dname does not work for Trusty")
213
 
 
214
 
    def test_ptable(self):
215
 
        print("test_ptable does not work for Trusty")
216
 
 
217
 
 
218
 
class TrustyHWEXTestMirrorbootPartitions(relbase.trusty_hwe_x,
219
 
                                         TrustyTestMirrorbootPartitions):
220
 
    # This tests kernel upgrade in target
221
 
    __test__ = True
222
 
 
223
 
 
224
 
class XenialTestMirrorbootPartitions(relbase.xenial,
225
 
                                     TestMirrorbootPartitionsAbs):
226
 
    __test__ = True
227
 
 
228
 
 
229
 
class ZestyTestMirrorbootPartitions(relbase.zesty,
230
 
                                    TestMirrorbootPartitionsAbs):
231
 
    __test__ = True
232
 
 
233
 
 
234
 
class ArtfulTestMirrorbootPartitions(relbase.artful,
235
 
                                     TestMirrorbootPartitionsAbs):
236
 
    __test__ = True
237
 
 
238
 
 
239
 
class BionicTestMirrorbootPartitions(relbase.bionic,
240
 
                                     TestMirrorbootPartitionsAbs):
241
 
    __test__ = True
242
 
 
243
 
 
244
 
class TestMirrorbootPartitionsUEFIAbs(TestMdadmAbs):
245
 
    # alternative config for more complex setup
246
 
    conf_file = "examples/tests/mirrorboot-uefi.yaml"
247
 
    # initialize secondary disk
248
 
    extra_disks = ['10G']
249
 
    disk_to_check = [('main_disk', 2),
250
 
                     ('second_disk', 3),
251
 
                     ('md0', 0),
252
 
                     ('md1', 0)]
253
 
    active_mdadm = "2"
254
 
    uefi = True
255
 
    nr_cpus = 2
256
 
    dirty_disks = True
257
 
 
258
 
 
259
 
class TrustyTestMirrorbootPartitionsUEFI(relbase.trusty,
260
 
                                         TestMirrorbootPartitionsUEFIAbs):
261
 
    __test__ = True
262
 
 
263
 
    # FIXME(LP: #1523037): dname does not work on trusty
264
 
    # when dname works on trusty, then we need to re-enable by removing line.
265
 
    def test_dname(self):
266
 
        print("test_dname does not work for Trusty")
267
 
 
268
 
    def test_ptable(self):
269
 
        print("test_ptable does not work for Trusty")
270
 
 
271
 
 
272
 
class XenialTestMirrorbootPartitionsUEFI(relbase.xenial,
273
 
                                         TestMirrorbootPartitionsUEFIAbs):
274
 
    __test__ = True
275
 
 
276
 
 
277
 
class ZestyTestMirrorbootPartitionsUEFI(relbase.zesty,
278
 
                                        TestMirrorbootPartitionsUEFIAbs):
279
 
    __test__ = True
280
 
 
281
 
 
282
 
class ArtfulTestMirrorbootPartitionsUEFI(relbase.artful,
283
 
                                         TestMirrorbootPartitionsUEFIAbs):
284
 
    __test__ = True
285
 
 
286
 
 
287
 
class BionicTestMirrorbootPartitionsUEFI(relbase.bionic,
288
 
                                         TestMirrorbootPartitionsUEFIAbs):
289
 
    __test__ = True
290
 
 
291
 
 
292
 
class TestRaid5bootAbs(TestMdadmAbs):
293
 
    # alternative config for more complex setup
294
 
    conf_file = "examples/tests/raid5boot.yaml"
295
 
    # initialize secondary disk
296
 
    extra_disks = ['4G', '4G']
297
 
    disk_to_check = [('main_disk', 1),
298
 
                     ('main_disk', 2),
299
 
                     ('second_disk', 1),
300
 
                     ('third_disk', 1),
301
 
                     ('md0', 0)]
302
 
 
303
 
 
304
 
class TrustyTestRaid5Boot(relbase.trusty, TestRaid5bootAbs):
305
 
    __test__ = True
306
 
 
307
 
    # FIXME(LP: #1523037): dname does not work on trusty
308
 
    # when dname works on trusty, then we need to re-enable by removing line.
309
 
    def test_dname(self):
310
 
        print("test_dname does not work for Trusty")
311
 
 
312
 
    def test_ptable(self):
313
 
        print("test_ptable does not work for Trusty")
314
 
 
315
 
 
316
 
class TrustyHWEXTestRaid5Boot(relbase.trusty_hwe_x, TrustyTestRaid5Boot):
317
 
    # This tests kernel upgrade in target
318
 
    __test__ = True
319
 
 
320
 
 
321
 
class XenialTestRaid5boot(relbase.xenial, TestRaid5bootAbs):
322
 
    __test__ = True
323
 
 
324
 
 
325
 
class ZestyTestRaid5boot(relbase.zesty, TestRaid5bootAbs):
326
 
    __test__ = True
327
 
 
328
 
 
329
 
class ArtfulTestRaid5boot(relbase.artful, TestRaid5bootAbs):
330
 
    __test__ = True
331
 
 
332
 
 
333
 
class BionicTestRaid5boot(relbase.bionic, TestRaid5bootAbs):
334
 
    __test__ = True
335
 
 
336
 
 
337
 
class TestRaid6bootAbs(TestMdadmAbs):
338
 
    # alternative config for more complex setup
339
 
    conf_file = "examples/tests/raid6boot.yaml"
340
 
    # initialize secondary disk
341
 
    extra_disks = ['4G', '4G', '4G']
342
 
    disk_to_check = [('main_disk', 1),
343
 
                     ('main_disk', 2),
344
 
                     ('second_disk', 1),
345
 
                     ('third_disk', 1),
346
 
                     ('fourth_disk', 1),
347
 
                     ('md0', 0)]
348
 
    collect_scripts = TestMdadmAbs.collect_scripts + [textwrap.dedent("""
349
 
        cd OUTPUT_COLLECT_D
350
 
        mdadm --detail --scan > mdadm_detail
351
 
        """)]
352
 
 
353
 
    def test_raid6_output_files_exist(self):
354
 
        self.output_files_exist(
355
 
            ["mdadm_detail"])
356
 
 
357
 
    def test_mdadm_custom_name(self):
358
 
        # the raid6boot.yaml sets this name, check if it was set
359
 
        self.check_file_regex("mdadm_detail", r"ubuntu:foobar")
360
 
 
361
 
 
362
 
class TrustyTestRaid6boot(relbase.trusty, TestRaid6bootAbs):
363
 
    __test__ = True
364
 
 
365
 
    # FIXME(LP: #1523037): dname does not work on trusty
366
 
    # when dname works on trusty, then we need to re-enable by removing line.
367
 
    def test_dname(self):
368
 
        print("test_dname does not work for Trusty")
369
 
 
370
 
    def test_ptable(self):
371
 
        print("test_ptable does not work for Trusty")
372
 
 
373
 
 
374
 
class TrustyHWEXTestRaid6boot(relbase.trusty_hwe_x, TrustyTestRaid6boot):
375
 
    __test__ = True
376
 
 
377
 
 
378
 
class XenialTestRaid6boot(relbase.xenial, TestRaid6bootAbs):
379
 
    __test__ = True
380
 
 
381
 
 
382
 
class ZestyTestRaid6boot(relbase.zesty, TestRaid6bootAbs):
383
 
    __test__ = True
384
 
 
385
 
 
386
 
class ArtfulTestRaid6boot(relbase.artful, TestRaid6bootAbs):
387
 
    __test__ = True
388
 
 
389
 
 
390
 
class BionicTestRaid6boot(relbase.bionic, TestRaid6bootAbs):
391
 
    __test__ = True
392
 
 
393
 
 
394
 
class TestRaid10bootAbs(TestMdadmAbs):
395
 
    # alternative config for more complex setup
396
 
    conf_file = "examples/tests/raid10boot.yaml"
397
 
    # initialize secondary disk
398
 
    extra_disks = ['4G', '4G', '4G']
399
 
    disk_to_check = [('main_disk', 1),
400
 
                     ('main_disk', 2),
401
 
                     ('second_disk', 1),
402
 
                     ('third_disk', 1),
403
 
                     ('fourth_disk', 1),
404
 
                     ('md0', 0)]
405
 
 
406
 
 
407
 
class TrustyTestRaid10boot(relbase.trusty, TestRaid10bootAbs):
408
 
    __test__ = True
409
 
 
410
 
    # FIXME(LP: #1523037): dname does not work on trusty
411
 
    # when dname works on trusty, then we need to re-enable by removing line.
412
 
    def test_dname(self):
413
 
        print("test_dname does not work for Trusty")
414
 
 
415
 
    def test_ptable(self):
416
 
        print("test_ptable does not work for Trusty")
417
 
 
418
 
 
419
 
class TrustyHWEXTestRaid10boot(relbase.trusty_hwe_x, TrustyTestRaid10boot):
420
 
    __test__ = True
421
 
 
422
 
 
423
 
class XenialTestRaid10boot(relbase.xenial, TestRaid10bootAbs):
424
 
    __test__ = True
425
 
 
426
 
 
427
 
class ZestyTestRaid10boot(relbase.zesty, TestRaid10bootAbs):
428
 
    __test__ = True
429
 
 
430
 
 
431
 
class ArtfulTestRaid10boot(relbase.artful, TestRaid10bootAbs):
432
 
    __test__ = True
433
 
 
434
 
 
435
 
class BionicTestRaid10boot(relbase.bionic, TestRaid10bootAbs):
436
 
    __test__ = True
437
 
 
438
 
 
439
 
class TestAllindataAbs(TestMdadmAbs):
440
 
    # more complex, needs more time
441
 
    # alternative config for more complex setup
442
 
    conf_file = "examples/tests/allindata.yaml"
443
 
    # we have to avoid a systemd hang due to the way it handles dmcrypt
444
 
    extra_kern_args = "--- luks=no"
445
 
    active_mdadm = "4"
446
 
    # running in dirty mode catches some race/errors with mdadm_stop
447
 
    nr_cpus = 2
448
 
    dirty_disks = True
449
 
    # initialize secondary disk
450
 
    extra_disks = ['5G', '5G', '5G']
451
 
    disk_to_check = [('main_disk', 1),
452
 
                     ('main_disk', 2),
453
 
                     ('main_disk', 3),
454
 
                     ('main_disk', 4),
455
 
                     ('main_disk', 5),
456
 
                     ('second_disk', 1),
457
 
                     ('second_disk', 2),
458
 
                     ('second_disk', 3),
459
 
                     ('second_disk', 4),
460
 
                     ('third_disk', 1),
461
 
                     ('third_disk', 2),
462
 
                     ('third_disk', 3),
463
 
                     ('third_disk', 4),
464
 
                     ('fourth_disk', 1),
465
 
                     ('fourth_disk', 2),
466
 
                     ('fourth_disk', 3),
467
 
                     ('fourth_disk', 4),
468
 
                     ('md0', 0),
469
 
                     ('md1', 0),
470
 
                     ('md2', 0),
471
 
                     ('md3', 0),
472
 
                     ('vg1-lv1', 0),
473
 
                     ('vg1-lv2', 0)]
474
 
 
475
 
    collect_scripts = TestMdadmAbs.collect_scripts + [textwrap.dedent("""
476
 
        cd OUTPUT_COLLECT_D
477
 
        pvdisplay -C --separator = -o vg_name,pv_name --noheadings > pvs
478
 
        lvdisplay -C --separator = -o lv_name,vg_name --noheadings > lvs
479
 
        cat /etc/crypttab > crypttab
480
 
        yes "testkey" | cryptsetup open /dev/vg1/lv3 dmcrypt0 --type luks
481
 
        ls -laF /dev/mapper/dmcrypt0 > mapper
482
 
        mkdir -p /tmp/xfstest
483
 
        mount /dev/mapper/dmcrypt0 /tmp/xfstest
484
 
        xfs_info /tmp/xfstest/ > xfs_info
485
 
        """)]
486
 
    fstab_expected = {
487
 
        '/dev/vg1/lv1': '/srv/data',
488
 
        '/dev/vg1/lv2': '/srv/backup',
489
 
    }
490
 
 
491
 
    def test_output_files_exist(self):
492
 
        self.output_files_exist(["pvs", "lvs", "crypttab", "mapper",
493
 
                                 "xfs_info"])
494
 
 
495
 
    def test_lvs(self):
496
 
        self.check_file_strippedline("lvs", "lv1=vg1")
497
 
        self.check_file_strippedline("lvs", "lv2=vg1")
498
 
        self.check_file_strippedline("lvs", "lv3=vg1")
499
 
 
500
 
    def test_pvs(self):
501
 
        self.check_file_strippedline("pvs", "vg1=/dev/md0")
502
 
        self.check_file_strippedline("pvs", "vg1=/dev/md1")
503
 
        self.check_file_strippedline("pvs", "vg1=/dev/md2")
504
 
        self.check_file_strippedline("pvs", "vg1=/dev/md3")
505
 
 
506
 
    def test_dmcrypt(self):
507
 
        self.check_file_regex("crypttab", r"dmcrypt0.*luks")
508
 
        self.check_file_regex("mapper", r"^lrwxrwxrwx.*/dev/mapper/dmcrypt0")
509
 
        self.check_file_regex("xfs_info", r"^meta-data=/dev/mapper/dmcrypt0")
510
 
 
511
 
 
512
 
class TrustyTestAllindata(relbase.trusty, TestAllindataAbs):
513
 
    __test__ = False  # luks=no does not disable mounting of device
514
 
 
515
 
    # FIXME(LP: #1523037): dname does not work on trusty
516
 
    # when dname works on trusty, then we need to re-enable by removing line.
517
 
    def test_dname(self):
518
 
        print("test_dname does not work for Trusty")
519
 
 
520
 
    def test_ptable(self):
521
 
        print("test_ptable does not work for Trusty")
522
 
 
523
 
 
524
 
class TrustyHWEXTestAllindata(relbase.trusty_hwe_x, TrustyTestAllindata):
525
 
    __test__ = False  # lukes=no does not disable mounting of device
526
 
 
527
 
 
528
 
class XenialTestAllindata(relbase.xenial, TestAllindataAbs):
529
 
    __test__ = True
530
 
 
531
 
 
532
 
class ZestyTestAllindata(relbase.zesty, TestAllindataAbs):
533
 
    __test__ = True
534
 
 
535
 
 
536
 
class ArtfulTestAllindata(relbase.artful, TestAllindataAbs):
537
 
    __test__ = True
538
 
 
539
 
 
540
 
class BionicTestAllindata(relbase.bionic, TestAllindataAbs):
541
 
    __test__ = True