0 Replies Latest reply on Nov 23, 2012 6:57 AM by paul.robinson

    ATE: General Support for UsingDataSet/ShouldMatchData

    paul.robinson

      Pulling out into a separate discussion from: https://community.jboss.org/message/777483

       

      Problem

      The Arquillian Persistence Extension (APE) has a facility for specifying what the DB should look like before and after a particular @Test is ran. My understanding is that the DB is setup and matched in seperate transactions to that which the @Test runs. This has the following issues/implications:

       

      1. It only works for databases.
      2. The code lives entirely in APE, meaning that there is no general support for this in the the Arquillian Transction Extension (ATE).
      3. Any other extension that wished to offer similar behavior needs to implement it from scratch. For example, we may wish to load a JMS queue with messages before a test runs and assert the contents of the queue after it runs.

       

      Solution

      We pull out the general behavior into the ATE and then refactor APE and a potential "arquillian-extension-jms" to use this support.

       

      Issues

      The "UsingDataSet/ShouldMatchData" API is very specific to APE. This is good as it's very usable for APE users. Any generic support would need to somehow provide an equally usable API whilst being generic. I've not really thought this through much yet.