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
|
#include "persalys/SobolAnalysis.hxx"
#include "persalys/SRCAnalysis.hxx"
#include "persalys/SensitivityAnalysisWizard.hxx"
#include "persalys/SymbolicPhysicalModel.hxx"
#include <openturns/OTtypes.hxx>
#include <openturns/Normal.hxx>
#include <QtTest/QtTest>
namespace PERSALYS
{
class TestSensitivityAnalysisWizard : public QObject
{
Q_OBJECT
public:
TestSensitivityAnalysisWizard()
{
// create the model
Input Q("Q", 10200, OT::Normal(10200, 100), "Primary energy");
Input E("E", 3000, OT::Normal(3000, 15), "Produced electric energy");
Input C("C", 4000, OT::Normal(4000, 60), "Valued thermal energy");
Output Ep("Ep", "Primary energy savings");
InputCollection inputCollection(3);
inputCollection[0] = Q;
inputCollection[1] = E;
inputCollection[2] = C;
OutputCollection outputCollection(1, Ep);
OT::Description formula(1, "1-(Q/((E/((1-0.05)*0.54))+(C/0.8)))");
model = SymbolicPhysicalModel("model", inputCollection, outputCollection, formula);
}
private:
SymbolicPhysicalModel model;
private slots:
void TestOutputsSelection()
{
// create the analysis
SobolAnalysis analysis("analysis", model);
// create the wizard
SensitivityAnalysisWizard wizard(analysis);
wizard.show();
// checks
// - first page
OutputsSelectionGroupBox * outputsSelectionGroupBox = wizard.introPage_->findChild<OutputsSelectionGroupBox*>();
TemporaryLabel * errorMessageLabel = wizard.introPage_->findChild<TemporaryLabel*>();
TitledComboBox * comboBox = outputsSelectionGroupBox->findChild<TitledComboBox*>();
ListWidgetWithCheckBox * listWidget = outputsSelectionGroupBox->findChild<ListWidgetWithCheckBox*>();
QVERIFY2(wizard.validateCurrentPage(), "Page must be valid");
QVERIFY2(errorMessageLabel->text().isEmpty(), "Label must be empty");
QTest::mouseClick(comboBox, Qt::LeftButton); // open listwidget
QTest::mouseClick(listWidget->viewport(), Qt::LeftButton); // deselect all
QVERIFY2(!wizard.validateCurrentPage(), "Page must be not valid");
QVERIFY2(!errorMessageLabel->text().isEmpty(), "Label must be not empty");
wizard.next();
QVERIFY2(wizard.currentId() == 0, "Current page ID must be 0"); // can not go to next page
QTest::mouseClick(listWidget->viewport(), Qt::LeftButton); // select all
QVERIFY2(wizard.validateCurrentPage(), "Page must be valid");
QVERIFY2(errorMessageLabel->text().isEmpty(), "Label must be empty");
}
void TestSobol()
{
// create the analysis
SobolAnalysis analysis("analysis", model);
// create the wizard
SensitivityAnalysisWizard wizard(analysis);
wizard.show();
// checks
// - first page
QButtonGroup * buttonGroup = wizard.introPage_->findChild<QButtonGroup*>();
QVERIFY2(buttonGroup->checkedId() == SensitivityIntroPage::Sobol, "Checked button must be Sobol");
QVERIFY2(wizard.currentId() == 0, "Current page ID must be 0");
// - second page
wizard.next();
TemporaryLabel * errorMessageLabel = wizard.sobolPage_->findChild<TemporaryLabel*>();
QVERIFY2(wizard.currentId() == 1, "Current page ID must be 1");
QVERIFY2(wizard.validateCurrentPage(), "Page must be valid");
QVERIFY2(errorMessageLabel->text().isEmpty(), "Label must be empty");
QVERIFY2(wizard.nextId() == -1, "Next page ID must be -1");
bool analysisEquality = wizard.getAnalysis().getParameters()==analysis.getParameters();
QVERIFY2(analysisEquality, "The two SobolAnalysis must be equal");
}
void TestSRC()
{
// create the analysis
SRCAnalysis analysis("analysis", model);
// create the wizard
SensitivityAnalysisWizard wizard(analysis);
wizard.show();
// checks
// - first page
QButtonGroup * buttonGroup = wizard.introPage_->findChild<QButtonGroup*>();
QVERIFY2(buttonGroup->checkedId() == SensitivityIntroPage::SRC, "Checked button must be SRC");
QVERIFY2(wizard.currentId() == 0, "Current page ID must be 0");
// - second page
wizard.next();
QVERIFY2(wizard.currentId() == 2, "Current page ID must be 2");
QVERIFY2(wizard.validateCurrentPage(), "Page must be valid");
QVERIFY2(wizard.nextId() == -1, "Next page ID must be -1");
bool analysisEquality = wizard.getAnalysis().getParameters()==analysis.getParameters();
QVERIFY2(analysisEquality, "The two SRCAnalysis must be equal");
}
void TestAnalysisModification()
{
// create the analysis
SobolAnalysis analysis("analysis", model);
// create the wizard
SensitivityAnalysisWizard wizard(analysis);
wizard.show();
// checks
// - first page
QButtonGroup * buttonGroup = wizard.introPage_->findChild<QButtonGroup*>();
buttonGroup->button(SensitivityIntroPage::SRC)->click();
QVERIFY2(wizard.nextId() == 2, "Next page ID must be 2");
bool analysisEquality = wizard.getAnalysis().getParameters()==SRCAnalysis("analysis", model).getParameters();
QVERIFY2(analysisEquality, "The two SRCAnalysis must be equal");
}
};
}
QTEST_MAIN(PERSALYS::TestSensitivityAnalysisWizard)
#include "t_SensitivityAnalysisWizard_std.moc"
|