User glaxaco - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:57:02Z http://stackoverflow.com/feeds/user/2144 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1908280/self-mocking-using-rhino-mocks 3 "Self-mocking" using Rhino Mocks glaxaco 2009-12-15T15:40:32Z 2009-12-15T17:04:28Z <p>I have a situation I've run into several times but have never found a good answer for. Suppose I have a class like the following, where one method calls another in the same class:</p> <pre><code>public class Foo { public int Bar() { if (Baz()) { return 1; } else { return 2; } } public virtual bool Baz() { // behavior to be mocked } } </code></pre> <p>I want to unit test the behavior of the method Bar() depending on return values of Baz(). If Baz() were in a different class, I would call PartialMock to set up mocking behavior on that class, but it doesn't seem to work when PartialMock is used on the test class itself. Is there an easy way to do this? What am I missing? </p> <p>I'm using Rhino Mocks 3.5 and .NET 2.0.</p> http://stackoverflow.com/questions/1870557/refactoring-a-working-project/1874634#1874634 0 Answer by glaxaco for Refactoring a working project glaxaco 2009-12-09T15:25:37Z 2009-12-09T18:56:42Z <p>First, I agree with the other posters - do not give in to the temptation to rewrite from scratch. The code does work, after all. Second, and it may sound obvious, but concentrate your refactoring on those areas that need modification (for new features, etc.). There may be code that's crying out to be refactored, but if it's working and in a stable part of the app, leave it alone.</p> <p><em>Working Effectively with Legacy Code</em> does a great job of addressing the catch-22 that you don't want to refactor without unit tests, but you can't introduce unit tests without refactoring. Among other things, he suggests relying on automated refactoring tools to avoid introducing bugs when refactoring without tests.</p> <p>Others may disagree with me, but IMO sometimes you you have no alternative but to do the initial refactoring without unit tests, and rely on automated or (careful) manual integration tests to make sure you got it right. The initial refactoring should allow the code to be run in a unit test harness, than you're on your way.</p> http://stackoverflow.com/questions/1846605/long-code-blocks-inside-if-statements-or-for-loops/1860055#1860055 0 Answer by glaxaco for Long code blocks inside if statements or for loops glaxaco 2009-12-07T13:42:15Z 2009-12-07T13:42:15Z <p>Your idea of extracting the long code fragments inside of the "if" blocks is on the right track; however, I would start much smaller than that. Look for smaller bits of repeated code - I'd say 3-10 lines - that do something very understandable, and extract that to a method (which should be very easy to name). If possible, do the extracted using automated refactoring tools (to avoid errors) and add unit tests for the extracted method. Now, repeat this a couple of times, and you should see patterns and structures begin to emerge. You'll likely end up with a structure similar to that of a previous answer:</p> <pre><code>if (condition) { func1(); func2(); func3(); } else if (another condition) { func4(); } else { func5(); func6(); func3(); } </code></pre> http://stackoverflow.com/questions/1837801/refactoring-exceptions-for-workflow/1841940#1841940 1 Answer by glaxaco for Refactoring exceptions for workflow glaxaco 2009-12-03T18:34:03Z 2009-12-03T18:34:03Z <p>Check out <em>Working Effectively with Legacy Code</em> by Michael Feathers, particularly Chapter 22 (I Need to Change a Monster Method and I Can't Write Tests for It). There are a lot of great techniques in there for situations like yours. Personally, in cases like this I usually end up extracting methods from sections of the longer methods, and getting rid of local variables that are used throughout the method; these are almost always trouble.</p> http://stackoverflow.com/questions/1826914/strategies-for-multithreaded-application/1834681#1834681 1 Answer by glaxaco for Strategies for multithreaded application glaxaco 2009-12-02T17:56:21Z 2009-12-02T17:56:21Z <p>To Quibblesome's excellent suggestions, I might also add that using <a href="http://en.wikipedia.org/wiki/Immutable%5Fobject" rel="nofollow">immutable objects</a> is often an effective way to reduce the risk of threading problems. (Immutable objects, like strings in .NET and Java, cannot be modified once they are created.)</p> http://stackoverflow.com/questions/1800634/diff-tool-that-can-compare-sub-sections-of-files/1826395#1826395 0 Answer by glaxaco for Diff tool that can compare sub-sections of files glaxaco 2009-12-01T14:07:50Z 2009-12-01T14:07:50Z <p>Two two tools I have used to root out duplicate code are <a href="http://www.redhillconsulting.com.au/products/simian/" rel="nofollow">Simian</a> and <a href="http://blog.nitriq.com/CopyPasteKillerFreeCodeSimilarityFinder.aspx" rel="nofollow">CopyPasteKiller</a>. Both are useful, although IMO CopyPasteKiller is a little easier to get started with. It appears there is an <a href="http://www.eclipse-plugins.info/eclipse/plugin%5Fdetails.jsp?id=946" rel="nofollow">Eclipse plugin</a> for Simian, although I have not used it myself.</p> http://stackoverflow.com/questions/1797749/rhino-mocks-stub-one-method-of-class-and-let-other-real-methods-use-this-stubbe/1799478#1799478 0 Answer by glaxaco for Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one glaxaco 2009-11-25T19:43:25Z 2009-11-25T19:43:25Z <p>I'm not sure which version of Rhino.Mocks you're using, but what I would do is make only the GetCurrentDateTime() method virtual (like an earlier poster suggested), then create your mock object using PartialMock(). There are lots of ways to set things up, but the following should work:</p> <pre><code>var mocks = new MockRepository(); var time = mocks.PartialMock&lt;TimeMachine&gt;(); using (mocks.Record()) { Expect.Call(time.GetCurrentDateTime()).Return(new DateTime(2009, 11, 25, 12, 0, 0)); } using (mocks.Playback()) { Assert.AreEqual(new DateTime(2009, 11, 25), time.GetCurrentDate()); } </code></pre> http://stackoverflow.com/questions/1797467/itextsharp-diacritics/1797595#1797595 3 Answer by glaxaco for iTextSharp diacritics glaxaco 2009-11-25T15:14:05Z 2009-11-25T17:12:14Z <p>You're going to need to figure out what the Unicode representation is for your diacritical characters. You can embed <a href="http://www.unicode.org/charts/" rel="nofollow">Unicode characters</a> into a string literal with \u[unicode value in hex]; e.g.</p> <pre><code>string s = "\u0159"; // Should be your character </code></pre> <p>You may also need to choose a font that can represent the characters correctly:</p> <pre><code>bf = BaseFont.CreateFont(...); font = new Font(bf, 12); document.Add(new Paragraph(s, font); </code></pre> http://stackoverflow.com/questions/1632624/creating-testable-code/1756031#1756031 0 Answer by glaxaco for Creating testable code glaxaco 2009-11-18T13:39:20Z 2009-11-18T13:39:20Z <p>You may also want to look at Michael Feathers' book <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow"><em>Working Effectively with Legacy Code</em></a>. Not only does he discuss exactly these types of problems, but the book includes numerous examples in C++ (in addition to Java, C, and C#). Feathers is also the original creator of <a href="http://sourceforge.net/apps/mediawiki/cppunit" rel="nofollow">CppUnit</a>.</p> http://stackoverflow.com/questions/1727307/refactor-refactor-refactor-your-code-what-does-this-mean-exactly-and-why-do-it/1731292#1731292 1 Answer by glaxaco for "refactor refactor refactor your code." What does this mean exactly and why do it ? glaxaco 2009-11-13T19:21:48Z 2009-11-16T14:45:13Z <p>In a nutshell, refactoring means improving the design and/or implementation of software, usually without changing its behavior. This is normally done to make the code easier to understand and work with going forward, thereby making future development faster and less bug-prone.</p> <p>Refactoring is a long-term investment in your code - since it doesn't affect the outward "appearance" of the software, there is very often pressure (from management, etc.) to "just get it working and move on to the next thing." While this may sometimes be the right decision, depending on business drivers, a codebase that undergoes change but never gets refactored will decay into a difficult, buggy mess (See also <a href="http://en.wikipedia.org/wiki/Technical%5Fdebt" rel="nofollow">Technical Debt</a>).</p> <p>Specifically, the top reasons to refactor are usually the following:</p> <ol> <li>Getting rid of duplicated code</li> <li>Breaking up a long method into smaller pieces by extracting new methods from sections of the longer method</li> <li>Breaking up a class that has too many responsibilities into smaller, more targeted classes or subclasses</li> <li>Moving methods from one class to another. Often this is done so the methods reside in the same class as the data they operate on.</li> </ol> http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete 7 Monitoring files - how to know when a file is complete glaxaco 2008-08-27T13:23:35Z 2009-09-16T08:33:53Z <p>We have several .NET applications that monitor a directory for new files, using FileSystemWatcher. The files are copied from another location, uploaded via FTP, etc. When they come in, the files are processed in one way or another. However, one problem that I have never seen a satisfactory answer for is: for large files, how does one know when the files being monitored are still being written to? Obviously, we need to wait until the files are complete and closed before we begin processing them. The event args in the FileSystemWatcher events do not seem to address this.</p> http://stackoverflow.com/questions/880401/what-book-on-tdd-for-c-with-treatment-of-mocks/1008167#1008167 2 Answer by glaxaco for What book on TDD for C# with treatment of Mocks glaxaco 2009-06-17T16:25:38Z 2009-06-17T16:25:38Z <p><em>The Art of Unit Testing: With Examples in .NET</em> by Roy Osherove (<a href="http://rads.stackoverflow.com/amzn/click/1933988274" rel="nofollow">Amazon Page</a>, <a href="http://www.artofunittesting.com/" rel="nofollow">Official Site</a>) sounds like what you're looking for. He devotes one chapter introducing the concepts of stub and mock objects (using a "roll-your-own" approach), and then a second chapter on using mock object frameworks, particularly <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a>. There is somewhat less emphasis on Test-Driven Development, but there is quite a lot of information about TDD available from other sources, and TDD isn't all that language-specific.</p> http://stackoverflow.com/questions/878073/whats-the-most-efficient-way-to-marshal-c-structs-to-c/878109#878109 1 Answer by glaxaco for What's the most efficient way to marshal C++ structs to C#? glaxaco 2009-05-18T14:43:53Z 2009-05-18T14:43:53Z <p>This may be outside the bounds of your question, but I would be inclined to write a little assembly in Managed C++ that did an fread() or something similarly fast to read in the structs. Once you've got them read in, you can use C# to do everything else you need with them.</p> http://stackoverflow.com/questions/826789/what-is-the-ldf-file-in-sql-server/826805#826805 5 Answer by glaxaco for What is the LDF file in SQL Server? glaxaco 2009-05-05T20:35:03Z 2009-05-05T20:35:03Z <p>The LDF file holds the database transaction log. See, for example, <a href="http://www.databasedesign-resource.com/sql-server-transaction-log.html" rel="nofollow">http://www.databasedesign-resource.com/sql-server-transaction-log.html</a> for a full explanation. There are ways to shrink the transaction file; for example, see <a href="http://support.microsoft.com/kb/873235" rel="nofollow">http://support.microsoft.com/kb/873235</a>.</p> http://stackoverflow.com/questions/54364/using-activedirectorymembershipprovider-with-two-domain-controllers 3 Using ActiveDirectoryMembershipProvider with two domain controllers glaxaco 2008-09-10T15:17:06Z 2009-03-10T03:49:34Z <p>We have an ASP.NET application running at a customer site that uses ActiveDirectory for user login via the ActiveDirectoryMembershipProvider. Their primary domain controller that we were pointing to went down this morning, and in getting everything set back up the client was wondering if we could have a redundant connection to two domain controllers; i.e. specifying a primary and a backup AD server. A Google search proved fruitless - does anyone know if this can be done?</p> http://stackoverflow.com/questions/159744/converting-ms-word-documents-to-pdf-in-asp-net 1 Converting MS Word Documents to PDF in ASP.NET glaxaco 2008-10-01T21:05:21Z 2008-10-15T12:25:53Z <p>Similar questions have been asked, but nothing exactly like mine, so here goes.</p> <p>We have a collection of Microsoft Word documents on an ASP.NET web server with merge fields whose values are filled in as a result of user form submissions. After the field merge, the server must convert the document to PDF and stream it down to the browser. Our first inclination was to use the Visual Studio Tools for Office API; however, we ran into <a href="http://support.microsoft.com/?id=257757" rel="nofollow">this warning from Microsoft</a>:</p> <blockquote> <p>Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, ASP.NET, DCOM, and NT Services), because Office may exhibit unstable behavior and/or deadlock when Office is run in this environment.</p> </blockquote> <p>It looks like the field manipulation can be done using the <a href="http://msdn.microsoft.com/en-us/library/aa982683.aspx" rel="nofollow">Open XML SDK</a>, but what's the best way to convert Word 2007 documents to PDF without opening Word? The optimal solution would be low-cost, scalable, have a low memory footprint, be easy to deploy, and have a .NET API.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection 8 Copying Files over an Intermittent Network Connection glaxaco 2008-08-20T15:04:20Z 2008-09-17T21:39:25Z <p>I am looking for a robust way to copy files over a Windows network share that is tolerant of intermittent connectivity. The application is often used on wireless, mobile workstations in large hospitals, and I'm assuming connectivity can be lost either momentarily or for several minutes at a time. The files involved are typically about 200KB - 500KB in size. The application is written in VB6 (ugh), but we frequently end up using Windows DLL calls.</p> <p>Thanks!</p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/33389#33389 2 Answer by glaxaco for How do I programmatically create a PDF in my .NET application? glaxaco 2008-08-28T21:02:12Z 2008-08-28T21:02:12Z <p>If you're going to use iTextSharp (or its original Java incarnation, iText), you owe it to yourself to find a copy of <em><a href="http://www.1t3xt.com/docs/book.php" rel="nofollow">iText In Action: Creating and Manipulating PDF</a></em> by Bruno Lowagie, the creator of iText. It's very well-written and contains great explanations for why PDF does things the way it does. (I have no financial interest; I just thought it was one of the better-written technical books I've read.)</p> http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete/30130#30130 0 Answer by glaxaco for Monitoring files - how to know when a file is complete glaxaco 2008-08-27T13:40:04Z 2008-08-27T13:40:04Z <p>Thanks for all the quick answers; the stackoverflow community rocks!</p> <p>Generally we don't have control over what is being written to the watched directory. I agree that when you do have such control, writing a separate, small lock file of some kind, or moving/renaming the file once it's completed writing, certainly works (and I have used these techniques myself). At the moment, our biggest need is watching an incoming FTP directory, where large files are being uploaded. I like the technique of attempting to get a write lock on the file; I'll pass that along to our other developers.</p> http://stackoverflow.com/questions/30036/javascript-and-threads/30052#30052 0 Answer by glaxaco for JavaScript and Threads glaxaco 2008-08-27T13:14:06Z 2008-08-27T13:14:06Z <p>JavaScript does not contain threads, at least in its current form. What exactly are you trying to do?</p> http://stackoverflow.com/questions/296/should-i-learn-c/22289#22289 0 Answer by glaxaco for Should I learn C? glaxaco 2008-08-22T13:09:28Z 2008-08-22T13:09:28Z <p>In my experience, learning C is valuable in understanding how the bits move around all the way up and down the technology stack, particularly if you're a hardware guy like Jeff:</p> <ul> <li>A little physics will teach you how semiconductors work, most notably transistors;</li> <li>Put a few transistors together to create logic gates (AND, OR, NOT, etc.)</li> <li>Assemble a bunch of logic gates to form a microprocessor</li> <li>Tell a microprocessor what to do via machine code</li> <li>Assembly language is a more human-readable way to produce microprocessor machine code</li> <li>C is a great bridge between assembly and higher-level languages. C will help you understand Assembly and vice versa.</li> <li>C++ is basically an object-oriented extension grafted onto C</li> <li>And on to higher-level languages (Java, C#, etc.)</li> </ul> http://stackoverflow.com/questions/20965/what-programming-books-do-you-recommend/21217#21217 6 Answer by glaxaco for What programming books do you recommend? glaxaco 2008-08-21T21:19:08Z 2008-08-21T21:19:08Z <p>In no particular order except how they're arranged on my bookshelf:</p> <ul> <li><em>The Pragmatic Programmer</em></li> <li><em>Rafactoring</em> by Fowler</li> <li><em>Working Effectively with Legacy Code</em> by Feathers. This is practically a companion volume to <em>Refactoring</em>.</li> <li><em>UML Distilled</em> by Fowler. Among its other virtues is brevity.</li> <li><em>Debugging the Development Process</em> by Steve Maguire</li> <li><em>Design Patterns</em> (aka "Gang of Four") by Gamma et al</li> </ul> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/21186#21186 0 Answer by glaxaco for Copying Files over an Intermittent Network Connection glaxaco 2008-08-21T21:03:40Z 2008-08-21T21:03:40Z <p>Thanks for the RoboCopy and CopyFileEx suggestions. CopyFileEx in particular looks promising. Currently, the client application is using (VS.85).aspx">SHFileOperation to do the actual file copy.</p> http://stackoverflow.com/questions/18172/copying-files-over-an-intermittent-network-connection/18212#18212 0 Answer by glaxaco for Copying Files over an Intermittent Network Connection glaxaco 2008-08-20T15:21:38Z 2008-08-20T15:21:38Z <p>According to the <a href="http://www.codeproject.com/KB/IP/bitsman.aspx" rel="nofollow">Code Project site</a>:</p> <blockquote> <p>Files are transferred only using the HTTP and HTTPS protocols with or without authentication</p> </blockquote> <p>Unfortunately, this is a deal breaker (at least within the current scope) because the server application does not have a web interface; files must be copied to a public folder, where they are scooped up and processed from there.</p> <p>As for comparing hash values, we're already doing that, but only after the file copy completed successfully. But do keep those suggestions coming!</p> http://stackoverflow.com/questions/204614/streaming-logtxt-viewer/204643#204643 Comment by glaxaco on Streaming log(txt) viewer glaxaco 2009-12-16T15:08:04Z 2009-12-16T15:08:04Z The problem with using Notepad++ for this is that (at least in version 5.3.1) it doesn't update the display in the background - it must have focus for the updating to occur. Plus, all of your documents (tabs) must work the same way, either tailing or not. Obviously much better than nothing if you find yourself on a system with Notepad++ but no other tail utility, but IMO not as good as a true tailer. http://stackoverflow.com/questions/1908280/self-mocking-using-rhino-mocks/1908897#1908897 Comment by glaxaco on "Self-mocking" using Rhino Mocks glaxaco 2009-12-15T17:48:38Z 2009-12-15T17:48:38Z I tried it and it works exactly as advertised. Thanks! http://stackoverflow.com/questions/1853314/how-can-i-convert-an-rtf-file-to-a-pdf-file/1853323#1853323 Comment by glaxaco on How can I convert an RTF file to a pdf file? glaxaco 2009-12-06T19:24:36Z 2009-12-06T19:24:36Z This will work fine, but not in a server environment. Microsoft does not recommend or support using the Office API in a server environment. See for example question 159744. http://stackoverflow.com/questions/1825419/convert-a-file-into-pdf-with-a-visual-basic-script Comment by glaxaco on Convert a file into PDF with a Visual Basic script glaxaco 2009-12-01T14:14:36Z 2009-12-01T14:14:36Z What kind of file are you starting out with? Text, Word, HTML, etc.? http://stackoverflow.com/questions/1797467/itextsharp-diacritics/1797595#1797595 Comment by glaxaco on iTextSharp diacritics glaxaco 2009-11-30T13:43:52Z 2009-11-30T13:43:52Z True enough. In contrived code examples typically used in answers, we're often hard-coding strings, but in real use, the problem is often getting the encoding right when reading text into a string from an outside source (user input, text file, database, etc.) http://stackoverflow.com/questions/1797011/reading-pdf-file-to-get-tabular-data-in-structured-format Comment by glaxaco on Reading PDF file to get tabular data in structured format, glaxaco 2009-11-25T17:19:36Z 2009-11-25T17:19:36Z In general, reading data out of PDF files is difficult and error-prone. When you say &quot;I am able to read the file&quot; what exactly do you mean? Are you using the PdfReader class? http://stackoverflow.com/questions/159744/converting-ms-word-documents-to-pdf-in-asp-net/204306#204306 Comment by glaxaco on Converting MS Word Documents to PDF in ASP.NET glaxaco 2008-11-24T22:07:36Z 2008-11-24T22:07:36Z After trying a number of different products, Aspose definitely was head and shoulders above the rest. The main downside of it is cost - it ain't cheap, but you get what you pay for. http://stackoverflow.com/questions/54364/using-activedirectorymembershipprovider-with-two-domain-controllers/54463#54463 Comment by glaxaco on Using ActiveDirectoryMembershipProvider with two domain controllers glaxaco 2008-09-10T16:06:13Z 2008-09-10T16:06:13Z I was afraid of that, although I've subclassed ADMP before and it wasn't too bad. I am curious if there is an answer to what the LDAP string would look like if pointing to the domain rather than the server.