[00:13:46] *** mhuniewicz has joined #jbosstesting [00:13:55] <mhuniewicz> aslak, I got disconnected, sorry. [00:15:35] *** aaronwalker has quit IRC [00:16:28] <aslak> mhuniewicz, i'll have a look at it in the morning.. :) [00:16:33] <mhuniewicz> Cheers [00:16:35] <mhuniewicz> :) [00:27:30] *** jose_freitas has joined #jbosstesting [00:27:37] <jose_freitas> aslak: ping [00:27:49] <aslak> jose_freitas, heya [00:28:10] <jose_freitas> does the arquillian from the logo has a name? [00:28:15] <aslak> Ike [00:28:31] <jose_freitas> hm :) [00:28:33] <jose_freitas> nice [00:28:41] <jose_freitas> thanks [00:29:18] <aslak> :) [00:29:30] <aslak> bed time.. :) [00:29:43] *** aslak has quit IRC [00:30:37] *** jose_freitas has quit IRC [00:36:17] *** mhuniewicz has quit IRC [00:42:58] *** lightguard_jp1 has joined #jbosstesting [00:43:12] *** lightguard_jp has quit IRC [01:00:10] *** alesj has left #jbosstesting [01:00:24] *** lightguard_jp1 has quit IRC [01:00:51] *** lightguard_jp has joined #jbosstesting [01:11:37] *** aaronwalker has joined #jbosstesting [01:21:26] *** gastaldi has joined #jbosstesting [01:23:46] *** gastaldi has quit IRC [01:30:23] *** gastaldi has joined #jbosstesting [01:40:56] *** gastaldi has quit IRC [02:06:27] *** johnament has joined #jbosstesting [02:40:45] *** ldimaggi has joined #jbosstesting [03:06:14] *** gastaldi has joined #jbosstesting [03:33:36] *** k4ffee has quit IRC [03:37:37] *** k4ffee has joined #jbosstesting [04:20:16] *** gastaldi has quit IRC [04:28:23] *** gastaldi has joined #jbosstesting [04:53:03] *** ldimaggi has quit IRC [05:01:46] *** OndraZizka has quit IRC [05:02:04] *** OndraZizka has joined #jbosstesting [05:12:01] *** kmalhi has joined #jbosstesting [05:13:58] <kmalhi> Do i have to supply an arquillian.xml file, getting an initialization error without it [05:14:13] <gastaldi> not necessarily [05:15:19] <johnament> kmalhi: you need to ensure that you have one, and only one, container impl on your classpath. [05:16:13] <kmalhi> then line 185 of org.jboss.arquillian.impl.XmlConfigurationBuilder might have a possible bug because it is trying to call a method on a null NamespaceURI, thus throwing a NullPointerException [05:18:54] <kmalhi> johnament: by container impl you mean a class which implemetns DeployableContainer? [05:24:54] <kmalhi> I probably need to dig a bit deeper into it before I ping you again, not sure if i am setup correctly though, [05:25:07] *** gastaldi has left #jbosstesting [05:41:57] *** OndraZizka has quit IRC [05:50:23] *** johnament has quit IRC [06:31:31] *** ALR has joined #jbosstesting [06:41:38] *** OndraZizka has joined #jbosstesting [07:13:15] <lightguard_jp> Think I found a bug in how deployment exceptions are returned in AS7 arq container [07:16:08] <lightguard_jp> ALR: What time is Aslak typically in? [07:16:18] <lightguard_jp> Or I should say, how much longer do I need to wait? [07:17:05] <ALR> lightguard_jp: Umm, couple more hours. [07:17:11] <ALR> He's in Oslo. [07:17:22] <ALR> lightguard_jp: What do you have? [07:17:31] <ALR> AS7 ARQ container is in the AS7 tree [07:19:00] <lightguard_jp> ALR: Yeah, I'm not getting the expected exception on deployment and my tests are dying [07:19:09] <lightguard_jp> They work fine with embedded weld container [07:19:21] <lightguard_jp> But die when running against a remote AS7 instance [07:21:26] <ALR> lightguard_jp: Show me trace? [07:21:44] <ALR> Or the full -output.txt ? [07:22:19] <lightguard_jp> ALR: https://pastee.org/8gyk4 [07:22:50] <lightguard_jp> I'm expecting to receive a DefinitionException [07:22:55] <ALR> lightguard_jp: Line 96? [07:23:23] <lightguard_jp> Yeah, that's the error my tests are expecting. [07:23:32] <lightguard_jp> It's what I get when I test with embedded weld [07:23:45] <lightguard_jp> But it looks like AS7 is wrapping it and ARQ isn't unwrapping the exception [07:24:12] <ALR> That's exactly what's happening. [07:24:25] <ALR> Whether we should/shouldn't unwrap is up for debate. [07:24:46] <ALR> Because we're returning the reason it didn't deploy (as reported to us by the container) [07:25:25] <ALR> It'd be nice if this wasn't wrapped injava.lang.Exception [07:26:29] <lightguard_jp> ALR: Yeah [07:26:36] <lightguard_jp> Not sure who to blame on this one though. [07:26:42] <ALR> AS7 [07:26:56] <lightguard_jp> Little late in the game to fix this, isn't it? [07:27:12] <ALR> Yes. [07:46:23] *** aslak has joined #jbosstesting [07:46:23] *** aslak has quit IRC [07:46:23] *** aslak has joined #jbosstesting [07:51:27] <lightguard_jp> aslak: Hey, didn't expect to see you around [07:51:52] <lightguard_jp> aslak: I found a problem with both AS7 and the arq container when expecting deployment exceptions [07:55:43] <aslak> lightguard_jp, oh? [07:56:03] <aslak> lightguard_jp, i remember some talk about as7 not reporting deployment exceptions properly, but not sure if that is fixed or not [07:56:05] <aslak> or the same [07:56:07] <lightguard_jp> aslak: AS7 wraps exceptions during deployment with Exception :) In ARQ, we're not unwrapping. [07:56:28] <lightguard_jp> My tests work great when using embedded weld [07:56:34] <lightguard_jp> But die when using AS7 [07:56:36] <aslak> aa, that's the DeploymentExceptionTransformer [07:58:03] <lightguard_jp> aslak: ALR suggested a two fold approach. Fix AS7 so it wraps it in something like org.jboss.as.DeploymentException then in arq unwrap if it's an instanceof DeploymentException otherwise return the actual exception [07:58:04] <aslak> lightguard_jp, you can add your own for now i guess.. (assuming as7 is final) [07:59:08] <aslak> yea, the UnWrap part is the DeploymentExceptionTransformer SPI. i guess we're missing a impl for AS7 [07:59:17] <aslak> and agree.. throwing exception is a bit silly from as [07:59:34] <ALR> Can't add anything new to AS7 tree. [07:59:40] <ALR> So I think we ship with this for now. [07:59:48] <ALR> And go for post AS7.0.0.Final [08:00:04] <ALR> Not too late to open JIRAs pointing to your traces though lightguard_jp [08:00:27] <lightguard_jp> ALR: True [08:05:08] <aslak> lightguard_jp, and you can still provide a DET that fix it for you on the outside, assuming the DE thrown by AS had the original cause in it [08:05:21] <aslak> had/has [08:05:38] <lightguard_jp> aslak: True, is there some docs about how to add that DET? [08:07:52] <aslak> lightguard_jp, oh yea, and the best kind of doc as well. real live code! :) [08:07:53] <aslak> https://github.com/arquillian/arquillian-core/blob/master/container/spi/src/main/java/org/jboss/arquillian/container/spi/client/container/DeploymentExceptionTransformer.java [08:08:09] <aslak> Register the DET as a Service in a Extension; https://github.com/arquillian/arquillian-container-jbossas/blob/master/jbossas-remote-6/src/main/java/org/jboss/arquillian/container/jbossas/remote_6/JBossASExtension.java [08:08:18] <aslak> impl example: https://github.com/arquillian/arquillian-container-jbossas/blob/master/jbossas-remote-6/src/main/java/org/jboss/arquillian/container/jbossas/remote_6/JBossASExceptionTransformer.java [08:08:47] <lightguard_jp> Great, thank you! [08:09:50] *** ge0ffrey has joined #jbosstesting [08:12:11] <lightguard_jp> aslak: Do I need to specify the extension in the arquillian.xml? [08:12:41] <lightguard_jp> Looks like https://github.com/arquillian/arquillian-container-jbossas/blob/master/jbossas-remote-6/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension is my answer [08:12:54] <aslak> lightguard_jp, no, LoadableExtension is registered as a SPI file: https://github.com/arquillian/arquillian-container-jbossas/blob/master/jbossas-remote-6/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension [08:13:02] <aslak> yes, correct. :) [08:13:29] <lightguard_jp> Do I add that to the war being deployed, or does it go elsewhere? [08:13:41] <aslak> lightguard_jp, this is client side [08:14:19] <lightguard_jp> Okay, as long as it's in the classpath when arquillian runs we're good. [08:14:24] <aslak> yea [08:15:40] <lightguard_jp> aslak: Where should I add the JIRA? ARQ or AS7 (for adding the DET)? [08:15:47] <aslak> AS7 [08:15:48] <ALR> AS7. [08:15:51] <lightguard_jp> OKay [08:15:53] <ALR> Two issues. [08:15:59] <ALR> With deps. [08:19:55] <lightguard_jp> Oh, you don't have jbott in here [08:20:00] <lightguard_jp> drat [08:20:55] <lightguard_jp> http://transcripts.jboss.org/channel/irc.freenode.org/%23seam-dev/2011/latest.log.html# [08:23:10] <lightguard_jp> AS7-1197 and AS7-1198 I can't create the link between them [08:23:11] <jbossbot> jira [AS7-1197] Create a DeploymentException and wrap deployment errors with that instead of java.lang.Exception [Open (Unresolved) Enhancement, Minor, Unassigned] https://issues.jboss.org/browse/AS7-1197 [08:23:12] <jbossbot> jira [AS7-1198] Add a Deployment Exception Transformer for the Arquillian container [Open (Unresolved) Feature Request, Major, Unassigned] https://issues.jboss.org/browse/AS7-1198 [08:30:58] <aslak> lol [08:31:51] *** galderz has joined #jbosstesting [08:31:52] <aslak> trying to log into the ibm web site, and i'm obviously not doing it with the correct information. but they have a very interesting error message [08:32:13] <aslak> You may have typed the wrong password, This user ID may not exist, If you just created this userid, there is sometimes a delay of a few minutes before it can be used. Please try again. OR If you are a resident of Italy, your password may have expired. Please back up and try again. [08:34:43] *** pil-afk is now known as pilhuhn [08:37:33] <k4ffee> uhm, hi there. i'm just starting with maven and arquillian, so i followed the arquillian tutorial from the documentation how to configure a maven project for arquillian. but i get an exception when deploying the test.war in the as6 "java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy" [08:38:09] <k4ffee> i think its the @Interceptors annotation [08:38:44] <k4ffee> but now i don't know how to find the correct maven dependency to add this [08:48:20] <lightguard_jp> aslak: lol [08:48:32] <lightguard_jp> ALR: aslak: this is not good... [08:48:40] <lightguard_jp> We're not even wrapping the exception! [08:52:03] *** k4ffee has quit IRC [08:52:55] *** k4ffee has joined #jbosstesting [08:54:28] <ALR> It's getting wrapped somewhere [08:54:31] <ALR> Into j.l.E [08:55:51] <lightguard_jp> bad bad bad [08:56:34] <lightguard_jp> ServerDeploymentPlanResultFuture in the controller client line 99 [08:56:55] <lightguard_jp> ALR: Exception e = actionResultNode.hasDefined("failure-description") ? new Exception(actionResultNode.get("failure-description").toString()) : null; [08:57:14] <lightguard_jp> We create a new exception with the error message, but we don't actually wrap the exception [08:57:36] <ALR> Tee hee. [09:01:14] <lightguard_jp> ALR: Is this line covered in some sort of test? [09:01:48] <ALR> No idea. Run controller client unit tests w/ Coburtura Eclipse plugin :) [09:01:58] <ALR> Coverage As > JUnit [09:02:05] <ALR> I'm beat. :) [09:02:07] * ALR to bed [09:02:14] *** ALR has quit IRC [09:11:07] <aslak> k4ffee, your missing some Annotation from your deployment most likely [09:11:31] <aslak> lightguard_jp, it's just a Exception: could not deploy with no real cause? [09:11:46] <aslak> lightguard_jp, oh right.. nice [09:11:57] <lightguard_jp> Yeah, not helpful at all [09:12:41] <aslak> lightguard_jp, no stacktrace, just message ? [09:12:50] <lightguard_jp> Yep [09:13:04] <lightguard_jp> Well, the stack trace would be there, but it wouldn't be helpful at all [09:13:40] <aslak> lightguard_jp, was just thinking you could recreate it.. [09:14:03] <aslak> but you don't know the type based on message, without guessing [09:14:26] <lightguard_jp> I'd have to parse the message and do reflection to create it. Pretty nasty [09:15:19] <lightguard_jp> I can't get the debugger to hit the method [09:15:43] <lightguard_jp> Hm [09:15:49] <aslak> which method? [09:16:09] <lightguard_jp> I need to be debugging the client, not the server. [09:18:27] <lightguard_jp> This isn't working, boo [09:18:37] <lightguard_jp> Time to call it a night I think [09:26:38] *** lightguard_jp has quit IRC [09:39:23] *** aslak has quit IRC [09:40:12] *** aslak has joined #jbosstesting [09:48:36] *** lfryc has joined #jbosstesting [09:51:11] <k4ffee> aslak: yeah, the missing annotation is @Interceptors from javax.interceptor.Interceptors, but (call me stupid) i don't know how to find which maven dependency is needed for that, is there any website where i can lookup classes inside of packages? [09:52:42] <aslak> k4ffee, are you sure it's that one? That annotation is part of EE6 and should be available in the AS6 container ? [09:53:33] <aslak> k4ffee, your not missing the Interceptor it self, the one the Interceptors annotation is refering to [09:53:44] <aslak> ? [09:53:44] <k4ffee> ah, ok, i [09:53:48] <k4ffee> i'll check that [09:58:27] <k4ffee> thanks, that was it. i think i misunderstood the addPackages recursion, so the interceptor was missing [10:03:53] *** jeand has joined #jbosstesting [10:09:00] *** alesj has joined #jbosstesting [10:09:58] *** jbott has joined #jbosstesting [10:10:01] *** maxandersen has joined #jbosstesting [10:10:33] <maxandersen> #startmeeting [10:10:33] <jbott> Meeting started Wed Jul 6 08:14:21 2011 UTC. The chair is maxandersen. Information about MeetBot at http://wiki.debian.org/MeetBot. [10:10:33] <jbott> Useful Commands: #action #agreed #help #info #idea #link #topic. [10:10:48] <maxandersen> #action lightguard_jp owes maxandersen a beer [10:10:52] <maxandersen> #endmeeting [10:10:53] <aslak> :) [10:11:03] <jbott> Meeting ended Wed Jul 6 08:14:40 2011 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) [10:11:03] <jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/jbosstesting/2011/jbosstesting.2011-07-06-08.14.html [10:11:03] <jbott> Minutes (text): http://transcripts.jboss.org/meeting/irc.freenode.org/jbosstesting/2011/jbosstesting.2011-07-06-08.14.txt [10:11:03] <jbott> Log: http://transcripts.jboss.org/meeting/irc.freenode.org/jbosstesting/2011/jbosstesting.2011-07-06-08.14.log.html [10:11:22] <maxandersen> there you go and there will now also be full channel logging. [10:11:32] <aslak> maxandersen, great, thanks! [10:23:42] *** Jaikiran has joined #jbosstesting [10:39:47] *** maxandersen is now known as max_asylum_recor [10:40:01] *** torben has joined #jbosstesting [10:40:01] *** torben has joined #jbosstesting [11:07:12] *** tdiesler has joined #jbosstesting [11:39:52] *** aaronwalker has quit IRC [11:45:50] *** mgoldmann has joined #jbosstesting [11:45:53] *** mgoldmann has quit IRC [11:45:53] *** mgoldmann has joined #jbosstesting [11:52:47] *** galderz has quit IRC [12:07:57] *** Jaikiran is now known as Jaikiran|AFL [12:08:13] *** Jaikiran|AFL is now known as Jaikiran|AFK [12:24:08] <k4ffee> uhm, sorry to nag you again, but i got a javax.ejb.EJBTransactionRequiredException because the bean i want to test has @TransactionAttribute(TransactionAttributeType.MANDATORY); how do i create a new transaction in the test for this? [12:26:19] *** bgeorges has joined #jbosstesting [12:35:01] *** alesj has quit IRC [12:40:05] <aslak> k4ffee, inject e.g. @Resource UserTransaction transaction; [12:47:27] *** alesj has joined #jbosstesting [12:49:58] *** alesj has quit IRC [12:50:31] *** alesj has joined #jbosstesting [12:57:20] *** maeste has joined #jbosstesting [13:27:19] <k4ffee> aslak, thanks [13:54:29] *** jeand has quit IRC [13:55:30] *** galderz has joined #jbosstesting [13:55:34] *** jeand has joined #jbosstesting [13:57:10] *** galderz1 has joined #jbosstesting [13:58:44] *** galderz has quit IRC [13:58:57] *** galderz has joined #jbosstesting [14:00:23] *** galderz2 has joined #jbosstesting [14:01:38] *** galderz1 has quit IRC [14:04:05] *** galderz has quit IRC [14:04:32] *** galderz2 has quit IRC [14:06:27] <jose_freitas_aw> aslak: ping [14:08:38] *** jose_freitas_aw is now known as jose_freitas [14:08:52] <aslak> jose_freitas, heya [14:09:01] <jose_freitas> hey :) [14:09:27] <jose_freitas> aslak, would you mind on taking a peek on my arq presentation? [14:09:33] <aslak> jose_freitas, sure [14:09:45] <jose_freitas> need your email to share [14:10:01] *** galderz has joined #jbosstesting [14:13:05] *** bgeorges has quit IRC [14:14:15] *** max_asylum_recor is now known as maxandersen [14:27:00] *** Jaikiran|AFK is now known as Jaikiran [14:53:02] *** ldimaggi has joined #jbosstesting [15:04:24] *** bgeorges has joined #jbosstesting [15:17:33] *** maxandersen has left #jbosstesting [15:23:13] *** ge0ffrey has quit IRC [15:24:51] *** Jaikiran has quit IRC [15:24:57] *** ge0ffrey has joined #jbosstesting [15:25:09] *** Jaikiran has joined #jbosstesting [15:31:04] *** OndraZizka has quit IRC [15:39:15] *** OndraZizka has joined #jbosstesting [15:42:54] <tdiesler> aslak, hey. you migrated your docbook content to confluence, right? [16:12:06] *** ALR has joined #jbosstesting [16:19:12] *** alesj has quit IRC [16:31:47] *** ldimaggi has quit IRC [16:32:54] *** OndraZizka has quit IRC [16:37:20] *** ldimaggi has joined #jbosstesting [16:42:23] *** Jaikiran has quit IRC [16:42:37] *** Jaikiran has joined #jbosstesting [16:46:44] <aslak> tdiesler, yea [16:58:00] *** ldimaggi has quit IRC [17:10:44] *** ldimaggi has joined #jbosstesting [17:45:10] *** galderz has quit IRC [17:51:30] *** galderz has joined #jbosstesting [18:08:54] *** pilhuhn is now known as pil-dinner [18:23:01] *** galderz1 has joined #jbosstesting [18:23:01] *** galderz has quit IRC [18:31:40] *** Tashtego has joined #jbosstesting [18:43:50] <Tashtego> "The POM for org.jboss.arquillian.container:arquillian-glassfish-embedded-3:jar:1.0.0.Alpha5 is missing, no dependency information available" [18:44:00] <Tashtego> do i have the wrong repository? ;) [18:44:27] <aslak> Tashtego, try glassfish-embedded-3.1 [18:45:35] <Tashtego> i thought i would ;)... https://github.com/arquillian/arquillian-examples/tree/master/ejb31-gfembedded [18:45:41] <Tashtego> i am trying to get this example running [18:45:47] <Tashtego> but without the parent pom and stuf [18:45:56] <Tashtego> so i modified the pom a bit [18:46:08] <Tashtego> just need a embedded gf 3.1 example with ejb3.1 [18:46:21] <Tashtego> thought github would be a good place to look at [18:46:55] <Tashtego> i still know from my last tries that there were files like domain.xml and others needed for my unit tests. dont know if this is still actual in alpha5 [18:46:59] <Tashtego> so i tried with github [18:47:34] <Tashtego> ah ok 3.1 means ejb 3.1 in that example i guess [18:47:41] <Tashtego> damn ;) [18:47:49] <aslak> Tashtego, should only be needed if you want to add datasources etc [18:48:16] <Tashtego> no thats not needed in that simple case [18:48:28] <Tashtego> just ejb3.1 and gf 3.1 embedded [18:48:34] <Tashtego> is that example right to modify? [18:48:38] <Tashtego> or should i start somewhere else? [18:48:42] <aslak> sure [18:48:53] <aslak> Tashtego, just use arquillian-glassfish-embedded-3.1 not arquillian-glassfish-embedded-3 [18:49:32] <Tashtego> https://github.com/arquillian/arquillian-examples [18:49:33] <aslak> and you can use: <version.org.glassfish.embedded>3.1</version.org.glassfish.embedded> [18:49:41] <Tashtego> there is only one glassfish embedded example [18:50:34] <aslak> Tashtego, not sure about the state of the arq-examples repo.. [18:50:41] *** bgeorges has quit IRC [18:50:41] <Tashtego> ok its downloading [18:50:57] <Tashtego> arquillian-glassfish-embedded-3-1.0.0.Alpha5.jar; error in opening zip file [18:51:15] <aslak> it does not exist.. [18:51:29] *** torben has quit IRC [18:51:39] <aslak> see the artifactId, it should end with, embedded-3.1 [18:51:50] <aslak> version: 1.0.0.Alpha5 [18:52:03] <Tashtego> <version.org.jboss.arquillian>1.0.0.Alpha5</version.org.jboss.arquillian> [18:52:03] <Tashtego> <version.org.glassfish.embedded>3.1</version.org.glassfish.embedded> [18:53:03] <Tashtego> ok will try to fix it somehow [18:53:37] <aslak> Tashtego, some how? you need to add two chars.. :) [18:54:04] <Tashtego> where? ^^ [18:54:11] <aslak> the glassfish artifaqct id [18:54:20] <aslak> from: arquillian-glassfish-embedded-3 [18:54:23] <aslak> to: arquillian-glassfish-embedded-3.1 [18:54:50] <Tashtego> ahhh down there ^^.... damn ;) ok testing that [18:54:51] <Tashtego> sorry [18:57:25] <jose_freitas> lol aslak, there wasn't a better name for arq project [18:57:38] <jose_freitas> have you seen this? http://wikibin.org/articles/arquillians.html [18:58:31] <aslak> of course [18:58:53] <aslak> Arquillians are fighting the Bugs to protect the universe [18:59:28] <jose_freitas> I'm curious about this MIB series [18:59:29] <jose_freitas> eheheh [19:09:57] <Tashtego> i am still missing a repository to download [19:10:00] <Tashtego> in my pom i have http://repository.jboss.org/nexus/content/groups/public-jboss/groups/ [19:10:47] *** ge0ffrey has quit IRC [19:11:01] <Tashtego> the github example seems not even to need any repository ^^ [19:11:08] <aslak> Tashtego, http://repository.jboss.org/nexus/content/groups/public/org/jboss/arquillian/ [19:11:21] *** rbattenfeld has joined #jbosstesting [19:11:56] <rbattenfeld> ALR: Hi Andrew, how are you? [19:14:44] <Tashtego> https://repository.jboss.org/nexus/content/groups/public/org/glassfish/embedded/glassfish-embedded-all/ <---- [19:14:45] <Tashtego> 3.1 missing [19:14:52] <Tashtego> thats the problem [19:15:30] <aslak> https://repository.jboss.org/nexus/content/groups/public/org/glassfish/extras/glassfish-embedded-all/ [19:17:28] <Tashtego> ok thx aslak [19:19:24] *** rbattenfeld has left #jbosstesting [19:22:33] <Tashtego> according to the example on github there is only a java session bean class and a test class. no config files anyway besides the pom [19:22:51] <Tashtego> but when running the test case now, there is a javax.naming.NoInitialContextException: Cannot instantiate class: org.jnp.interfaces.NamingContextFactory [19:23:13] <Tashtego> ah second [19:23:26] <Tashtego> ok my fault i had a remaining jndi file ^^ [19:23:45] <Tashtego> its always my fault, isnt it? ;))... [19:24:05] <aslak> :) [19:24:49] <Tashtego> great. then i can finish the article now and send it out tonight [19:24:54] <Tashtego> the last example was missing [19:24:56] <Tashtego> ;) [19:24:59] <aslak> cool [19:25:29] *** lightguard_jp has joined #jbosstesting [19:34:37] <tdiesler> aslak, about the docs ... how do you deal with versioned docs? i.e. fixed docs per release [19:36:26] *** jeand has quit IRC [19:38:30] <aslak> tdiesler, not dealt with it yet, but export to docbook i assume [19:38:51] <aslak> tdiesler, possible 'copy' the structure in confluence [19:50:28] <jose_freitas> aslak: where did org.jboss.shrinkwrap.descriptor.api.Node go ? [19:51:37] <aslak> descriptor-impl? [20:00:31] <jose_freitas> descriptor.spi [20:01:12] <aslak> aa package wise, spi yes [20:03:17] <aslak> lightguard_jp, in staging if you like to take it for a spin before release.. https://repository.jboss.org/nexus/content/repositories/jboss_releases_staging_profile-105/ [20:03:44] <lightguard_jp> aslak: Thanks [20:08:10] <tdiesler> aslak, FYI https://docs.jboss.org/author/display/AUTHGUIDE/Introduction [20:08:54] *** kmalhi has left #jbosstesting [20:09:00] <aslak> tdiesler, yea, i know it's there. just haven't gotten to the point of trying it [20:43:02] *** bobmcw has quit IRC [20:44:19] *** tdiesler has quit IRC [20:46:06] *** pil-dinner is now known as pilhuhn [20:54:22] *** Jaikiran has quit IRC [20:57:49] *** k4ffee has quit IRC [20:58:02] *** k4ffee has joined #jbosstesting [20:58:53] *** pilhuhn is now known as pil-meet [21:00:56] *** galderz1 has quit IRC [21:21:06] *** galderz has joined #jbosstesting [21:36:19] <jose_freitas> is there a specific channel for jsfunit? [21:53:15] <aslak> jose_freitas, nope [22:08:48] *** ldimaggi_ has joined #jbosstesting [22:10:54] *** OndraZizka has joined #jbosstesting [22:12:08] *** ldimaggi has quit IRC [22:19:02] *** galderz has quit IRC [22:20:33] *** pil-meet is now known as pil-sleep [22:20:46] *** mhuniewicz has joined #jbosstesting [22:21:38] <mhuniewicz> Hi aslak, how's it going? [22:21:55] <aslak> mhuniewicz, heya, good [22:22:02] <aslak> mhuniewicz, you? [22:22:06] <mhuniewicz> I'm fine, thanks. [22:22:15] <mhuniewicz> Did you see the thing I wrote? [22:22:35] <aslak> mhuniewicz, PC? [22:22:45] <mhuniewicz> Sho. :) [22:23:10] <aslak> sho? [22:23:11] <aslak> :) [22:23:15] <mhuniewicz> Sure [22:25:37] <aslak> mhuniewicz, i think this should be handled on a lower level, the cdi impl should be opened up to provide this [22:26:22] *** pil-sleep has quit IRC [22:26:24] <aslak> mhuniewicz, you shouldn't need to change your code or how you write the test based on the environment you run in [22:26:45] <mhuniewicz> Yeah but I wouldn't. [22:26:45] <aslak> mhuniewicz, and that's where the JpaServiceFactory thinggy comes in [22:27:52] <mhuniewicz> So you're saying - implement that factory and provide it via Arquillian for tests to use? [22:30:26] <aslak> mhuniewicz, yea, i think it's worth a shot [22:31:42] <mhuniewicz> Okay so Ima look at it and program some, how do I let you know what I've done if it works or more likely doesn't? Send a patch? [22:32:22] <aslak> mhuniewicz, you can tell me ? ;) [22:33:03] <mhuniewicz> No standard procedure for this? :) [22:33:07] <aslak> mhuniewicz, fork the github repo, arquillian-container-weld to your account, create a topic branch for the work, then send a pull request [22:33:29] <aslak> then we take it from there [22:33:54] <mhuniewicz> How do I fork it? You mean clone it? [22:34:23] <aslak> mhuniewicz, basically this: http://community.jboss.org/wiki/ShrinkWrapDevelopmentAndContribution with different repositories [22:35:26] <mhuniewicz> Oh I see. [22:35:37] <aslak> this is the repo you want: https://github.com/arquillian/arquillian-container-weld [22:35:45] <mhuniewicz> Cheers. [22:58:01] *** ALR has quit IRC [23:10:25] *** ldimaggi_ has quit IRC [23:11:59] *** johnament has joined #jbosstesting [23:17:56] *** lfryc has quit IRC [23:25:36] <mhuniewicz> Okay, done. [23:25:49] <mhuniewicz> I don't need the pull request part just yet though, do I? [23:36:23] <mhuniewicz> I screwed up, I'll start all over. :P [23:38:01] *** dblevins has joined #jbosstesting [23:38:20] *** Tashtego has quit IRC [23:52:43] *** dblevins has quit IRC [23:54:22] *** mbg has joined #jbosstesting [23:57:12] <mbg> aslak: is there a way to add a TestEnricher as part of the test (or group of tests) [23:57:34] *** dblevins has joined #jbosstesting [23:59:21] *** johnament has quit IRC