Posts Tagged ‘j2ee’

Interview Rubric really needed?

Friday, October 24th, 2008

It’s been a few weeks of job hunting and I haven’t once had to make a decision that my post on interviewing would’ve helped resolve. The fact is, you get a feel almost immediately for a place, and the reasons you say “yes” or “no” have more to do with who you’ll be working with than the number of monitors you get. Usually, a place that’s using ancient COTS products has put up red flags far earlier in the process. And the jobs I get excited about have nothing to do with their use of Git.

Some lowlights:

  • Left waiting for so long, I had to walk out of the interview in order to meet an appointment. The receptionist explained “Well, they have a lot of work to get done!” Good luck with getting it done.
  • A guy giving a tech interview (for a J2EE position) couldn’t understand how a Swing front-end to an EJB/JPA backend could possibly be called J2EE.
  • Being asked a logic question and, as soon as I used the right word while thinking out loud (in this case “tree”), was cut off and we moved to the next question. After 10 minutes of this, he walked out without telling me anything about the company or job.
  • Being offered a job after having No technical questions asked of me. Gee, who else is working there?
  • Interviewing in a place where every single aspect of the work environment was crappier than the crappiest house I’ve ever lived. If I can afford a fresh coat of paint every few years, shouldn’t some “global enterprise solution consulting firm” be able to swing it?
  • A Java development shop using….Visual Source Safe. I think cp Foo.java Foo.java.bak might be better

Of course, there’s been some legitimate highlights as well:

  • Being asked some challenging questions about concurrency and data structures. You may not ever have to implement a linked-list, but anyone should know it and when I’m asked, it’s a definite plus that the people on the other end know what they are doing
  • Being asked to write code. So far, exactly two positions have asked me write code in the interview. Thank god for them, or my faith would be shaken; seriously. I’m always very nervous when I’m applying for a job where I have to write code and no one seems to need any proof that I can do it. It makes me wonder who else is working there
  • Solid explanations of the business or project. I used to think this was a no-brainer, but more often than not, I come away from a second interview with NO IDEA what I’d be doing if I took the job.

Criteria is only useful when you have to narrow down a lot of choices. I’d love to have so many great opportunities that I could just pick the one where I can develop on a Mac, or the one with the nicest office (all other things being equal). Sadly, that is not the case around here. It seems very few of my colleagues are being too particular, and I can’t help wondering what effect it might have on, well, the world if clueless developers were not as employable as it seems they are.

Didn’t do Test-Driven Design? Record your test cases later

Monday, September 8th, 2008

Following on from my post on Gliffy’s blog…

On more than a few occasions, I’ve been faced with making significant refactorings to an existing application. These are things where we need to overhaul an architectural component without breaking anything, or changing the application’s features. For an applicaiton without any test cases, this is not only scary, but ill-advised.

I believe this is the primary reason that development shops hang on to out-dated technology. I got a job at a web development shop after four years of doing nothing but Swing and J2EE. My last experience with Java web development was Servlets, JSPs and taglibs. This company was still using these as the primary components of their architecture. No Struts, no Spring, no SEAM. Why? One reason was that they had no test infrastructure and therefore not ability to refactor anything.

Doing it anyway

Nevertheless, sometimes the benefits outweigh the costs and you really need to make a change. At Gliffy, I was hired to create an API to integrate editing Gliffy diagrams into the workflow of other applications. After a review of their code and architecture, the principals and I decided that the database layer needed an overhaul. It was using JDBC/SQL and had become difficult to change (especially to the new guy: me). I suggested moving to the Java Persistence Architecture (backed by Hibernate), and they agreed. Only problem was how to make sure I didn’t break anything. They didn’t have automated tests, and I was totally new to the application environment.

They did have test scripts for testers to follow that would hit various parts of the application. Coming from my previous enviornment, that in and of itself was amazing. Since the application communicates with the server entirely via HTTP POST, and recieves mostly XML back, I figured I could manually execute the tests and record them in a way so they could be played back later as regression tests.

Recording Tests

