Wednesday, March 26, 2014

Vaadin, Guice and Quartz

Progress

I can't believe it is so long since I posted to this blog.  I guess I must have been busy!

Those who have read previous posts will know that I have been working on a project called V7 to provide Vaadin, Guice and Shiro integration, with some I18N and navigation support thrown in.

Making Time(r)?

Quartz has become a popular scheduler for Java, and I wanted something to test my V7 design to ensure that I could integrate and add in a library without too much difficulty.

I have recently committed an implementation for this, so there now also an optional V7 library for Quartz, already integrated with Guice.

Observations

I do find some of the Quartz API a little strange, but despite that the integration seems to be fairly robust.  And to be fair, I guess Quartz is popular for a reason - it works!

One thing which I find strangely missing (and I know I am not alone) is the ability to define dependencies between jobs.  

But .. it works, and is now integrated with V7.

Sunday, November 24, 2013

JUnit asserts and assertThat

Keeping it simple

Now let's be honest, how many of us enjoy writing tests?  They are pretty tedious, even if some of the results are a bit of a surprise!  After all, the last thing we want is for writing tests to be a challenge - as soon as that happens, the test code is likely to need as much debugging as the code under test.

So the simpler it is to write clear tests the better ...

The path to fluency

Like most developers, I started off using JUnit's Assert methods ... assertEquals, assertTrue etc.  I went to TestNG for a while, and frequently got the expected and actual values the wrong way round.

A while ago, I found Fest "fluent" assertions, then at version 1.4.  I was much happier with that, and found that the claim to fluency was generally valid, and certainly led to more meaningful test failure messages.

But 1.4 was being retired, and 2.0 under development.  I tried early versions of 2.0 and there seemed to be some issues with type recognition, requiring some odd casting.  To be fair, these were milestone versions of Fest and these issues may have been fixed before 2.0 was released.

In the meantime I stumbled across the native JUnit assertThat() method, with Hamcrest matchers, being shipped with JUnit.  I hadn't noticed when this was first released, but I thought it may be a good time to migrate back to native JUnit.

Er, no. It wasn't.  Although the intent of JUnit assertThat() is similar to Fest, I quickly found that I was getting tangled up with the syntax, even allowing time for changing away from Fest.  I then found AssertJ, a fork from Fest 2.0 which seems to be more open to extending what can be "asserted".  So that's where I've ended up, and I am back to being nearly fluent again.

So what's the difference?

It's actually quite hard to quantify why I prefer AssertJ/Fest 2.0, except that it feels more natural - and it does seem that IDE auto-complete gets better results.  This is all purely subjective, and you may find it otherwise.

Fest 2.0 is practically identical in use to AssertJ, but AssertJ seems to be more open to extending the library... and let's face it there are plenty of things to test. 

Having said that, I am certain that all the assertThat() implementations (AssertJ, Fest, Hamcrest) are far more readable (and writeable)  than the original JUnit  Assert statements and all can be extended with custom matchers.

So if you want get more out of writing tests, I'd recommend giving AssertJ a try ... and if you are still using assertEquals, definitely give at least one of the assertThat() implementations a try.

Saturday, July 27, 2013

Running a single test in Gradle

Although very simple I had trouble finding the syntax for this.

gradle -Dtest.single=MyTest test

Saturday, July 6, 2013

Vaadin 7, Views and a Sitemap (part 2)

Time Flies

I can't believe it is so long since I last posted.  Holidays come and go, and eventually the sun came out.  In my part of the northern hemisphere anyway!

Progress

I described the idea of a Sitemap to define the structure of a site in my last post.  I did actually then get round to writing the documentation - and rather unusually wrote it before developing the code.

I won't repeat that documentation here, hopefully that is clearly enough written (although questions and feedback are always welcome either here or on the forum).

So I now have a Sitemap and associated options, which can be used to generate a set of standard pages, mostly to to with user account management.  More importantly, it lets you describe the structure of your site fairly simply - making good use, I believe, of the main components of Vaadin, Guice and Shiro to simplify development.

It comes with a user navigation tree, created automatically from the Sitemap to enable the user to find their way around.  Eventually, there will also be a breadcrumb to go with it ...

Tutorial

I am in the process of creating a tutorial, which I hope will make things even clearer ....

Tuesday, May 14, 2013

Vaadin 7, Views and a sitemap

The Start Point

I needed to start on another application - a small one, but one which would benefit from the work I had done on V7.  So I started to build the app (and re-write some of the documentation, of which there is still more to do).

I was quite pleased with the speed with which I had a skeleton app with the core features of V7.

But I dislike writing the same code twice (or writing code once which has already been written and tested by someone else!)

I should say here that I still think Vaadin is a great product, I am just building on it for a particular set of, hopefully, common use cases. 

The "Problem"

When I looked at how I had structured V7, I could see that I was in danger of duplicating page related definitions.   There was still a strong chance of mismatches occurring between URL and View mapping, and navigation components.  And in my view, anything dependent on accurate typing of String literals is likely to cause a maintenance problem at some point.

I felt it was an improvement on the standard Vaadin 7 - but there was room for improvement. 

The Idea

The idea, then was to abstract out the structure of the site into a sitemap.  A sitemap is hardly revolutionary, but in this case it is an input rather than an output.  It acts as the specification of page layout and includes:

URL to View mapping
Packages which contain Views
URL redirection
I18NKey selection
and a fairly comprehensive report

Report

The report identifies a number of sitemap error conditions - things like missing Views, I18NKeys, redirection loops.

Generation

To be honest "Generation" is not strictly the correct word - there is no code generation, but I cannot think of a better term.  

The sitemap created from sitemap.properties is used in a Guice module to map URLs to Views, and is of course available for injection wherever needed.  One obvious use - and the reason I started on this track - is  to use the sitemap with navigation controls.

The sitemap.properties file gives quite a good description of what is needed, but yes, I need to get working on the documentation, too. 



Vaadin 7 I18N - part 2

Completing the I18N Picture

For some reason I forgot to post the fact that I did complete the I18N task I set myself.  Perhaps because it was not quite as difficult as I expected.

When I looked at some of the new Vaadin 7 code, I discovered that the FieldGroup class provided much of what I needed.  (FieldGroup is the successor to the Vaadin 6 Form - and in my opinion, substantially better).

So within V7 now is a reasonably complete I18N approach, though seriously lacking in translations.  For that reason I have not yet added a facility in the demo to switch locales.


Saturday, March 9, 2013

Vaadin and I18N

With or Without Guice

If you have read earlier posts, you will know that my V7 project uses Guice.  The I18N implementation I have developed so far does not use Guice a great deal and would be easy to extract to another DI framework, or manual injection.

Approach

I was trying to come up with a design that would simplify some of the repetitive nature of coding for I18N support.  I came to the conclusion that I would actually need two methods which can be used together, as the developer decides.  The documentation gives a better explanation, but I've summarised it in this post.

Using Annotations

Annotations would seem to be quite a neat way to support I18N.  It means that the I18N key is defined alongside the component to which it relates.  There are limitations, however, particularly if you are using translations with parameters, as there is no easy way to define the parameter values to be used.

I have completed the implementation of the annotation based implementation, and it works quite well for many circumstances.  That includes nested components which also need I18N support.  Vaadin tables also need a little special handling because of course, the column headings would normally be translatable.

The code for this is still in the develop branch, but has reasonably well tested.

Using field factories

There also seems to be an opportunity to provide I18N support using the FieldFactory approach provided by Vaadin.  I haven't started on this work yet.