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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
|
import pytest
from pymeasure.test import expected_protocol
from pymeasure.instruments.keithley import KeithleyDMM6500
def test_init():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None)],
):
pass # Verify the expected communication.
def test_aperture_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:APER 0.0015', None)],
) as inst:
inst.aperture = 0.0015
def test_aperture_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:APER?', b'0.0015\n')],
) as inst:
assert inst.aperture == 0.0015
def test_autorange_enabled_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:RANG:AUTO 1', None)],
) as inst:
inst.autorange_enabled = True
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:RANG:AUTO?', b'0\n')],
False),
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:RANG:AUTO?', b'1\n')],
True),
))
def test_autorange_enabled_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.autorange_enabled == value
def test_autozero_enabled_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:AZER 0', None)],
) as inst:
inst.autozero_enabled = False
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:AZER?', b'1\n')],
True),
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:AZER?', b'0\n')],
False),
))
def test_autozero_enabled_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.autozero_enabled == value
def test_command_set_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'*LANG?', b'SCPI\n')],
) as inst:
assert inst.command_set == 'SCPI'
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':READ?', b'-4.999995E-01\n')],
-0.4999995),
([(b'*LANG SCPI', None),
(b':READ?', b'3.414127E-04\n')],
0.0003414127),
))
def test_current_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.current == value
def test_current_ac_bandwidth_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:AC:DET:BAND?', b'30\n')],
) as inst:
assert inst.current_ac_bandwidth == 30.0
def test_current_ac_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:CURR:AC:DIG?', b'6\n')],
) as inst:
assert inst.current_ac_digits == 6
def test_current_ac_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:AC:RANG?', b'0.01\n')],
) as inst:
assert inst.current_ac_range == 0.01
def test_current_ac_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:AC:REL?', b'0\n')],
) as inst:
assert inst.current_ac_relative == 0.0
def test_current_ac_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:AC:REL:STAT?', b'0\n')],
) as inst:
assert inst.current_ac_relative_enabled is False
def test_current_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:CURR:DIG?', b'3\n')],
) as inst:
assert inst.current_digits == 3
def test_current_nplc_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:NPLC?', b'2\n')],
) as inst:
assert inst.current_nplc == 2.0
def test_current_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:RANG?', b'0.01\n')],
) as inst:
assert inst.current_range == 0.01
def test_current_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:REL?', b'0.5\n')],
) as inst:
assert inst.current_relative == 0.5
def test_current_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:CURR:REL:STAT?', b'1\n')],
) as inst:
assert inst.current_relative_enabled is True
def test_detector_bandwidth_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:AC\n'),
(b'CURR:AC:DET:BAND 30', None)],
) as inst:
inst.detector_bandwidth = 30
def test_detector_bandwidth_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:AC\n'),
(b'CURR:AC:DET:BAND?', b'30\n')],
) as inst:
assert inst.detector_bandwidth == 30.0
def test_digits_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b':DISP:CURR:DC:DIG 3', None)],
) as inst:
inst.digits = 3
def test_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b':DISP:CURR:DC:DIG?', b'3\n')],
) as inst:
assert inst.digits == 3
def test_frequency_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':READ?', b'0.000000E+00\n')],
) as inst:
assert inst.frequency == 0.0
def test_frequency_aperature_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FREQ:APER?', b'0.2\n')],
) as inst:
assert inst.frequency_aperature == 0.2
def test_frequency_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:FREQ:DIG?', b'6\n')],
) as inst:
assert inst.frequency_digits == 6
def test_frequency_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FREQ:REL?', b'0\n')],
) as inst:
assert inst.frequency_relative == 0.0
def test_frequency_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FREQ:REL:STAT?', b'0\n')],
) as inst:
assert inst.frequency_relative_enabled is False
def test_frequency_threshold_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FREQ:THR:RANG?', b'10\n')],
) as inst:
assert inst.frequency_threshold == 10.0
def test_frequency_threshold_auto_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FREQ:THR:RANG:AUTO?', b'1\n')],
) as inst:
assert inst.frequency_threshold_auto_enabled is True
def test_id_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'*IDN?', b'KEITHLEY INSTRUMENTS,MODEL DMM6500,04592448,1.7.12b\n')],
) as inst:
assert inst.id == 'KEITHLEY INSTRUMENTS,MODEL DMM6500,04592448,1.7.12b'
def test_line_frequency_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SYST:LFR?', b'60\n')],
) as inst:
assert inst.line_frequency == 60.0
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC "CURR:DC"', None)],
'current'),
([(b'*LANG SCPI', None),
(b':SENS:FUNC "CURR:AC"', None)],
'current ac'),
([(b'*LANG SCPI', None),
(b':SENS:FUNC "VOLT:DC"', None)],
'voltage'),
))
def test_mode_setter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
inst.mode = value
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n')],
'current'),
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:AC\n')],
'current ac'),
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'VOLT:AC\n')],
'voltage ac'),
))
def test_mode_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.mode == value
def test_nplc_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:NPLC 2', None)],
) as inst:
inst.nplc = 2
def test_nplc_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:NPLC?', b'2\n')],
) as inst:
assert inst.nplc == 2.0
def test_period_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':READ?', b'0.000000E+00\n')],
) as inst:
assert inst.period == 0.0
def test_period_aperature_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:PER:APER?', b'0.2\n')],
) as inst:
assert inst.period_aperature == 0.2
def test_period_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:PER:DIG?', b'6\n')],
) as inst:
assert inst.period_digits == 6
def test_period_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:PER:REL?', b'0\n')],
) as inst:
assert inst.period_relative == 0.0
def test_period_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:PER:REL:STAT?', b'0\n')],
) as inst:
assert inst.period_relative_enabled is False
def test_period_threshold_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:PER:THR:RANG?', b'0.1\n')],
) as inst:
assert inst.period_threshold == 0.1
def test_period_threshold_auto_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:PER:THR:RANG:AUTO?', b'1\n')],
) as inst:
assert inst.period_threshold_auto_enabled is True
def test_range_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:RANG:AUTO 0;UPP 1.0', None)],
) as inst:
inst.range = 1.0
def test_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:RANG?', b'1\n')],
) as inst:
assert inst.range == 1.0
def test_relative_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:REL 0.5', None)],
) as inst:
inst.relative = 0.5
def test_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:REL?', b'0.5\n')],
) as inst:
assert inst.relative == 0.5
def test_relative_enabled_setter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:REL:STAT 1', None)],
) as inst:
inst.relative_enabled = True
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:REL:STAT?', b'0\n')],
False),
([(b'*LANG SCPI', None),
(b':SENS:FUNC?', b'CURR:DC\n'),
(b'CURR:DC:REL:STAT?', b'1\n')],
True),
))
def test_relative_enabled_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.relative_enabled == value
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':READ?', b'9.900000E+37\n')],
9.9e+37),
([(b'*LANG SCPI', None),
(b':READ?', b'9.900000E+37\n')],
9.9e+37),
))
def test_resistance_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.resistance == value
def test_resistance_4W_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:FRES:DIG?', b'6\n')],
) as inst:
assert inst.resistance_4W_digits == 6
def test_resistance_4W_nplc_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FRES:NPLC?', b'1\n')],
) as inst:
assert inst.resistance_4W_nplc == 1.0
def test_resistance_4W_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FRES:RANG?', b'1E+07\n')],
) as inst:
assert inst.resistance_4W_range == 10000000.0
def test_resistance_4W_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FRES:REL?', b'0\n')],
) as inst:
assert inst.resistance_4W_relative == 0.0
def test_resistance_4W_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FRES:REL:STAT?', b'0\n')],
) as inst:
assert inst.resistance_4W_relative_enabled is False
def test_resistance_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:RES:DIG?', b'6\n')],
) as inst:
assert inst.resistance_digits == 6
def test_resistance_nplc_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:RES:NPLC?', b'1\n')],
) as inst:
assert inst.resistance_nplc == 1.0
def test_resistance_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:RES:RANG?', b'1E+07\n')],
) as inst:
assert inst.resistance_range == 10000000.0
def test_resistance_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:RES:REL?', b'0\n')],
) as inst:
assert inst.resistance_relative == 0.0
def test_resistance_relative_enabled_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:RES:REL:STAT?', b'0\n')],
) as inst:
assert inst.resistance_relative_enabled is False
def test_system_time_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SYST:TIME? 1', b'Thu Sep 21 09:06:41 2023\n')],
) as inst:
assert inst.system_time == 'Thu Sep 21 09:06:41 2023'
def test_terminals_used_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'ROUT:TERM?', b'REAR\n')],
) as inst:
assert inst.terminals_used == 'REAR'
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':READ?', b'1.200272E-03\n')],
0.001200272),
([(b'*LANG SCPI', None),
(b':READ?', b'5.943143E-04\n')],
0.0005943143),
))
def test_voltage_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.voltage == value
def test_voltage_ac_bandwidth_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:AC:DET:BAND?', b'3\n')],
) as inst:
assert inst.voltage_ac_bandwidth == 3.0
def test_voltage_ac_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:VOLT:AC:DIG?', b'6\n')],
) as inst:
assert inst.voltage_ac_digits == 6
def test_voltage_ac_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:AC:RANG?', b'1\n')],
) as inst:
assert inst.voltage_ac_range == 1.0
def test_voltage_ac_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:AC:REL?', b'0\n')],
) as inst:
assert inst.voltage_ac_relative == 0.0
def test_voltage_digits_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:VOLT:DIG?', b'6\n')],
) as inst:
assert inst.voltage_digits == 6
def test_voltage_nplc_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:NPLC?', b'1\n')],
) as inst:
assert inst.voltage_nplc == 1.0
def test_voltage_range_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:RANG?', b'1\n')],
) as inst:
assert inst.voltage_range == 1.0
def test_voltage_relative_getter():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:VOLT:REL?', b'0\n')],
) as inst:
assert inst.voltage_relative == 0.0
@pytest.mark.parametrize("comm_pairs, value", (
([(b'*LANG SCPI', None),
(b':SENS:VOLT:REL:STAT?', b'0\n')],
False),
([(b'*LANG SCPI', None),
(b':SENS:VOLT:REL:STAT?', b'0\n')],
False),
))
def test_voltage_relative_enabled_getter(comm_pairs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.voltage_relative_enabled == value
def test_check_errors():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'SYST:ERR?', b'0,"No error;0;0 0"\n')],
) as inst:
assert inst.check_errors() == []
def test_clear():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'*CLS', None)],
) as inst:
assert inst.clear() is None
def test_displayed_text():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':DISP:CLE', None),
(b':DISP:SCR SWIPE_USER', None),
(b':DISP:USER1:TEXT "Hello"', None),
(b':DISP:USER2:TEXT "DMM6500"', None)],
) as inst:
assert inst.displayed_text(*('Hello', 'DMM6500'), ) is None
@pytest.mark.parametrize("comm_pairs, args, kwargs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC "CURR:DC"', None),
(b':SENS:CURR:RANG:AUTO 0;:SENS:CURR:RANG 0.01', None)],
(), {}, None),
([(b'*LANG SCPI', None),
(b':SENS:FUNC "CURR:AC"', None),
(b':SENS:CURR:AC:RANG:AUTO 0;:SENS:CURR:AC:RANG 0.01', None)],
(), {'ac': True}, None),
))
def test_measure_current(comm_pairs, args, kwargs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.measure_current(*args, **kwargs) == value
def test_measure_frequency():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC "FREQ:VOLT"', None)],
) as inst:
assert inst.measure_frequency() is None
def test_measure_period():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b':SENS:FUNC "PER:VOLT"', None)],
) as inst:
assert inst.measure_period() is None
@pytest.mark.parametrize("comm_pairs, args, kwargs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC "RES"', None),
(b':SENS:RES:RANG:AUTO 0;:SENS:RES:RANG 1e+07', None)],
(), {}, None),
([(b'*LANG SCPI', None),
(b':SENS:FUNC "FRES"', None),
(b':SENS:FRES:RANG:AUTO 0;:SENS:FRES:RANG 1e+07', None)],
(), {'wires': 4}, None),
))
def test_measure_resistance(comm_pairs, args, kwargs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.measure_resistance(*args, **kwargs) == value
@pytest.mark.parametrize("comm_pairs, args, kwargs, value", (
([(b'*LANG SCPI', None),
(b':SENS:FUNC "VOLT:DC"', None),
(b':SENS:VOLT:RANG:AUTO 0;:SENS:VOLT:RANG 1', None)],
(), {}, None),
([(b'*LANG SCPI', None),
(b':SENS:FUNC "VOLT:AC"', None),
(b':SENS:VOLT:RANG:AUTO 0;:SENS:VOLT:AC:RANG 1', None)],
(), {'ac': True}, None),
))
def test_measure_voltage(comm_pairs, args, kwargs, value):
with expected_protocol(
KeithleyDMM6500,
comm_pairs,
) as inst:
assert inst.measure_voltage(*args, **kwargs) == value
def test_reset():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'*RST', None)],
) as inst:
assert inst.reset() is None
def test_trigger_single_autozero():
with expected_protocol(
KeithleyDMM6500,
[(b'*LANG SCPI', None),
(b'AZER:ONCE', None)],
) as inst:
assert inst.trigger_single_autozero() is None
|