This is suprisingly easy thanks to the filtering features of the Servlet specification:


  recorder
  com.gliffy.test.online.RecordServletFilter





  recorder
  /*

The filter code is bit more complex, because I had to create proxy classes for HttpServletRequest and HttpServletResponse. Here’s an overview of how everything fits together:

The request proxy had to read everything from the requests input stream, save it, and send a new stream that would output the same data to the caller. It had to do the same thing with the Reader. I’m sure it’s an error to use both in the same request, and Gliffy’s code didn’t do that, so this worked well.

private class RecordingServletRequest extends javax.servlet.http.HttpServletRequestWrapper
{
    BufferedReader reader = null;
    ServletInputStream inputStream = null;

    String readerContent = null;
    byte inputStreamContent[] = null;

    public RecordingServletRequest(HttpServletRequest r) { super(r); }

    public BufferedReader getReader()
        throws IOException
    {
        if (reader == null)
        {
            StringWriter writer = new StringWriter();
            BufferedReader superReader = super.getReader();
            int ch = superReader.read();
            while (ch != -1)
            {
                writer.write(ch);
                ch = superReader.read();
            }
            readerContent = writer.toString();
            return new BufferedReader(new StringReader(readerContent));
        }
        return reader;
    }

    public ServletInputStream getInputStream()
        throws IOException
    {
        if (inputStream == null)
        {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            ServletInputStream superInputStream = super.getInputStream();
            int b = superInputStream.read();
            while (b != -1)
            {
                os.write(b);
                b = superInputStream.read();
            }
            inputStreamContent = os.toByteArray();
            inputStream = new ByteArrayServletInputStream(inputStreamContent);
        }
        return inputStream;
    }
}

The response recorder was a bit trickier, because I needed to save things like status codes and content types. This implementation probably wouldn’t work for all clients (for example, it ignores any response headers), but since Gliffy is an OpenLaszlo app, and OpenLaszlo has almost no view into HTTP, this worked well for our purposes. Again, I had to wrap the OutputStream/Writer so I could record what was being sent back.

    private class RecordingServletResponse extends HttpServletResponseWrapper
{
    public RecordingServletResponse(HttpServletResponse r)
    {
        super(r);
    }

    int statusCode;
    StringWriter stringWriter = null;
    ByteArrayOutputStream byteOutputStream = null;
    String contentType = null;

    private PrintWriter writer = null;
    private ServletOutputStream outputStream = null;

    public ServletOutputStream getOutputStream()
        throws IOException
    {
        if (outputStream == null)
        {
            byteOutputStream = new ByteArrayOutputStream();
            outputStream = new RecordingServletOutputStream(super.getOutputStream(),new PrintStream(byteOutputStream));
        }
        return outputStream;
    }

    public PrintWriter getWriter()
        throws IOException
    {
        if (writer == null)
        {
            stringWriter = new StringWriter();
            writer = new RecordingPrintWriter(super.getWriter(),new PrintWriter(stringWriter));
        }
        return writer;
    }

    public void sendError(int sc)
        throws IOException
    {
        statusCode = sc;
        super.sendError(sc);
    }

    public void sendError(int sc, String msg)
        throws IOException
    {
        statusCode = sc;
        super.sendError(sc,msg);
    }

    public void setStatus(int sc)
    {
        statusCode = sc;
        super.setStatus(sc);
    }

    public void setContentType(String type)
    {
        contentType = type;
        super.setContentType(type);
    }
}

The filter then needs to use this and inject them into the actual servlet calls:

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
    throws IOException, ServletException
{
    RecordingServletRequest recordingRequest =
      new RecordingServletRequest((HttpServletRequest)request);
    RecordingServletResponse recordingResponse =
      new RecordingServletResponse((HttpServletResponse)response);

    chain.doFilter(recordingRequest,recordingResponse);

After the call to doFilter, we can then examine the proxy request/respons and record the test. I’ll spare you 20 lines of setXXX methods. I created a Java bean class and used XStream to serialize it. I then created another class that runs as a TestNG test to deserialize these files and make the same requests. I record the response and see if it matches.

Running the Tests

There were a few problems with this approach:

  • The tests required certain test data to exist
  • Each test potentially modifies the database, meaning the tests have to be run in the order they were created.
  • The test results had temporal data in them that, while irrelevant to the tests “passing”, complicated exact-match comparisions of results

TestNG (and JUnit) are not really designed for this; they are more for proper unit testing, where each test can be run indepedent of the others and the results compared. While there are facilities for setting up test data and cleaning up, the idea of resetting the database before each of the 300 tests I would record was not appealing. Faking/mocking the database was not an option; I was creating these tests specifically to make sure my changes to the database layer were not causing regressions. I needed to test against a real database.

I ultimately decided to group my tests into logical areas, and ensure that: a) tests were run in a predictable order, and b) the first test of a group was run against a known dataset. I created a small, but useful, test dataset and created a TestNG test that would do both (a) and (b). It wasn’t pretty, but it worked. This clearly isn’t the way a unit test framework should be used, and I would call these sorts of tests functional, rather than unit. But, since our CI system requires JUnit test results as output, and the JUnit format isn’t documented, might as well use TestNG to handle it for me.

The last problem was making accurate comparisons of results. I did not want to have to parse the XML returned by the server. I settled on some regular expressions that stripped out temporal and transient data not relevant to the test. Both the expected and received content were run through this regexp filter and those results were compared. Parsing the XML might result in better failure messages (right now I have to do a visual diff, which is a pain), but I wasn’t convinced that the existing XML diff tools were that useful.

Results

Overall, it worked out great. I was able to completely overhaul the database layer, and the Gliffy client was none the wiser. We were even able to use these tests to remove our dependence on Struts, simplifying the application’s deployment (we weren’t using many features of Struts anyway). The final validation of these tests actually came recently, when we realized a join table needed to be exposed to our server-side code. This was a major change in two key data container, and the recorded tests were crucial to finding bugs this introduced.

So, if you don’t have the luxury of automated tests, you can always create them. I did a similar thing with EJB3 using the Interceptors concept.

Why is J2EE/JBoss configuration such a nightmare?

Monday, November 26th, 2007

I’m glad EJB3 has come along, because it has vastly simplified what you must do to get a J2EE application up and running. It’s not 100% smooth, but it’s a step in the right direction.

That being said, anything beyond simple EJBs and Persistence objects is just such a clusterfuck of configuration, dependencies, undocumented magic strings, masked error messages and XML abuse. Why was XML chosen as a configuration format for what is basically a properties file. What is the advantage of this:


<mbean name="big.fucking.long.whatever">
<attribute name="SomeProperty">some value</attribute>
<attribute name="SomeOtherProperty">another value</attribute>
<attribute name="TimeWastedTypingAngleBrackets">10 hours</attributes>
<attribute name="MoneyWastedPayingForXMLSpy">$10000</attribute>
</mbean>

over this:


big.fucking.long.whatever

SomeProperty=some value
SomeOtherProperty=another value
TimeWastedTypingAngleBrackets=0 seconds
MoneyWastedPayingForXMLSpy=$0

It seems to me that if all we are doing is configuring a set of properties and values, a format similar to the windows .ini format would be much prefered. And, honestly, if we can’t do better than Windows, what the fuck. I guess one thing all three formats have in common is that you have no fucking idea what the attributes mean, which are required or what will happen at runtime.

If you are lucky, you have the mbean source or javadoc (don’t forget to look for is to precede boolean properties and get to precede all others!) Also, fucking this up generated an Oracle-quality error message from JBoss: “Attribute SomeProperty not found”. So, are you looking for SomeProperty and didn’t find it, or did you get it and not want it?

Of course, we could, actually, leverage the power of XML and tools like DTDDoc and XSD Doc and do something like this:


<mbean name="big.fucking.long.whatever">
<SomeProperty>some value</SomeProperty>
<SomeOtherProperty>another value</SomeOtherProperty>
<TimeWastedTypingAngleBrackets>10 hours</TimeWastedTypingAngleBrackets>
<MoneyWastedPayingForXMLSpy>$10000</MoneyWastedPayingForXMLSpy>
</mbean>

This, if backed by a schema, would actually be a nice way to document (and enforce) configuration.

Bonus points to Hibernate for allow properties or XML or MBean configuration and for having the property names different in each fucking format. It seems like a lot of extra work to make them all different.

I’m not saying I want a Microsoft Enterprise Application Wizard, but a little common sense could go a long way.