http://qs321.pair.com?node_id=206862


in reply to Re: Re: Re: Re: accessing EJB from perl
in thread accessing EJB from perl

How the language it typed doesn't matter! You are testing the object. That means you check that the proper values are returned when a sequence of interfaces are called. Or you make sure that the objects writes to the database, or whatever else you have your object doing. What you aren't doing is mixing random bits of Java and perl. As long as you use object, and access the objects through the interfaces, it doesn't matter what language the object or testing program is in.

Look at how well OLE works with perl. A COM/DCOM object is strong typed, but perl is able to call it without problems. There are many production perl scripts that use OLE because it works well. After showing other developers who write COM/DCOM objects how to test them with perl, most of them choose to use perl for their testing (it save a lot of time). Most of these people had fears about testing their COM/DCOM object with perl, but after see how it works and playing with it, those fears have subsided.

I know some people don't like the idea of using several languages at the same time, but there are huge time and maintainability savings to be had when using the right language for the job. I'm personally looking forward to Parrot for it's ability to run Java, .Net, and perl on the same VM, and make it much easier to use objects from other languages.

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: accessing EJB from perl
by ignatz (Vicar) on Oct 21, 2002 at 16:26 UTC
    Objects are made up of fields and methods and in Java these things are typed. Sure, tests that don't deal with this will work just fine 99% of the time, but it's the 1% that worries me. In my book that's where bugs are born.

    Yes, I can write methods within my tests that confirm the types for the fields for each class with Perl, but why would I go through all of these contortions when the language I've written the application in does this for me automatically? Why add to your uncertainty when the whole purpose of testing it to reduce it?

    ()-()
     \"/
      `
    
Re: Re: Re: Re: Re: Re: accessing EJB from perl
by ignatz (Vicar) on Oct 21, 2002 at 21:05 UTC
    I was thinking about this in a drive to and from an interview. If something works for you, that's kewl. It's not the way I would do it, and I would worry if my system relied on it, but to each his/her own. Hey, no matter what, writing tests is a good thing™.

    My main objection to the original post is with using Perl to test Enterprise Java Beans. A part of the EJB 2 standard includes interfaces that are only visible from within the bean itself. That means that no Perl, Resin, XML, HTTP or carrier pidgeon thingamabob is going to be able to test what is going on within those parts of that bean. Bottom line, to me not being able to test your internals is bad, thus relying on Perl to test your EJBs is a bad thing™.

    ()-()
     \"/
      `