jakarta-eeejb-3.1openejbjboss-arquillianjacc

EJB 3.1 - implementation of javax.security.auth


As I understand javax.security.auth is an API for authentication and authorization.

I understand that security should be implemented by the container provider and the bean-provider can just use it in his bean my simple annotations (@javax.annotation.security.RolesAllowed, @PermitAll etc) as recommended by the JSR.

My Question: This simply means that security cannot be tested without deploying in the container. Is there a way to use an external 3rd implementation of javax.security which can in someway be injected into the bean from the test from which security can also be propagated and tested?

This is almost a similar approach using which we inject a JPA implementation or a external transaction manager from a unit test into a bean for testing it.

P.S: I just want to check if this is possible and if it is possible, it might open ways to some other development. I understand that this testing can be done easily by deploying the bean in an Embedded container like OpenEJB or Arquillian.


Solution

  • There's quite a lot of plumbing involved in all of this. Trickier parts are:

    So that's what a container does. The work that JAAS and JACC do are really quite small. Certainly not as detail oriented at least.

    None of this can really be "injected" as you might have hoped. Security is effectively an around advice.

    On the surface things like annotation-based security look very simple. However, when you explore all the combinations, caveats and conditions it really adds up. I remember all those details above because I got them all wrong when I first had to implement them. :) Thank goodness for TCKs.

    I wouldn't advise attempting to make your own security testing framework.

    If you do have a particular way that you'd like to see your testing happen, the smartest thing would be to just get involved with OpenEJB or Arquillian.

    All of the coolest features in OpenEJB came from users aches and pains and people describing to us "it hurts when I do this." We love it. It's a great source of features, a great way to get new contributors, and a fantastic way to prove ideas that might be good for bringing into the spec (like the Embedded EJBContainer API in EJB 3.1).

    I can't stress enough how important it is to participate in the innovation rather than attempting to bypass it. If something doesn't meet your needs, demand better.

    That last statement is more directed at the world in general :)