Source code for Tests.GUI.DMachineSetup.test_PHoleM58

# -*- coding: utf-8 -*-

import sys
from random import uniform

from PySide2 import QtWidgets
from PySide2.QtTest import QTest

from pyleecan.Classes.LamHole import LamHole
from pyleecan.Classes.HoleM58 import HoleM58
from pyleecan.GUI.Dialog.DMatLib.MatLib import MatLib
from pyleecan.GUI.Dialog.DMachineSetup.SMHoleMag.PHoleM58.PHoleM58 import PHoleM58
from Tests.GUI import gui_option  # Set unit to m
from pyleecan.Classes.Material import Material


import pytest


[docs]class TestPHoleM58(object): """Test that the widget PHoleM58 behave like it should"""
[docs] @pytest.fixture def setup(self): """Run at the begining of every test to setup the gui""" if not QtWidgets.QApplication.instance(): self.app = QtWidgets.QApplication(sys.argv) else: self.app = QtWidgets.QApplication.instance() test_obj = LamHole(Rint=0.1, Rext=0.2) test_obj.hole = list() test_obj.hole.append( HoleM58( H0=0.10, H1=0.11, H2=0.12, W0=0.13, W1=0.14, W2=0.15, W3=0.17, R0=0.19 ) ) test_obj.hole[0].magnet_0.mat_type.name = "Magnet3" matlib = MatLib() matlib.dict_mat["RefMatLib"] = [ Material(name="Magnet1"), Material(name="Magnet2"), Material(name="Magnet3"), ] widget = PHoleM58(test_obj.hole[0], matlib) yield {"widget": widget, "test_obj": test_obj, "matlib": matlib} self.app.quit()
[docs] def test_init(self, setup): """Check that the Widget spinbox initialise to the lamination value""" assert setup["widget"].lf_H0.value() == 0.10 assert setup["widget"].lf_H1.value() == 0.11 assert setup["widget"].lf_H2.value() == 0.12 assert setup["widget"].lf_W0.value() == 0.13 assert setup["widget"].lf_W1.value() == 0.14 assert setup["widget"].lf_W2.value() == 0.15 assert setup["widget"].lf_W3.value() == 0.17 assert setup["widget"].lf_R0.value() == 0.19 # Check material assert not setup["widget"].w_mat_1.isHidden() assert setup["widget"].w_mat_1.c_mat_type.currentText() == "Magnet3" assert setup["widget"].w_mat_1.c_mat_type.currentIndex() == 2 setup["test_obj"].hole[0] = HoleM58( H0=0.20, H1=0.21, H2=0.22, W0=0.23, W1=0.24, W2=0.25, W3=0.27, R0=0.29 ) setup["widget"] = PHoleM58(setup["test_obj"].hole[0], setup["matlib"]) assert setup["widget"].lf_H0.value() == 0.20 assert setup["widget"].lf_H1.value() == 0.21 assert setup["widget"].lf_H2.value() == 0.22 assert setup["widget"].lf_W0.value() == 0.23 assert setup["widget"].lf_W1.value() == 0.24 assert setup["widget"].lf_W2.value() == 0.25 assert setup["widget"].lf_W3.value() == 0.27 assert setup["widget"].lf_R0.value() == 0.29
[docs] def test_set_W0(self, setup): """Check that the Widget allow to update W0""" # Clear the field before writing the new value setup["widget"].lf_W0.clear() QTest.keyClicks(setup["widget"].lf_W0, "0.31") setup["widget"].lf_W0.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.W0 == 0.31 assert setup["test_obj"].hole[0].W0 == 0.31
[docs] def test_set_W1(self, setup): """Check that the Widget allow to update W1""" setup["widget"].lf_W1.clear() QTest.keyClicks(setup["widget"].lf_W1, "0.32") setup["widget"].lf_W1.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.W1 == 0.32 assert setup["test_obj"].hole[0].W1 == 0.32
[docs] def test_set_W2(self, setup): """Check that the Widget allow to update W2""" setup["widget"].lf_W2.clear() QTest.keyClicks(setup["widget"].lf_W2, "0.33") setup["widget"].lf_W2.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.W2 == 0.33 assert setup["test_obj"].hole[0].W2 == 0.33
[docs] def test_set_W3(self, setup): """Check that the Widget allow to update W3""" setup["widget"].lf_W3.clear() QTest.keyClicks(setup["widget"].lf_W3, "0.323") setup["widget"].lf_W3.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.W3 == 0.323 assert setup["test_obj"].hole[0].W3 == 0.323
[docs] def test_set_R0(self, setup): """Check that the Widget allow to update R0""" setup["widget"].lf_R0.clear() QTest.keyClicks(setup["widget"].lf_R0, "0.334") setup["widget"].lf_R0.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.R0 == 0.334 assert setup["test_obj"].hole[0].R0 == 0.334
[docs] def test_set_H0(self, setup): """Check that the Widget allow to update H0""" setup["widget"].lf_H0.clear() QTest.keyClicks(setup["widget"].lf_H0, "0.34") setup["widget"].lf_H0.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.H0 == 0.34 assert setup["test_obj"].hole[0].H0 == 0.34
[docs] def test_set_H1(self, setup): """Check that the Widget allow to update H1""" setup["widget"].lf_H1.clear() QTest.keyClicks(setup["widget"].lf_H1, "0.35") setup["widget"].lf_H1.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.H1 == 0.35 assert setup["test_obj"].hole[0].H1 == 0.35
[docs] def test_set_H2(self, setup): """Check that the Widget allow to update H2""" setup["widget"].lf_H2.clear() QTest.keyClicks(setup["widget"].lf_H2, "0.36") setup["widget"].lf_H2.editingFinished.emit() # To trigger the slot assert setup["widget"].hole.H2 == 0.36 assert setup["test_obj"].hole[0].H2 == 0.36
[docs] def test_set_material_0(self, setup): """Check that you can change the material of mat_void""" setup["widget"].w_mat_0.c_mat_type.setCurrentIndex(0) assert setup["widget"].w_mat_0.c_mat_type.currentText() == "Magnet1" assert setup["test_obj"].hole[0].mat_void.name == "Magnet1"
[docs] def test_set_material_1(self, setup): """Check that you can change the material of magnet_0""" setup["widget"].w_mat_1.c_mat_type.setCurrentIndex(0) assert setup["widget"].w_mat_1.c_mat_type.currentText() == "Magnet1" assert setup["test_obj"].hole[0].magnet_0.mat_type.name == "Magnet1"
[docs] def test_PHoleM58_None_Magnet(self, setup): """Check that you can create PHoleM58 with None for magnet_0""" setup["test_obj"].hole.append( HoleM58( H0=0.10, H1=0.11, H2=0.12, W0=0.13, W1=0.14, W2=0.15, W3=0.17, R0=0.19, magnet_0=None, ) ) setup["matlib"] = MatLib() setup["matlib"].dict_mat["RefMatLib"] = [ Material(name="Magnet1"), Material(name="Magnet2"), Material(name="Magnet3"), ] setup["widget"] = PHoleM58(setup["test_obj"].hole[1], setup["matlib"]) assert setup["widget"].W1 == 0 assert setup["widget"].W2 == 0 assert setup["widget"].w_mat_1.isHidden()