User Abelevich - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:17:00Z http://stackoverflow.com/feeds/user/11391 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/425709/unit-testing-private-methods-facade-pattern 4 Unit-testing private methods: Facade pattern Abelevich 2009-01-08T20:13:43Z 2009-01-14T03:41:21Z <p>Lots of developers think that testing private methods is a bad idea. However, all examples I've found were based on the idea that private methods are private because calling them could break internal object's state. But that's not only reason to hide methods.</p> <p>Let's consider Facade pattern. My class users need the 2 public methods. They would be too large. In my example, they need to load some complex structure from the database's BLOB, parse it, fill some temporary COM objects, run user's macro to validate and modify these objects, and serialize modified objects to XML. Quite large functionality for the single metod :-) Most of these actions are required for both public methods. So, I've created about 10 private methods, and 2 public methods do call them. Actually, my private methods should not necessarily be private; they'll not break the internal state of instance. But, when I don't wont to test private methods, I have the following problems:</p> <ol> <li>Publishing them means complexity for users (they have a choice they don't need) </li> <li>I cannot imagine TDD style for such a large public methods, when you're to write 500+ lines of code just to return something (even not real result). </li> <li>Data for these methods is retrieved from database, and testing DB-related functionality is much more difficult.</li> </ol> <p>When I'm testing private methods:</p> <ol> <li>I don't publish details that would confuse users. Public interface includes 2 methods.</li> <li>I can work in TDD style (write small methods step-by-step). </li> <li>I can cover most of class's functionality using test data, without database connection.</li> </ol> <p>Could somebody describe, what am I doing wrong? What design should I use to obtain the same bonuses and do not test private methods?</p> <p>UPDATE: It seems to me I've extracted everything I was able to another classes. So, I cannot imagine what could I extract additionally. Loading from database is performed by ORM layer, parsing stream, serializing to XML, running macro - everything is done by standalone classes. This class contains quite complex data structure, routines to search and conversion, and calls for all mentioned utilities. So, I don't think something else could be extracted; otherwise, its responsibility (knowledge about the data structure) would be divided between classes.</p> <p>So, the best method to solve I see now is dividing into 2 objects (Facade itself and real object, with private methods become public) and move real object to somewhere nobody would try to find it. In my case (Delphi) it would be a standalone unit, in other languages it could be a separate name space. Other similar option is 2 interfaces, thanks for idea.</p> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/261328#261328 1 Answer by Abelevich for What is the best way to share Delphi source files among projects? Abelevich 2008-11-04T09:27:34Z 2008-11-05T08:44:20Z <p>I think no special solutions are required. In our project (several applications that share large areas of code) we use the following approach:</p> <ol> <li>Split source code to folders.</li> <li>Create packages for logical units of shared code. </li> <li>Support monolith (without using packages) and parted builds.</li> <li>Monolith builds are used for coding and debugging. Each application has its own Unit output directory, so all of them are built independently. </li> <li>Dependency restrictions are enforced by search paths of projects.</li> <li>Parted build are created automatically (we use CruiseControl server and MSBuild project). Automatic build clears all temporary folders before build, so there are no dependencies between consecutive builds.</li> </ol> <p>In our case, we could not control list of imported files. However, we could control a list of imported packages in parted builds. Smaller packages mean better granularity. If somebody is adding dependency to the unit, located in folder that is not available in search path, and package containing this unit is not in uses list, parted build is failed. So, explicit action (modifying MSBuild script that generates CFG files for parted build) is required to add dependency. </p> <p>P.S. We use packages not to control dependencies, but because of Windows non-NT versions problems running large applications. So, dependency control is a side effect. Parted builds are considered as "release", and monolith - as "debug" configuration. Monolith applications are used only for coding and debugging. Developers work with monolith applications, and introduce their own changes to project configurations like attaching VCL debug info, switching on and off range check errors, optimization etc. However, after commit to SVN, CC tries to make parted build. It ignores CFG files from repository and re-creates them using special task of MSBuild project. So we can be sure no problems with dependencies were introduced (and perform other checks as well).</p> <p>As far as we don't need monolith and parted builds simultaneously, we have only a single project per application. If you want to build both versions in MSBuild script, you could simply add one more target, re-create CFG one more time and specify one more Unit output directory. Naturally, if both versions are required for developers, it would be more convenient to have more projects.</p> http://stackoverflow.com/questions/152487/msbuild-how-to-obtain-number-of-warnings-raised 4 MSBuild: How to obtain number of warnings raised? Abelevich 2008-09-30T10:10:43Z 2008-10-01T11:52:55Z <p>There is a MSBuild script, that includes number if Delphi and C# projects, unit tests etc. </p> <p>The problem is: how to mark build failed if warnings were raised (for testing purposes, not for release builds)? Using LogError instead of LogWarning in custom tasks seems to be not a good option, because the build should test as much as it's able (until real error) to report as much warnings as possible in a time (build project is using in CruiseControl.NET).</p> <p>May be, the solution is to create my own logger that would store warnings flag inside, but I cannot find if there is a way to read this flag in the end of build?</p> <p>P.S. There is no problem to fail the build immediately after receiving a warning (Delphi compiler output is processed by custom task, and /warnaserror could be used for C#), but the desired behavior is "build everything; collect all warnings; fail the build" to report about all warnings, not only about the first one.</p> http://stackoverflow.com/questions/425709/unit-testing-private-methods-facade-pattern/425723#425723 Comment by Abelevich on Unit-testing private methods: Facade pattern Abelevich 2009-01-09T08:47:40Z 2009-01-09T08:47:40Z See update, please. Responsibility of this class is holding quite complex data structure and routines to make searches, conversions etc. Everything else is extracted to be outside. So, Facade itself could be extracted, but I don't think anything else could be extracted too. http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/261328#261328 Comment by Abelevich on What is the best way to share Delphi source files among projects? Abelevich 2008-11-05T08:15:18Z 2008-11-05T08:15:18Z See P.S. Yes, we're using custom MSBuild task to run Delphi compiler and specify project settings for it. And no, we haven't different projects for the same application because monolith and parted builds are required for different purposes, and developers need only monolith ones. http://stackoverflow.com/questions/152487/msbuild-how-to-obtain-number-of-warnings-raised/152685#152685 Comment by Abelevich on MSBuild: How to obtain number of warnings raised? Abelevich 2008-09-30T12:38:02Z 2008-09-30T12:38:02Z I tried to use almost the same thing, but used static member in Task subclass to collect warnings count (and it didn't work). Thanks for idea about shared memory. http://stackoverflow.com/questions/152487/msbuild-how-to-obtain-number-of-warnings-raised/152524#152524 Comment by Abelevich on MSBuild: How to obtain number of warnings raised? Abelevich 2008-09-30T10:41:29Z 2008-09-30T10:41:29Z Sorry, but the task is to collect all warnings (or, at least, as much as possible, until real error), and mark build as failed after that. It's not convenient to wait for CruiseControl build; receive message about first warning; fix the problem and wait for the next one.