active questions tagged stub - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:59:40Z http://stackoverflow.com/feeds/tag/stub http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797749/rhino-mocks-stub-one-method-of-class-and-let-other-real-methods-use-this-stubbe 1 Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one Buthrakaur 2009-11-25T15:35:49Z 2009-11-25T19:43:25Z <p>I have TimeMachine class which provides me current date/time values. The class looks like this:</p> <pre><code>public class TimeMachine { public virtual DateTime GetCurrentDateTime(){ return DateTime.Now; }; public virtual DateTime GetCurrentDate(){ return GetCurrentDateTime().Date; }; public virtual TimeSpan GetCurrentTime(){ return GetCurrentDateTime().TimeOfDay; }; } </code></pre> <p>I'd like to use TimeMachine stub in my tests in such way that I'd just stub the GetCurrentDateTime method and let the other 2 methods use the stubbed GetCurrentDateTime method so as I don't have to stub all the three methods. I tried to do write the test like this:</p> <pre><code> var time = MockRepository.GenerateStub&lt;TimeMachine&gt;(); time.Stub(x =&gt; x.GetCurrentDateTime()) .Return(new DateTime(2009, 11, 25, 12, 0, 0)); Assert.AreEqual(new DateTime(2009, 11, 25), time.GetCurrentDate()); </code></pre> <p>But the test fails. GetCurrentDate returns default(DateTime) instead of using GetCurrentDateTime stub internally.</p> <p>Is there any approach I could use to achieve such behavior or is it just some basic conceptual feature of RhinoMocks I don't catch at the moment? I know I could just get a rid of those two GetDate/Time methods and inline the .Date/.TimeOfDay usage, but I'd like to understand whether this is possible at all...</p> http://stackoverflow.com/questions/1791460/time-out-when-multithreading-requests-to-a-webservice-with-java-and-axis2 0 "Time out" when multithreading requests to a webservice with java and axis2 Sergi 2009-11-24T17:04:07Z 2009-11-24T17:19:37Z <p>Hi,</p> <p>I'm working with a slow webservice (about 4 minutes each request) and I need to do about 100 requests in two hours, so I've decided to use multiple threads. The problem is that I can only have 2 threads, as the stub rejects all the other ones. <a href="http://issues.apache.org/jira/browse/AXIS2-4330" rel="nofollow">Here</a> I've found an explanation and possible solution:</p> <blockquote> <p>I had the same problem. It seems that the source of it is defaultMaxConnectionsPerHost value in MultiThreadedHttpConnectionManager equals 2. Workaround for me was to create own instance of MultiThreadedHttpConnectionManager and use it in service stub, something like in example below</p> </blockquote> <p>I've done as the author said, and passed a HttpClient to the stub with higher <em>setMaxTotalConnections</em> and <em>setDefaultMaxConnectionsPerHost</em> values, but the problem is that now the application freezes (well, it does not really freezes, but It does nothing).</p> <p>Thats my code:</p> <pre><code> public ReportsStub createReportsStub(String url, HttpTransportProperties.Authenticator auth){ ReportsStub stub = null; HttpClient httpClient = null; try { stub = new ReportsStub(url); httpClient = createHttpClient(10,5); stub._getServiceClient().getOptions().setTimeOutInMilliSeconds(10000000); stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, auth); stub._getServiceClient().getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, false); stub._getServiceClient().getServiceContext().getConfigurationContext().setProperty(HTTPConstants.CACHED_HTTP_CLIENT, httpClient); return stub; } catch (AxisFault e) { e.printStackTrace(); } return stub; } protected HttpClient createHttpClient(int maxTotal, int maxPerHost) { MultiThreadedHttpConnectionManager httpConnectionManager = new MultiThreadedHttpConnectionManager(); HttpConnectionManagerParams params = httpConnectionManager.getParams(); if (params == null) { params = new HttpConnectionManagerParams(); httpConnectionManager.setParams(params); } params.setMaxTotalConnections(maxTotal); params.setDefaultMaxConnectionsPerHost(maxPerHost); HttpClient httpClient = new HttpClient(httpConnectionManager); return httpClient; } </code></pre> <p>Then I pass that stub and the request to each one of threads and run them. If I don't set the HttpClient and use the default, only two threads execute, and if I set it, the application does not work. Any idea?</p> http://stackoverflow.com/questions/1784141/how-can-i-provide-an-api-stub-for-an-mef-component 0 How can I provide an API stub for an MEF component? 280Z28 2009-11-23T16:08:13Z 2009-11-23T16:29:46Z <p>The Visual Studio 2010 SDK ships with many assemblies like Microsoft.VisualStudio.Text.Data and Microsoft.VisualStudio.Text.UI that are just stubs. To write an extension for Visual Studio, you reference these assemblies, but set "Copy Local" and "Exact Version" properties of the references to false. When your extension is loaded in Visual Studio, the references are bound to Visual Studio's previously loaded internal implementation of these assemblies.</p> <p>I'd like to provide a new MEF exported component that acts as a Visual Studio service that other MEF packages can <code>[Import]</code>. To use the service, the other components will need to reference my package - but I prefer for them to reference a stub so I can make changes to the internal implementation of my service without breaking other packages that reference it. How can I provide a "stub" assembly containing the publicly visible API components from some arbitrary assembly, such that if you reference the stub it will seamlessly work with the provided implementation at runtime?</p> http://stackoverflow.com/questions/860187/access-restriction-on-class-due-to-restriction-on-required-library-rt-jar 1 Access restriction on class due to restriction on required library rt.jar? sal 2009-05-13T20:16:26Z 2009-11-23T05:55:30Z <p>I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should just compile as long as the runtime jars are available (they are).</p> <p><code>Access restriction: The type QName is not accessible due to restriction on required library C:\Program Files\Java\jdk1.5.0_16\jre\lib\rt.jar</code></p> <p>The full classname is <code>javax.xml.namespace.QName</code></p> <p>What exactly is going on here? </p> <p>Is this a case where I am trying to refactor a pig from sausage? Am I better off recreating the stubs?</p> http://stackoverflow.com/questions/1742888/faking-web-requests-in-rails-test-without-fakeweb 0 Faking web requests in Rails test without Fakeweb Poor Lil Rich Boy 2009-11-16T15:26:52Z 2009-11-20T17:36:02Z <p>I'm using the Handsoap gem with Httpclient gem as the driver in a Rails app.</p> <p>How can I prevent network calls from Handsaop/Httpclient gems in test cases?</p> <p>FakeWeb doesn't support Httpclient.</p> http://stackoverflow.com/questions/91443/amazon-s3-standalone-stub-server 3 Amazon S3 standalone stub server Greg Hewgill 2008-09-18T10:19:46Z 2009-11-16T22:57:46Z <p>I seem to recall reading about an Amazon S3-compatible test server that you could run on your own server for unit tests or whatever. However, I've just exhausted my patience looking for this with both Google and AWS. Does such a thing exist? If not, I think I'll write one.</p> <p>Note: I'm asking about Amazon S3 (the storage system) rather than Amazon EC2 (cloud computing).</p> http://stackoverflow.com/questions/1620038/alter-initial-visual-studio-code-behind-stub-code 2 Alter initial Visual Studio code behind stub code? peiklk 2009-10-25T04:47:48Z 2009-10-25T04:56:43Z <p>When I add a new form to an ASP.NET project (WebForms), and then "View Code" some basic stub code is added -- basic "using" statements, form_load event, etc.</p> <p>So the first thing I have to do is add some project usings, etc. Is there anyway to alter this canned code to what I want, vs. what it puts up by default?</p> <p>Would templates be the answer?</p> <p>TIA Kevin</p> http://stackoverflow.com/questions/1599867/use-reflection-stub-to-initialize-a-delegate-field-lazily 0 Use reflection stub to initialize a delegate field lazily BlackStar 2009-10-21T10:08:43Z 2009-10-21T10:48:44Z <p><strong>The problem:</strong></p> <ul> <li><p>a .Net 2.0 class with a few thousand delegate fields generated by a code generator</p> <ol> <li>varying signatures</li> <li>delegates may or may not return values</li> <li>no generics</li> </ol></li> <li><p>these delegates much be initialized quickly at runtime</p> <ol> <li>initializing a delegate is simple but <em>expensive</em></li> <li>initializing the whole lot costs ~300ms right now - acceptable, but not perfect</li> <li>the user will likely use less than 10% of those delegates - it would be <em>much</em> faster if we could load only those delegates lazily! (don't pay for what you don't use)</li> </ol></li> </ul> <p><strong>The question:</strong></p> <p>Is it possible to use reflection to initialize a delegate field lazily? In pseudo-code:</p> <pre><code>class Delegates { int FooDelegate(IntPtr p1, float* p2); public static FooDelegate Foo; // Several thousand more ... static Delegate LoadDelegate(string name, Type signature) { // complex and expensive p/invokes } static void SetupStubs() { // Create loader stubs (using reflection because // JIT times are prohibitive when done inline) foreach (FieldInfo f in typeof(Delegates) .GetFields(BindingFlags.Static | BindingFlags.NonPublic)) { // We need to generate a compatible delegate, which: // (a) calls LoadDelegate("Foo", typeof(FooDelegate)), and // (b) assigns its result to the Foo field (replacing the stub), // (c) executes Foo(p1, p2) and returns the result, where // p1 and p2 are the original parameters specified by the user. Delegate stub = ...; f.SetValue(null, stub); } } } </code></pre> <p>I have a feeling that it <em>is</em> possible to create a stub that performs (a), (b) and (c), but I haven't managed to divine <em>how</em>.</p> <p>Ideally, the code should run .Net 2.0 and Mono 2.0 and should <em>not</em> use System.Reflection.Emit. However I'd also be interested in solutions using .Net 3.5 or DynamicMethod.</p> <p>Any ideas? :)</p> http://stackoverflow.com/questions/1589149/where-can-i-find-ejb-wrapper-and-remotedynamicstub-classes 0 Where can I find ejb _*_Wrapper and __*_Remote_DynamicStub classes? Draemon 2009-10-19T14:54:07Z 2009-10-19T14:54:07Z <p>I've got a fairly boring stateful session bean called <code>MyEJB</code>, and I'm using Glassfish 2.1 and javaws. Everything works fine, except method calls which return a lot of data are taking an inordinately long time. Wireshark tells me the network communication is over pretty quickly, so the problem is on the client side...in the stub. Using a number of profilers I can see that the following classes are eating up all the time:</p> <p><code>_MyEJB_Wrapper</code> <code>__MyEJB_Remote_DynamicStub</code></p> <p>But I can't find them anywhere. I was going to decompile them with <code>jad</code> to look for clues. I've dumped the classpath and searched through it, I've looked through <code>~/.java/deployment/cache</code> and I've come to a dead end.</p> <ul> <li>Is there anywhere I can see the generated sub code?</li> <li>How are these classes being found if they're not in the classpath?</li> <li>Does anyone know why the stub might be taking so long to return?</li> </ul> http://stackoverflow.com/questions/1575218/whats-the-best-way-to-fill-pocos-with-dummy-data 0 What's the best way to fill POCOs with dummy data? Daniel T. 2009-10-15T21:33:25Z 2009-10-15T21:37:07Z <p>I have a bunch of POCOs that all relate to each other in a big tree. For example, this is the top-level element:</p> <pre><code>public class Incident : Entity&lt;Incident&gt; { public virtual string Name { get; set; } public virtual DateTime Date { get; set; } public virtual IEnumerable&lt;Site&gt; Sites { get; set; } public Incident() { Sites = new HashSet&lt;Site&gt;(); } } </code></pre> <p>The tree goes something like <code>Incident -&gt; Sites -&gt; Assessments -&gt; Subsites -&gt; Images</code>. The POCO's don't have any logic, just a bunch of properties. What I want to do is just fill every property with random dummy data so I can write some search code. What's the best way of doing this if I want to create a large number of dummy data?</p> http://stackoverflow.com/questions/316294/rspec-how-to-stub-an-instance-method-called-by-constructor 3 rspec: How to stub an instance method called by constructor? Pedro 2008-11-25T03:34:40Z 2009-10-11T05:25:56Z <pre><code>class A def initialize @x = do_something end def do_something 42 end end </code></pre> <p>How can I stub <code>do_something</code> in rspec, before the original implementation is called (thus assigning 42 to <code>@x</code>)? And without changing the implementation, of course.</p> http://stackoverflow.com/questions/919544/how-to-stub-mock-jdbc-resultset-to-work-both-with-java-5-and-6 2 How to stub/mock JDBC ResultSet to work both with Java 5 and 6? Touko 2009-05-28T07:05:11Z 2009-10-08T12:24:41Z <p>Hi,</p> <p>I'm testing some of my classes working with JDBC statements etc and now I got problem with JDBC ResultSet interface:</p> <p>The software should run both with Java 5 and Java 6 and hence the tests should also be run with both versions. Unfortunately Java 6 has introduced a bunch of new methods (which is still not a big deal) that return a bunch of new classes/interfaces, which makes the things more difficult. (see <a href="http://blog.punchbarrel.com/2008/09/23/java-6-breaks-jdbc/" rel="nofollow">Frank Carver’s Punch Barrel - Java 6 breaks JDBC</a> for example)</p> <p>Before finding out these version differences, I considered between stubbing and mocking and ended up with stubbing because the ResultSet has internal state (current row handled) that is more natural to me to work with stubs, as :</p> <pre><code>public class StubResultSet implements ResultSet { private Object[][] data; private int currentRow = -1; private boolean closed = false; public StubResultSet(Object[][] data) { this.data = data; } public Object getObject(int columnIndex) throws SQLException { checkClosed(); return data[currentRow][columnIndex]; } public String getString(int columnIndex) throws SQLException { checkClosed(); return (String) getObject(columnIndex); } // ... } </code></pre> <p>But if I don't introduce the new methods as <code>public NClob getNClob(int columnIndex)</code>, the class is broken under Java 6 - if I introduce them the class in broken under Java 5.</p> <p>I can work with mockito (for example) callbacks to have the state being reflected with the return values but does somebody have some other - maybe more nice - idea?</p> http://stackoverflow.com/questions/1534411/groovy-mocks-with-abstract-methods 1 groovy mocks with abstract methods Jeff Storey 2009-10-07T21:45:32Z 2009-10-08T03:44:47Z <p>I have a Java object called Parameter and I'm trying to mock it using groovy. Parameter is an abstract class with 1 abstract method. It also has a non-abstract method called getName(). I'm trying to mock it as follows in Groovy:</p> <pre><code> def p1 = [name:{"p1Name"}] as Parameter </code></pre> <p>But I get a runtime error because I don't implement the abstract method. If I'm trying to create a mock, why would I need to implement the abstract method?</p> <p>thanks, Jeff</p> http://stackoverflow.com/questions/1408673/create-an-instance-of-an-asmx-stub-object-from-a-real-object 0 Create an instance of an ASMX stub object from a real object Jason Coyne 2009-09-11T02:10:15Z 2009-09-12T16:32:04Z <p>I have an ASMX web service that exposes several objects. I have a real instance of that object, and I would like to instantiate a stub object that is populated from it. Clearly there is such functionality already, because when the web service returns a value it is creating the stub and populating it. I just need to do the same thing manually.</p> <p>Ideas?</p> http://stackoverflow.com/questions/480162/tdd-stub-mock-or-none-of-the-above 3 TDD: Stub, Mock, or None of the Above eyston 2009-01-26T15:29:02Z 2009-09-06T20:01:20Z <p>Hello,</p> <p>I'm trying to learn TDD by applying it to a simple project of mine. Some details (and an earlier question) are here:</p> <p><a href="http://stackoverflow.com/questions/473679/tdd-help-with-writing-testable-class">http://stackoverflow.com/questions/473679/tdd-help-with-writing-testable-class</a></p> <p>The specifics are I have a PurchaseOrderCollection class that has a private List of PurchaseOrders (passed in at constructor), and the PurchaseOrders have a boolean property IsValid. The PurchaseOrderCollection has a property HasErrors that returns a true if any PurchaseOrders in the list have IsValid as false. This is the logic I want to test.</p> <pre><code>[TestMethod] public void Purchase_Order_Collection_Has_Errors_Is_True_If_Any_Purchase_Order_Has_Is_Valid_False() { List&lt;PurchaseOrder&gt; orders = new List&lt;PurchaseOrder&gt;(); orders.Add(new PurchaseOrder(--some values to generate IsValid false--)); orders.Add(new PurchaseOrder(--some values to generate IsValid true--)); PurchaseOrderCollection collection = new PurchaseOrderCollection(orders); Assert.IsTrue(collection.HasErrors); } </code></pre> <p>This is similar to my previous question in that this test is too coupled in that I have to know the logic of what makes a PurchaseOrder IsValid false or true to pass the test, when really this test shouldn't care. The question is different (imo) in that the classes themselves aren't the problem.</p> <p>Essentially I want to be able to declare a PurchaseOrder that has IsValid false or true without knowing anything more about what a PurchaseOrder is.</p> <p>From my limited TDD knowledge, this is something you use Stubs or Mocks for. My main question, is this correct? Or should I be using a different method for this? Or am I completely flawed and am just writing this test and thinking about it wrong?</p> <p>My initial thought was to just use some kind of mock framework and create a PurchaseOrder that always returns true or false. From what I've read though, I'd need to declare IsValid virtual. So my second thought was to change it to add IPurchaseOrder as an interface for PurchaseOrder and just create a fake PurchaseOrder that always returns false or true. Are both of these valid ideas?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1067499/using-rmic-in-netbeans 1 using rmic in netbeans jezhilvalan 2009-07-01T06:02:17Z 2009-09-03T12:13:41Z <p>I have written rmi server code in netbeans 6.5. how can i use rmic in netbeans 6.5 so that i can create server_stub class?</p> http://stackoverflow.com/questions/765437/is-it-legal-to-stub-the-class-method-of-a-mock-object-when-using-rspec-in-a-ruby 0 Is it legal to stub the #class method of a Mock object when using RSpec in a Ruby on Rails application? MiniQuark 2009-04-19T13:42:46Z 2009-08-29T12:00:01Z <p>I would like to stub the #class method of a mock object:</p> <pre><code>describe Letter do before(:each) do @john = mock("John") @john.stub!(:id).and_return(5) @john.stub!(:class).and_return(Person) # is this ok? @john.stub!(:name).and_return("John F.") Person.stub!(:find).and_return(@john) end it.should "have a valid #to field" do letter = Letter.create!(:to=&gt;@john, :content =&gt; "Hello John") letter.to_type.should == @john.class.name letter.to_id.should == @john.id end [...] end </code></pre> <p>On line 5 of this program, I stub the #class method, in order to allow things like @john.class.name. Is this the right way to go? Will there be any bad side effect?</p> <p><em>Edit:</em></p> <p>The Letter class looks like this:</p> <pre><code>class Letter &lt; ActiveRecord::Base belongs_to :to, :polymorphic =&gt; true [...] end </code></pre> <p>I wonder whether ActiveRecord gets the :to field's class name with <code>to.class.name</code> or by some other means. Maybe this is what the class_name method is ActiveRecord::Base is for?</p> http://stackoverflow.com/questions/1306126/creating-blackberry-method-stubs-using-wscompile-on-wsdl-from-coldfusion 1 Creating BlackBerry method stubs using wscompile on WSDL from ColdFusion Jim B 2009-08-20T13:17:56Z 2009-08-27T18:05:22Z <p>I have been working on a BlackBerry application that consumes web services from ColdFusion 7. The Java ME SDK and the Java Wireless Toolkit both require that the generated WSDL be of the document/literal type.</p> <p>Fortunately, I have input on the web service development so I tried setting 'style="document"' in the cfcomponent tag. This generated a document/literal style WSDL but now wscompile generates the following errors in several places:</p> <p>Found unknown simple type: javax.xml.soap.SOAPElement Found unknown simple type: java.util.Calendar</p> <p>Any ideas why this is happening?</p> <p>The WSDL does get parsed correctly by the JWSDP tool but the stubs use namespaces that are not available in the J2ME platform. I would have thought ColdFusion WSDL would work more easily with other products in the Java family.</p> http://stackoverflow.com/questions/1262452/autogeneration-of-tests-and-stubs-with-cunit 0 Autogeneration of tests and stubs with CUnit. Srinath 2009-08-11T19:38:13Z 2009-08-11T19:45:24Z <p>Does anybody know of a free/commercial tool that would automatically generate tests and stubs for C code to work with CUnit framework?</p> http://stackoverflow.com/questions/1219274/usage-of-assert-inconclusive 1 Usage of Assert.Inconclusive Johannes Rudolph 2009-08-02T17:01:38Z 2009-08-03T19:53:45Z <p>Hi,</p> <p>Im wondering how someone should use Assert.Inconclusive().</p> <p>I'm using it if my Unit test would be about to fail for a reason other than what it is for. E.g. i have a method on a class that calculates the sum of an array of ints. On the same class there is also a method to calculate the average of the element. It is implemented by calling sum and dividing it by the length of the array.</p> <p>Writing a Unit test for Sum() is simple. However, when i write a test for Average() and Sum() fails, Average() is likely to fail also.</p> <p>The failure of Average is not explicit about the reason it failed, it failed for a reason other than what it should test for. </p> <p>That's why i would check if Sum() returns the correct result, otherwise i Assert.Inconclusive().</p> <p>Is this to be considered good practice? What is Assert.Inconclusive intended for? Or should i rather solve the previous example by means of an Isolation Framework?</p> http://stackoverflow.com/questions/931845/mocking-a-method-that-returns-a-sealed-class-in-rhinomocks 0 Mocking a method that returns a sealed class in RhinoMocks ripper234 2009-05-31T11:01:22Z 2009-07-20T06:12:46Z <p>Running this code:</p> <pre><code>_foo = MockRepository.GenerateStub&lt;IBar&gt;(); _foo.Stub(x =&gt; x.Foo()).Return("sdf"); </code></pre> <p>When</p> <pre><code>public interface IBar { string Foo(); } public class Bar : IBar { public string Foo() { throw new NotImplementedException(); } } </code></pre> <p>throws NotSupportedException - "Can't create mocks of sealed classes". I understand why you can't mock a sealed class (although there are solutions in TypeMock), but what's the problem with mocking a class that returns a sealed class (string) ?</p> http://stackoverflow.com/questions/1119721/duplicate-file-name-for-same-wsdl-namespace-when-using-web-service-from-differe 1 "Duplicate file name" for same WSDL namespace when using web-service from different sub-domains Sergii 2009-07-13T14:19:22Z 2009-07-14T15:23:39Z <p><strong>Preface</strong></p> <p>We are providing customers with our service API. </p> <p>Each customer has own subdomain (e.g. sergii.ourwebsite.com) and own WSDL URL, it looks like <a href="http://sergii.ourwebsite.com/api/bsapi.cfc?wsdl" rel="nofollow">http://sergii.ourwebsite.com/api/bsapi.cfc?wsdl</a></p> <p>Also, all the websites (including API, of course) using the same codebase.</p> <p><br /></p> <p><strong>Problem</strong></p> <p>Say, two applications on same CF-server. This can easily happen, because some of customer websites are hosted on our servers.</p> <p>Both trying to use own API WSDL, say:</p> <pre><code>http://sergii.ourwebsite.com/api/bsapi.cfc?wsdl http://galashyn.ourwebsite.com/api/bsapi.cfc?wsdl </code></pre> <p>And here come the problems.</p> <p>When second website tries to register the web-service, CF throws an error:</p> <blockquote> <p>Name: <a href="https://galashyn.ourwebsite.com/api/bsapi.cfc?wsdl" rel="nofollow">https://galashyn.ourwebsite.com/api/bsapi.cfc?wsdl</a>. WSDL: <a href="https://galashyn.ourwebsite.com/api/bsapi.cfc?wsdl" rel="nofollow">https://galashyn.ourwebsite.com/api/bsapi.cfc?wsdl</a>. org.apache.axis.wsdl.toJava.DuplicateFileException: Duplicate file name: /opt/coldfusion8/stubs/WS1985941973/api/Bsapi.java. Hint: you may have mapped two namespaces with elements of the same name to the same package name. It is recommended that you use a web browser to retrieve and examine the requested WSDL document to ensure it is correct. If the requested WSDL document cannot be retrieved or is dynamically generated, it is likely that the target web service has programming errors.</p> </blockquote> <p>Problem is that both of them are using same WSDL namespace, built from CFC path:</p> <pre><code>&lt;wsdl:definitions targetNamespace="http://api"&gt; </code></pre> <p><br /></p> <p><strong>Current solution</strong></p> <p>The only working solution for us is using the CFC aliases, like:</p> <pre><code>http://galashyn.ourwebsite.com/api/v1n1/bsapi.cfc?wsdl http://galashyn.ourwebsite.com/api/v1n1/bsapi.cfc?wsdl </code></pre> <p>Each this CFC extends the parent like this:</p> <pre><code>&lt;cfcomponent output="false" extends="api.bsapi"&gt; &lt;!--- this component used to extend base api version 1.x ---&gt; &lt;/cfcomponent&gt; </code></pre> <p>They produce different namespaces, which can be used without problems -- own namespace for each application:</p> <pre><code>&lt;wsdl:definitions targetNamespace="http://v1n1.api"&gt; &lt;wsdl:definitions targetNamespace="http://v1n2.api"&gt; </code></pre> <p><br /></p> <p>This is pretty dumb workaround, but it works for now.</p> <p><br /></p> <p>Other solution would be to use the single API sub-domain and identifying the customers by some key (we are already using them for security purposes), but it has serious negative problems for us because of some legacy code.</p> <p><br /></p> <p>Please note that I don't know Java, so many specific advices are not so clear for me. </p> <p>Google shows that this problem exists for years, but I can't find the smart solution. </p> <p>So maybe here?</p> http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output 1 How-to do unit-testing of methods involving file input output? Iulian Șerbănoiu 2009-07-10T19:00:37Z 2009-07-10T20:20:10Z <p>Hello,</p> <p>I'm using C++Test from Parasoft for unit testing C++ code. I came across the following problem. I have a function similar to the next one (pseudocode):</p> <pre><code>bool LoadFileToMem(const std::string&amp; rStrFileName) { if( openfile(rStrFileName) == successfull ) { if( get_file_size() == successfull ) { if( read_entire_file_to_buffer() == successfull ) { return true; } return false; } return false; } return false; } </code></pre> <p>My questions in this case are:</p> <p>Should I use stubs for file system functions? Or should I include specific sample test files for running the unit tests?</p> <p>In my case <a href="http://www.cplusplus.com/reference/iostream/fstream/" rel="nofollow">std::fstream</a> class is used for file input.</p> <p>Has anyone better suggestions? (Best if done in C++Test but not mandatory)</p> <p>Thank you,</p> <p>Iulian</p> http://stackoverflow.com/questions/1107217/when-to-expect-and-when-to-stub 3 When to Expect and When to Stub? Jeff Sternal 2009-07-10T01:02:59Z 2009-07-10T01:26:21Z <p>I use NMock2, and I've drafted the following NMock classes to represent some common mock framework concepts:</p> <ul> <li><p><code>Expect</code>: this specifies what a mocked method should return and says that the call must occur or the test fails (when accompanied by a call to <code>VerifyAllExpectationsHaveBeenMet()</code>).</p></li> <li><p><code>Stub</code>: this specifies what a mocked method should return but cannot cause a test to fail.</p></li> </ul> <p>So which should I do when?</p> <p>I'm starting to understand <a href="http://martinfowler.com/articles/mocksArentStubs.html" rel="nofollow">why behavior verification can be just as important as state verification</a>. That is, I now see why we should do 'white box testing' in addition to 'black-box testing.' If I write automated unit tests for a <code>Presenter</code> in an MVP application, I often need to mock calls to my business layer in order to test the Presenter's methods. For example, I might want to test that the presenter's <code>OnSave</code> method calls the Business Layer's <code>Save</code> method, but only when a certain condition is met. After all, the presenter's job is do exactly that: it calls the business layer, it does not perform the save itself. Therefore, I use <code>Expect</code> to specify what that I want the presenter to call the business layer and conclude my unit test by checking that this was the case using <code>VerifyAllExpectationsHaveBeenMet</code>.</p> <p>The problem is, now I feel like I just drank the Kool-Aid and can't see any legitimate use case for <code>Stubbing</code> interface calls. Often I would <em>love</em> to <code>Stub</code> these calls and omit the concluding <code>VerifyAllExpectationsHaveBeenMet</code> (especially because this places a tremendous burden on the test writer to account for all external calls) ... but I can't tell implementation details apart from important testable behavior anymore.</p> <p>On top of that, when refactoring methods tested with <code>Stub</code> calls, you risk orphaning those calls, polluting your unit tests and ensuring that heads are scratched forevermore.</p> <p>How do you decide when to <code>Stub</code> and when to <code>Expect</code>?</p> http://stackoverflow.com/questions/1076263/teaching-testing-habits-to-other-developers 6 Teaching testing habits to other developers? cwash 2009-07-02T19:33:16Z 2009-07-06T14:38:10Z <p>Developers have many different options out there to create fast and relatively maintainable unit test suites. But this takes a great deal of knowledge involved in decoupling modules of code, isolating the code under test within its test context, and using test doubles (stubs, fakes, mocks). What's more confusing is that within the concept of doubling itself, there are many different approaches that are vastly different from one another:</p> <ul> <li>Using dynamic languages/metaprogramming or instrumentation approaches to override implementations of methods (even static methods or initializers) for the duration of a test run.</li> <li>Interaction based approaches based on defining expectations and recording expected calls on doubles.</li> <li>Using "fake" double implementations provided for testing with a third-party framework you're using.</li> <li>Creating your own stubs.</li> </ul> <p>This means while someone may be familiar with the "mock" objects (I prefer to call these fakes) provided by SpringMVC, for instance, some interaction-based mocking code can leave the same person scratching their head. (<a href="http://www.youtube.com/watch?v=l1wKO3rID9g" rel="nofollow">Is this what happened to Hitler's developers?</a>) </p> <p>My experience has been (and I suspect others have seen this, too) that very few developers are familiar with this requisite knowledge, and even fewer have enough expertise to develop suites that are somewhat maintainable. (Let's face it, maintainability is a very relative term when we're talking about tests!) Furthermore, often I'll see developers break a test they aren't familiar with and their first instinct is to comment it out rather than fix the test or the code that is broken. Time is often lost in the long-run, but it seems less painful initially.</p> <p><strong>On your team, how have you dealt with educating and addressing maintenance problems that come about when we don't understand each others' test code?</strong></p> http://stackoverflow.com/questions/1066140/how-do-you-stub-an-individual-method-in-java-for-unit-testing 0 How do you stub an individual method in java for unit testing? johnswamps 2009-06-30T21:21:00Z 2009-06-30T22:06:00Z <p>I've got a method in a class that's writing to some string, which calls another method which does the same. Something like:</p> <pre><code>void foo() { a += "xyx"; bar(); } void bar() { a += "abc"; } </code></pre> <p>For unit testing purposes, I want to test foo and bar separately. Is there any way to prevent bar from being run when I call foo() or to replace it with another method?</p> http://stackoverflow.com/questions/1042900/django-unit-testing-with-date-time-based-objects 2 Django unit testing with date/time-based objects Fragsworth 2009-06-25T09:35:09Z 2009-06-26T05:11:33Z <p>Suppose I have the following <code>Event</code> model:</p> <pre><code>from django.db import models import datetime class Event(models.Model): date_start = models.DateField() date_end = models.DateField() def is_over(self): return datetime.date.today() &gt; self.date_end </code></pre> <p>I want to test <code>Event.is_over()</code> by creating an Event that ends in the future (today + 1 or something), and stubbing the date and time so the system thinks we've reached that future date.</p> <p>I'd like to be able to stub ALL system time objects as far as python is concerned. This includes <code>datetime.date.today()</code>, <code>datetime.datetime.now()</code>, and any other standard date/time objects.</p> <p>What's the standard way to do this?</p> http://stackoverflow.com/questions/1010392/library-to-create-java-stubs-for-webservice 2 Library to create java stubs for webservice. Oscar Reyes 2009-06-18T01:47:23Z 2009-06-18T21:18:03Z <p>Hello. </p> <p>I would like to know if anyone can recommend a good library to generate java webservices stubs as clients. </p> <p>Currently I'm using a product which has embedded a generator which only needs the WSDL and then creates the needed classes and methods. </p> <p>My problems is it throws warnings and doesn't create any method for some webservices I'm trying to use. </p> <p>The real problem is it doesn't explain what the problem is ( so I can go with the owner of the webservice and have it modified ) nor let me modify the ouput so I can probably fix the problem my self. </p> <p>Yet, the owners of the webservices ( because this happens with several different ws ) say their ws runs fine and actually if I use <a href="http://www.soapui.org/" rel="nofollow">soapUI</a> they actually work!!! </p> <p>I took a quick look at the libraries used by soapUI it self and I looks promising.</p> <p><strong>I know there is <a href="http://ws.apache.org/axis/" rel="nofollow">Axis</a> which should do the work, but my concern is that my failing generator is using that library already ( which makes me thing it will fail again )</strong></p> <p>And lately I don't know if these two libraries generate the java source stub or only have methods like </p> <pre><code>Object [] args = ...; service.inkvoke("updateCustomer", args ); </code></pre> <p>When what I would like to have is something like: </p> <pre><code>CustomerWs cws = .... cws.updateCustomer(custId, custName, custAddress /*etc*/ ); </code></pre> <p>So, anyone has a <strong>GOOD</strong> ws stubs generator that can recommend?</p> <p><sub>I'm about to handcode my own, but it will definitely take several days to be acceptable</sub></p> http://stackoverflow.com/questions/236086/parsing-c-to-generate-unit-test-stubs 3 Parsing C++ to generate unit test stubs Dave Hillier 2008-10-25T08:14:04Z 2009-06-17T15:08:26Z <p>I've recently been trying to create units tests for some legacy code.</p> <p>I've been taking the approach of using the linker to show me which functions cause link errors, greping the source to find the definition and creating a stub from that. </p> <p>Is there an easier way? Is there some kind of C++ parser that can give me class definitions, in some easy to use form, from which I can generate stubs?</p> http://stackoverflow.com/questions/852550/installing-net-framework-from-usb-drive-when-necessary 0 Installing .NET framework from USB drive when necessary. CDR 2009-05-12T12:38:06Z 2009-05-12T13:13:05Z <p>We have a .NET application that will be distributed through USB drive. End users will connect the drive and double click on the EXE (a .NET exe) to run it WITHOUT installing it.</p> <p>Now the problem is, if .NET is not installed we would like to trigger the .NET installer instead of showing the default download message that MS has put there. The installer will be distributed with the application through the USB.</p> <p>One way to do it might be by replacing the PE stub file in the .NET executable. But I am not seeing and /STUB switch in C# compiler (though C compilers had it).</p> <p>Anything else anyone can think of?</p> <p>Update: Thanks to Tim Robinson, I understand that Windows doesn't process the PE stub file. Therefore the ClickOnce solution seems the only viable one left. I shall be checking ClickOnce.</p>