Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit testing Modelica component library?

I'm creating a library of components in Modelica, and would appreciate some input on techniques for unit testing the package.

So far I have a test package, consisting of a set of models, one per component. Each test model instantiates a component, and connects it to some very simple helper classes that provide the necessary inputs and outputs.

This works fine when using it interactively in the OMEditor, but I'm looking for a more automated solution with pass/fail criteria etc.

Should I start writing .mos scripts, or is there another/better way ?

Thanks.

like image 401
Jack Welch Avatar asked Mar 22 '16 14:03

Jack Welch


1 Answers

I like how Openmodelica testing results look, see

  • https://test.openmodelica.org/libraries/MSL_3.2.1/BuildModelRecursive.html
  • click on a red cell: https://test.openmodelica.org/libraries/MSL_3.2.1/files/Modelica.Electrical.Analog.Examples.AD_DA_conversion.diff.html
  • choose "javascript" for a failing signal: https://test.openmodelica.org/libraries/MSL_3.2.1/files/Modelica.Electrical.Analog.Examples.AD_DA_conversion.diff.resistor.v.html

No idea how they are doing it, though. Obviously some kind of regression testing is done, with previous results stored, but no idea if that is from some testing library or self-made.


In general, I find it kinda sad/suboptimal, that there isn't "the one" testing solution everybody can/should use (cf. e.g. nose or pytest in the python ecosystem), instead everybody seems to cook up their own solutions (or tries to), and all you find is some Modelica conference papers (often without a trace of implementation) or unmaintained library of unknown status.

Off the top of my head, I found/know of (some already linked in other answers here)

  • OM testing
  • JModelica testing (seems to only test for compiler errors?)
  • Xogeny test (Some tests of the library itself fail for me. Also, does not seem to include a test runner)
  • MoUnit (something by Fraunhofer, and not publically available - maybe in OneWind/OneModelica?)
  • UnitTesting (apparently some kind of predecessor of XogenyTest. Also, no sources/implementation found)
  • Optimica Testing Toolkit (apparently a commercial product by Modelon)
  • SystemModeler VerificationTest
  • buildingspy Python package, for regression testing among other things. Under the umbrella of the Berkeley Modelica Buildings Library. (Simulation only with Dymola)
  • Modelica_Requirements library -- define requirements for simulation. (claimed to be open source and implemented, but apparently not available anywhere)
  • ... I'm sure there are more I have forgotten or am not aware of

This seems like a pathological instance of https://xkcd.com/927/. It's kinda impossible for a (non-dev) user to know which of those to choose, which are actually good/usable/available/...

(Not real testing, but also relevant: parsing and semantic analysis using ANTLR: modelica.org/events/Conference2003/papers/h31_parser_Tiller.‌​pdf)

like image 72
Christoph Avatar answered Oct 06 '22 20:10

Christoph