[00:00:49] *** mgoldmann_ has quit IRC [00:12:17] <jc3> is easymock a required dependency? [00:16:17] <aslak> jc3, easymock? no [00:16:27] <aslak> and yes, managed is a remote + start and stop [00:16:52] <jc3> recognize this? https://gist.github.com/904696 [00:17:04] <jc3> i get those in all my tests with this config... [00:17:19] <jc3> https://gist.github.com/904697 [00:17:34] <aslak> jc3, you got the arq-junit jar on cp? [00:18:32] <jc3> i think so. this is in my pom: https://gist.github.com/904700 [00:18:50] <aslak> are you trying to use junit? [00:18:57] <aslak> if so you need the junit jars as well [00:19:43] <jc3> well, this worked with Alpha 4, so i'm assuming i would've needed them with that as well, right? [00:20:12] <aslak> well if that was the case, then it was a bug.. :) [00:20:24] <jc3> aslak: i don't understand [00:20:45] <jc3> something with A4 was transitively pulling them in maybe? [00:22:08] <jc3> i have junit deps declared in a parent pom, so they're there. [00:24:13] <jc3> is anyone using Alpha5 successfully? [00:24:18] <jc3> with AS6? [00:35:17] <aslak> sure, all the examples does [00:35:46] <aslak> jc3, which v. of junit are you using? [00:36:19] <jc3> aslak: 4.7 [00:36:42] <jc3> i tried adding the hamcrest dep to my pom, but with same error [00:37:19] <aslak> and you haven't changed it ? [00:37:29] <aslak> verify that you are running with shrinkwrap-alpha12 [00:38:16] <aslak> we shouldn't even be loading classes in shrinkwrap anymore, so i find the exception a bit odd [00:38:36] <aslak> jc3, but it's bed tme here.. ill look at it tomorrow [00:39:01] *** aslak has quit IRC [00:55:03] *** pmuir has joined #jbosstesting [00:56:58] *** pmuir has quit IRC [01:07:08] *** bleathem has quit IRC [01:46:45] *** ldimaggi_wfh has joined #jbosstesting [01:55:55] *** jganoff has joined #jbosstesting [02:07:24] *** michaelschuetz has quit IRC [02:08:54] *** johnament has joined #jbosstesting [02:28:58] *** jc3 has quit IRC [03:45:17] *** johnament has quit IRC [03:52:18] *** ldimaggi_wfh has quit IRC [03:52:56] *** ldimaggi has joined #jbosstesting [04:02:43] *** bgeorges has quit IRC [04:11:25] *** jc3 has joined #jbosstesting [04:31:27] *** bgeorges has joined #jbosstesting [04:46:29] *** jganoff has quit IRC [05:20:05] *** ldimaggi has quit IRC [05:23:07] *** bgeorges has quit IRC [05:25:29] *** bleathem has joined #jbosstesting [06:28:20] *** bgeorges has joined #jbosstesting [06:35:35] *** maeste has joined #jbosstesting [07:28:19] *** oskutka has joined #jbosstesting [07:35:03] *** rruss has joined #jbosstesting [07:43:50] *** aslak has joined #jbosstesting [07:47:37] *** jharting has joined #jbosstesting [07:55:06] *** bleathem has quit IRC [08:08:07] *** michaelschuetz has joined #jbosstesting [08:28:35] *** oskutka has quit IRC [08:31:57] *** maschmid has joined #jbosstesting [08:32:51] <jharting> ping aslak [08:32:58] <aslak> jharting, heya [08:34:34] <jharting> aslak: hi Aslak, I have a question about the weld embedded container. Is there a way of controlling the classpath? I have a test in which I create a web archive and only bundle a specific classes for the test to pass. In the embedded mode, the entire package seems to be on classpath, though. Are there any configuration options? [08:34:46] <aslak> jharting, fyi, JSFUnit trunk should be competable with Arq Alpha-5, with the added bonus of working with EE5 containers and not relying on CDI to handle creation/injection of JSFSession,JSFServer,JSFClient, use @JSFUnitResource instead and Arq will handle the injection [08:35:08] <jharting> aslak: nice [08:35:41] <aslak> jharting, not really, that's the issue with Embedded containers. AppCL leaks [08:36:04] <aslak> jharting, you can limit the scope of what Weld can see as a Bean, but not what Weld can see as a Class [08:36:41] *** rruss has quit IRC [08:37:38] <aslak> jharting, looking at different ways of handling this, the most true option so far seems to be to run them embedded by forking the jvm and starting only the container with a controlled cp [08:38:04] <aslak> but haven't had time to investigate it fully [08:39:00] <jharting> aslak: ok, thanks, I'll need to modify the tests the, I guess [08:39:31] <aslak> jharting, what are you doing? [08:40:35] <jharting> aslak: I am testing solder's @Requires annotation, which when placed on a bean activates the bean if all the classes defined in the annotation are present on classpath [08:40:50] <jharting> aslak: e.g. @Requires(java.lang.Integer) would be enabled [08:41:02] <jharting> aslak: while @Requires(non.existing.class) would not [08:41:23] <jharting> e.g. @Requires("non.existing.class") public class Foo {} [08:41:37] <aslak> jharting, right, if you can @Require a class in a different library, you might be able to play with the surefire config [08:41:57] <aslak> http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#classpathDependencyExcludes [08:42:58] <aslak> well, right.. it's a String. so basically for the ShouldNotBeActivated type tests you can just depend on something that does not exist right? [08:43:56] <aslak> depend/require [08:43:57] <jharting> aslak: yes, initially, I depended on an existing class which I bundled / did not bundle in the archive based on whether I wanted to test the enabled / disabled scenario [08:44:15] <aslak> jharting, right, which would be the cool way to do it.. :) [08:44:24] <jharting> aslak: but having two types of classes, one of them depending on non-existing class will work [08:59:35] *** aslak has quit IRC [09:00:10] *** aslak has joined #jbosstesting [09:12:52] *** lfryc has joined #jbosstesting [09:30:51] *** oskutka has joined #jbosstesting [09:32:22] *** kpiwko has joined #jbosstesting [09:37:14] *** pmuir has joined #jbosstesting [09:54:49] *** alesj has joined #jbosstesting [09:54:51] *** jeand has joined #jbosstesting [09:56:46] *** bgeorges has quit IRC [10:01:26] *** wolfc has joined #jbosstesting [10:18:11] *** vtunka has joined #jbosstesting [10:19:00] *** oskutka has quit IRC [10:33:44] *** oskutka has joined #jbosstesting [10:35:29] <aslak> jc3, i'm a bit puzzeled about your shrinkwrap 11 dep there. not sure why it is coming in via jbossas-managed-6, it shouldn't [10:50:07] *** pmuir has quit IRC [10:51:13] *** pmuir has joined #jbosstesting [10:51:13] *** pmuir has quit IRC [10:51:13] *** pmuir has joined #jbosstesting [10:57:19] *** jharting has quit IRC [11:17:27] *** mgoldmann has joined #jbosstesting [11:17:59] *** mgoldmann has quit IRC [11:18:20] *** mgoldmann has joined #jbosstesting [11:34:37] *** michaelschuetz has quit IRC [11:37:22] *** timte has joined #jbosstesting [11:41:02] *** michaelschuetz has joined #jbosstesting [11:48:57] *** Jaikiran has joined #jbosstesting [12:07:27] *** mgoldmann has quit IRC [12:08:02] *** mgoldmann has joined #jbosstesting [12:26:34] *** vtunka has quit IRC [12:44:23] *** vtunka has joined #jbosstesting [12:46:18] *** mgoldmann has quit IRC [12:47:55] *** pmuir has quit IRC [13:10:39] *** ldimaggi has joined #jbosstesting [13:10:48] *** pmuir has joined #jbosstesting [13:17:45] *** dmlloyd has quit IRC [13:18:33] *** jbossbot has quit IRC [13:27:17] *** alesj has quit IRC [13:32:50] *** alesj has joined #jbosstesting [13:33:16] *** alesj has quit IRC [13:33:46] *** alesj has joined #jbosstesting [13:34:08] *** alesj has quit IRC [13:34:20] *** alesj has joined #jbosstesting [13:35:35] *** bgeorges has joined #jbosstesting [13:37:51] *** kpiwko has quit IRC [13:42:26] *** jharting has joined #jbosstesting [13:48:05] *** ge0ffrey has joined #jbosstesting [14:26:11] *** kpiwko has joined #jbosstesting [14:28:53] *** kpiwko has quit IRC [14:31:31] *** kpiwko has joined #jbosstesting [14:46:48] *** michaelschuetz has quit IRC [14:47:34] *** michaelschuetz has joined #jbosstesting [15:01:32] <jc3> aslak: morning! [15:01:56] <jc3> i'll poke around and see if i can't figure out why i'm depending on both 11 *and* 12. [15:11:06] *** michaelschuetz has quit IRC [15:11:51] *** michaelschuetz has joined #jbosstesting [15:14:26] *** michaelschuetz has left #jbosstesting [15:28:56] *** dmlloyd has joined #jbosstesting [15:32:02] *** jbossbot has joined #jbosstesting [16:13:16] *** davidbos has joined #jbosstesting [16:13:25] *** aslak has quit IRC [16:16:20] *** aslak has joined #jbosstesting [16:19:40] *** bgeorges has quit IRC [16:20:45] *** bgeorges has joined #jbosstesting [16:40:26] *** rruss has joined #jbosstesting [16:48:03] *** jeand__ has joined #jbosstesting [16:48:12] *** jeand__ has quit IRC [16:49:10] *** jean has joined #jbosstesting [16:50:29] *** jean has quit IRC [16:53:16] *** jharting has quit IRC [16:53:17] *** jeand_ has joined #jbosstesting [17:02:59] *** jeand has quit IRC [17:20:15] *** pmuir has quit IRC [17:23:39] *** kpiwko has quit IRC [17:26:11] *** vtunka has quit IRC [17:34:26] *** oskutka has quit IRC [17:52:21] *** bleathem has joined #jbosstesting [18:13:44] *** pmuir has joined #jbosstesting [18:13:44] *** pmuir has quit IRC [18:13:44] *** pmuir has joined #jbosstesting [18:14:52] *** maschmid has quit IRC [18:16:49] *** pmuir has quit IRC [18:31:53] *** davidbos has quit IRC [18:35:11] *** ge0ffrey has quit IRC [18:49:35] *** alesj has quit IRC [18:54:24] *** bgeorges has quit IRC [19:02:02] *** jharting has joined #jbosstesting [19:25:02] *** maeste has quit IRC [19:38:02] *** jharting has quit IRC [19:43:38] *** narayant has joined #jbosstesting [19:45:21] *** bgeorges has joined #jbosstesting [19:52:11] *** alesj has joined #jbosstesting [20:02:55] *** alesj has quit IRC [20:33:05] *** Jaikiran has quit IRC [20:33:39] *** narayant has quit IRC [21:14:14] *** rruss has quit IRC [21:17:19] *** jharting has joined #jbosstesting [21:28:43] <aslak> jc3, any luck? [21:29:15] <jc3> aslak: nah, i got distracted by other shiny rocks. i'll get back to it soon. [21:29:29] *** bgeorges has quit IRC [21:29:33] <aslak> :) [21:29:45] <aslak> yea, those other rocks are very shiny [21:32:12] *** maeste has joined #jbosstesting [21:51:13] *** narayant has joined #jbosstesting [21:51:24] <narayant> how do we start jboss6 in debug mode [21:51:40] <narayant> as of jboss4 it was editing run.bat file [21:51:54] <aslak> run.conf [21:55:52] *** narayant has quit IRC [22:00:51] *** ALR has joined #jbosstesting [22:06:55] *** ALR has quit IRC [22:25:57] *** ALR has joined #jbosstesting [22:52:24] *** jharting has quit IRC [23:24:05] *** maeste has quit IRC [23:25:52] *** wolfc has quit IRC [23:25:59] *** aslak has quit IRC [23:27:58] *** jeand_ has quit IRC [23:31:05] *** ALR1 has joined #jbosstesting [23:31:14] *** ALR has quit IRC [23:32:51] *** michaelschuetz has joined #jbosstesting [23:32:56] *** michaelschuetz has quit IRC