[00:00:14] *** asgeirf has quit IRC [00:11:20] *** lincolnthree has joined #jbosstesting [00:11:25] <lincolnthree> hey ALR, you around? [00:12:36] <ALR> lincolnthree: Yep [00:12:39] <ALR> In 3 min [00:12:40] <ALR> Phone [00:12:50] <lincolnthree> sure, brb [00:12:53] <stuartdouglas> Are there any plans to support deploying multiple archives per test? [00:18:21] <lincolnthree> ALR: I'm back [00:18:44] <lincolnthree> stuartdouglas: yes, i believe aslak already has that working [00:19:01] <stuartdouglas> cool [00:19:03] <lincolnthree> But it's new since Alpha4, so currently unreleased [00:25:20] <ALR> lincolnthree: OK, that wasn't 3 minutes, but me too. [00:25:32] <lincolnthree> gotta run out for a bit ALR, will be back later, just had wanted your thoughts about SHRINKDESC-33 and SHRINKDESC-21 [00:25:34] <jbossbot> jira [SHRINKDESC-33] Descriptors API forces classloading for configuration [Open (Unresolved) Enhancement, Major, Unassigned] https://issues.jboss.org/browse/SHRINKDESC-33 [00:25:35] <jbossbot> jira [SHRINKDESC-21] descriptor read-only mode [Open (Unresolved) Feature Request, Major, Unassigned] https://issues.jboss.org/browse/SHRINKDESC-21 [00:25:48] <ALR> lincolnthree: First read this: http://lists.jboss.org/pipermail/jboss-as7-dev/2011-February/000615.html [00:26:20] <ALR> lincolnthree: Post your specific questions about the JIRAs in a Forum Thread in ShrinkWrap Dev and I'll reply tonight, cool? [00:26:42] <lincolnthree> no time atm, i just started implementing those 2 issues and wanted your API thoughts [00:26:44] <lincolnthree> will email later [00:27:00] <ALR> lincolnthree: k, great. Just keep your forks sync'd w/ upstream/master [00:27:02] <lincolnthree> actually i have a minute [00:27:04] <ALR> (ie. rebased) [00:27:06] <ALR> Oh, OK [00:27:46] <lincolnthree> 1 sec [00:27:52] <ALR> lincolnthree: Class<?> in Descriptors should only be used for input. [00:28:02] <ALR> We'll ditch it internally in favor of Class.getName() [00:28:11] <ALR> As Descriptors should only reflect metadata [00:28:16] <ALR> Not be tied to any ClassLoader [00:28:39] <lincolnthree> not what im talking about though [00:28:48] <ALR> OK, that was my impression of SD-33 [00:28:59] <lincolnthree> the API forces the client to have an instance of the actual Class object [00:29:06] <lincolnthree> which may or may not be the case in all situations [00:29:12] <ALR> The API is wicked incomplete/prototype [00:29:23] <ALR> Consider it "proof-of-concept" at the moment. [00:29:25] <lincolnthree> k, just wanted to double-check before I added too much [00:29:36] <lincolnthree> Eclipse made this fugly, but: [00:29:43] <lincolnthree> https://github.com/lincolnthree/shrinkwrap-descriptors/commit/bb1f359c91708044f7c41c6c0b9bc18702e01bef [00:29:44] <jbossbot> git [shrinkwrap-descriptors] bb1f359.. Lincoln Baxter, III began work on SHRINKDESC-33 and SHRINKDESC-21 [00:29:45] <jbossbot> jira [SHRINKDESC-33] Descriptors API forces classloading for configuration [Open (Unresolved) Enhancement, Major, Unassigned] https://issues.jboss.org/browse/SHRINKDESC-33 [00:29:46] <jbossbot> jira [SHRINKDESC-21] descriptor read-only mode [Open (Unresolved) Feature Request, Major, Unassigned] https://issues.jboss.org/browse/SHRINKDESC-21 [00:29:47] <lincolnthree> that's what I've started [00:30:44] <ALR> You're on a good path :) [00:30:46] <lincolnthree> I've created 2 new interfaces for sanity purposes w/separating read/write capabilities, but for now the *Descriptor interfaces extend the DescriptorReader interfaces [00:30:50] <ALR> And as I said, you can take Class as an input [00:30:58] <ALR> So long as we don't preserve it internally. [00:31:05] <lincolnthree> What I want to know is OK [00:31:14] <lincolnthree> is if we do not require Class at all [00:31:17] <lincolnthree> sure it can be an option [00:31:20] <ALR> Yep. [00:31:21] <lincolnthree> but we should also accept String [00:31:30] <ALR> Exactly, IMO we should take in both. [00:31:33] <lincolnthree> ok good [00:31:35] <lincolnthree> we are on the same page [00:31:36] <ALR> Overload the fucker. [00:31:39] <ALR> Yep. [00:31:56] <lincolnthree> And with regard to the reader interfaces [00:32:02] <lincolnthree> ill keep them separate for clarity [00:32:13] <lincolnthree> but are you fine with adding getters to the *Descriptor interfaces? [00:32:22] <lincolnthree> obviously they can only return Strings [00:33:44] <lincolnthree> (I might need a tutorial on rebase) [00:35:21] <ALR> I like this idea. [00:35:27] <ALR> But not like Collections is implements. [00:35:29] <ALR> *implemented [00:35:40] <ALR> Let's talk about java.util Collections as a metaphor? [00:35:54] <ALR> I read something long back that I agreed with. [00:36:00] <ALR> About how it should have been: [00:36:03] <ALR> Map [00:36:07] <ALR> MutableMap extends Map [00:36:15] <ALR> Map would have been read-only. [00:36:28] <ALR> And Collections.unmodifyableMap() would not exist [00:36:33] <ALR> As that breaks the Map contract [00:36:51] <ALR> So in that sense we could easily export an immutable view: [00:36:55] <ALR> WebAppDescriptor [00:37:02] <ALR> And if mutating is needed: [00:37:09] <ALR> MutableWebAppDescriptor [00:40:13] <lincolnthree> ALR sorry - catching up [00:41:05] <lincolnthree> Ok, so in a sense, you are thinking about reversing the contract between Descriptor and DescriptorReader [00:41:11] <lincolnthree> DescriptorReader in a sense becomes the Descriptor [00:41:24] <lincolnthree> and Descriptor becomes MutableDescriptor, including all of the builder pattern APIs [00:41:29] <lincolnthree> I think I like that idea [00:41:45] <ALR> Yeah. [00:41:51] <ALR> We can muck w/ the names. [00:41:56] <ALR> But the base level is read [00:42:06] <ALR> And the extension interface adds write capabilities [00:42:06] <lincolnthree> How do you feel that importing/exporting should work [00:42:11] <ALR> As it is. [00:42:23] <lincolnthree> E.g. How do you get a handle to the Mutable Descriptor [00:42:26] <lincolnthree> type-cast [00:42:31] <lincolnthree> instanceof check [00:42:36] <lincolnthree> etc? [00:42:37] <ALR> as(MutableDescriptor) [00:43:20] <lincolnthree> im sorry, where ? [00:45:00] <lincolnthree> gotta run [00:45:01] <lincolnthree> back later [00:45:13] <lincolnthree> will continue as we've discussed, and will check for further feedback here [00:45:13] <ALR> Hehe, OK. [00:45:18] <ALR> I'm off to the gym, [00:45:21] <lincolnthree> Word [00:45:24] <lincolnthree> Tear it up [00:45:25] <ALR> lincolnthree: Yeah, ShrinkWrap Dev post [00:45:29] <lincolnthree> *nod* [00:45:34] <ALR> And we can do this in non-real-time [00:45:35] <ALR> Late. [00:59:05] *** alesj has quit IRC [01:07:45] *** bleathem has quit IRC [02:05:57] *** jganoff has joined #jbosstesting [02:18:09] *** jganoff has quit IRC [02:22:36] *** michaelschuetz has quit IRC [02:33:52] *** ALR has quit IRC [03:00:20] *** bgeorges has joined #jbosstesting [03:11:56] *** lightguard_jp has quit IRC [03:28:23] *** lightguard_jp has joined #jbosstesting [03:32:34] *** bgeorges has quit IRC [03:33:21] *** bgeorges has joined #jbosstesting [03:33:52] *** ldimaggi_ has joined #jbosstesting [04:17:20] *** lightguard_jp has quit IRC [05:11:56] *** lightguard_jp has joined #jbosstesting [05:40:01] *** ldimaggi_ has quit IRC [06:34:21] *** lincolnthree has quit IRC [06:49:53] *** asgeirf has joined #jbosstesting [06:51:47] *** asgeirf has quit IRC [07:18:24] *** hatchetman82 has joined #jbosstesting [07:31:14] *** bleathem has joined #jbosstesting [07:41:57] *** oskutka has joined #jbosstesting [07:55:35] <hatchetman82> if i have a WarArchive, and i call setManufect() on it, shouldnt the manifect be in META-INF/ ? [07:55:50] <hatchetman82> it puts it under WEB-INF/classes/META-INF [07:55:57] <hatchetman82> (shrinkwrap i mean) [08:15:04] *** jdewinne has joined #jbosstesting [08:21:05] *** lightgua1d_jp has joined #jbosstesting [08:22:41] *** bleathem has quit IRC [08:23:56] *** asgeirf has joined #jbosstesting [08:25:17] *** lightguard_jp has quit IRC [08:26:24] *** lightgua1d_jp has quit IRC [08:26:44] *** alesj has joined #jbosstesting [08:33:25] *** ge0ffrey has joined #jbosstesting [08:36:39] *** lfryc has joined #jbosstesting [08:38:00] *** mgoldmann has joined #jbosstesting [08:40:29] *** jdewinne has quit IRC [08:46:30] *** wolfc has joined #jbosstesting [08:48:48] *** ALR has joined #jbosstesting [08:58:56] *** GTobi has joined #jbosstesting [09:02:20] *** michaelschuetz has joined #jbosstesting [09:10:46] *** kpiwko has joined #jbosstesting [09:31:33] *** michaelschuetz has quit IRC [09:33:00] *** michaelschuetz has joined #jbosstesting [09:47:48] *** jharting has joined #jbosstesting [09:54:36] *** bgeorges has quit IRC [09:57:04] *** maeste has joined #jbosstesting [10:21:00] *** vtunka has joined #jbosstesting [10:23:05] *** kenglxn has joined #jbosstesting [10:27:57] *** kenglxn has left #jbosstesting [10:29:23] *** michaelschuetz has quit IRC [10:30:32] *** michaelschuetz has joined #jbosstesting [10:52:14] *** rruss has quit IRC [11:13:50] *** ALR has quit IRC [11:21:35] <hatchetman82> ...where is everyone ? [11:42:22] *** michaelschuetz has quit IRC [11:46:50] *** bambitroll has joined #jbosstesting [11:46:57] *** michaelschuetz has joined #jbosstesting [11:54:39] <bambitroll> hi guys.... yesterday I was trying to get something like this working in my arquillian test: [11:54:55] <bambitroll> @PersistenceContext [11:54:55] <bambitroll> private EntityManager em; [11:55:08] <bambitroll> but whatever I do I get a Null Pointer [11:55:26] <bambitroll> I am not using EE6, only EE5 with JBoss AS 5.1 [11:55:45] <bambitroll> I tried to specify the unitName but it did not help... [11:56:00] <bambitroll> any idea how to get the EntityManager properly injected? [11:56:35] <bambitroll> I see the persistence unit being properly created when Arquillian deploys the test archive [12:13:24] *** Jaikiran has joined #jbosstesting [12:23:55] *** michaelschuetz has quit IRC [12:36:55] *** ozizka has quit IRC [12:40:15] *** alesj has quit IRC [12:47:06] *** alesj has joined #jbosstesting [12:57:21] *** Zjukov has joined #jbosstesting [12:57:48] *** oskutka1 has joined #jbosstesting [12:58:23] <Zjukov> My tests are not injected properly (PersistenceContext, UserTransaction), what could be the problem? :-S [12:58:29] *** oskutka has quit IRC [13:03:42] *** michaelschuetz has joined #jbosstesting [13:06:49] <bambitroll> Zjukov: you can try something like this: http://javahowto.blogspot.com/2007/11/how-to-get-container-managed.html [13:07:13] *** OndejZizka has joined #jbosstesting [13:07:39] <Zjukov> bambitroll I'll look into it, thanks! [13:18:12] *** oskutka1 has quit IRC [13:33:04] *** oskutka has joined #jbosstesting [14:16:11] <GTobi> is there an eta for shrinkwrap alpha 12? [14:16:47] <Zjukov> bambitroll I wish there was a simpler way than having to write a servlet for the test [14:29:06] <Zjukov> This is annoying, there isn't a single GlassFish remote test sample out there that is working... I found some project called JPA2 (official website) with both remote and embedded profiles, but when using the remote it doesn't work [14:48:02] *** vtunka has quit IRC [15:02:21] *** vtunka has joined #jbosstesting [15:05:20] *** ldimaggi_ has joined #jbosstesting [15:07:47] *** oskutka has quit IRC [15:08:52] *** rruss has joined #jbosstesting [15:08:57] *** oskutka has joined #jbosstesting [15:23:56] *** lincolnthree has joined #jbosstesting [15:29:36] *** maeste is now known as maeste_afk [16:07:56] *** vtunka_ has joined #jbosstesting [16:08:49] *** asgeirf has quit IRC [16:09:17] *** vtunka has quit IRC [16:23:24] *** Jaikiran has quit IRC [16:52:22] *** oskutka has quit IRC [17:03:44] *** GTobi has quit IRC [17:13:38] *** michaelschuetz has quit IRC [17:15:29] *** lightguard_jp has joined #jbosstesting [17:17:26] *** kenglxn has joined #jbosstesting [17:17:30] *** kenglxn has left #jbosstesting [17:29:38] *** jharting has quit IRC [17:36:10] *** kpiwko has quit IRC [17:39:52] *** hatchetman82 has quit IRC [17:41:27] *** ldimaggi_ has quit IRC [17:42:06] *** ldimaggi_ has joined #jbosstesting [17:43:26] *** jdlee has quit IRC [17:47:39] *** bambitroll has quit IRC [17:52:14] *** jdlee has joined #jbosstesting [17:52:15] *** jdlee has joined #jbosstesting [17:59:50] *** lightguard_jp has quit IRC [18:04:40] *** lfryc has quit IRC [18:07:10] *** ldimaggi_ has quit IRC [18:15:01] *** lightguard_jp has joined #jbosstesting [18:21:24] *** alesj has quit IRC [18:22:33] *** ldimaggi_ has joined #jbosstesting [18:30:08] *** vtunka_ has quit IRC [18:32:35] *** bleathem has joined #jbosstesting [18:48:05] *** Tashtego has joined #jbosstesting [18:48:25] <Tashtego> hi [19:04:34] *** jdewinne has joined #jbosstesting [19:28:07] *** michaelschuetz has joined #jbosstesting [19:34:45] *** alesj has joined #jbosstesting [19:36:34] *** asgeirf has joined #jbosstesting [19:55:12] *** asgeirf has quit IRC [20:01:47] *** jdewinne has quit IRC [20:04:54] *** michaelschuetz1 has joined #jbosstesting [20:07:11] *** michaelschuetz has quit IRC [20:22:21] *** alesj has quit IRC [20:28:18] *** asgeirf has joined #jbosstesting [20:36:07] *** michaelschuetz has joined #jbosstesting [20:39:11] *** michaelschuetz1 has quit IRC [20:57:15] *** lincolnthree has left #jbosstesting [20:58:21] *** nickarls has quit IRC [21:05:26] *** asgeirf has quit IRC [21:30:47] *** ge0ffrey has quit IRC [21:33:47] *** bleathem has quit IRC [21:47:37] *** Zjukov has quit IRC [21:47:37] *** Elisha has quit IRC [21:47:38] *** baaba_ has quit IRC [21:47:40] *** dmlloyd has quit IRC [21:47:41] *** lightguard_jp has quit IRC [21:47:43] *** ChanServ has quit IRC [21:47:44] *** rruss has quit IRC [21:47:45] *** stuartdouglas has quit IRC [21:47:51] *** OndejZizka has quit IRC [21:47:57] *** dblevins has quit IRC [21:48:02] *** jdlee has quit IRC [21:48:05] *** Tashtego has quit IRC [21:48:06] *** jbossbot has quit IRC [21:48:09] *** michaelschuetz has quit IRC [21:48:10] *** ldimaggi_ has quit IRC [21:48:11] *** maeste_afk has quit IRC [21:48:11] *** wolfc has quit IRC [21:48:12] *** bobmcw has quit IRC [21:48:16] *** mgoldmann has quit IRC [21:59:56] *** michaelschuetz has joined #jbosstesting [21:59:56] *** Tashtego has joined #jbosstesting [21:59:56] *** ldimaggi_ has joined #jbosstesting [21:59:56] *** lightguard_jp has joined #jbosstesting [21:59:56] *** jdlee has joined #jbosstesting [21:59:56] *** rruss has joined #jbosstesting [21:59:56] *** OndejZizka has joined #jbosstesting [21:59:56] *** Zjukov has joined #jbosstesting [21:59:56] *** maeste_afk has joined #jbosstesting [21:59:56] *** wolfc has joined #jbosstesting [21:59:56] *** mgoldmann has joined #jbosstesting [21:59:56] *** Elisha has joined #jbosstesting [21:59:56] *** jbossbot has joined #jbosstesting [21:59:56] *** stuartdouglas has joined #jbosstesting [21:59:56] *** bobmcw has joined #jbosstesting [21:59:56] *** dmlloyd has joined #jbosstesting [21:59:56] *** baaba_ has joined #jbosstesting [21:59:56] *** dblevins has joined #jbosstesting [21:59:56] *** ChanServ has joined #jbosstesting [21:59:56] *** leguin.freenode.net sets mode: +o ChanServ [22:00:00] *** Zjukov has quit IRC [22:00:01] *** Elisha has quit IRC [22:00:01] *** baaba_ has quit IRC [22:00:03] *** dmlloyd has quit IRC [22:00:04] *** lightguard_jp has quit IRC [22:00:05] *** ChanServ has quit IRC [22:00:06] *** rruss has quit IRC [22:00:07] *** stuartdouglas has quit IRC [22:00:12] *** OndejZizka has quit IRC [22:00:17] *** dblevins has quit IRC [22:00:21] *** jdlee has quit IRC [22:00:24] *** Tashtego has quit IRC [22:00:24] *** jbossbot has quit IRC [22:00:27] *** michaelschuetz has quit IRC [22:00:27] *** ldimaggi_ has quit IRC [22:00:28] *** maeste_afk has quit IRC [22:00:29] *** wolfc has quit IRC [22:00:29] *** bobmcw has quit IRC [22:00:33] *** mgoldmann has quit IRC [22:00:51] *** michaelschuetz has joined #jbosstesting [22:00:51] *** Tashtego has joined #jbosstesting [22:00:51] *** ldimaggi_ has joined #jbosstesting [22:00:51] *** lightguard_jp has joined #jbosstesting [22:00:51] *** jdlee has joined #jbosstesting [22:00:51] *** rruss has joined #jbosstesting [22:00:51] *** OndejZizka has joined #jbosstesting [22:00:51] *** Zjukov has joined #jbosstesting [22:00:51] *** maeste_afk has joined #jbosstesting [22:00:51] *** wolfc has joined #jbosstesting [22:00:51] *** mgoldmann has joined #jbosstesting [22:00:51] *** Elisha has joined #jbosstesting [22:00:51] *** jbossbot has joined #jbosstesting [22:00:51] *** stuartdouglas has joined #jbosstesting [22:00:51] *** bobmcw has joined #jbosstesting [22:00:51] *** dmlloyd has joined #jbosstesting [22:00:51] *** baaba_ has joined #jbosstesting [22:00:51] *** ChanServ has joined #jbosstesting [22:00:51] *** dblevins has joined #jbosstesting [22:00:51] *** leguin.freenode.net sets mode: +o ChanServ [22:11:04] *** Zjukov has quit IRC [22:11:04] *** Elisha has quit IRC [22:11:05] *** baaba_ has quit IRC [22:11:06] *** dmlloyd has quit IRC [22:11:08] *** lightguard_jp has quit IRC [22:11:09] *** ChanServ has quit IRC [22:11:10] *** rruss has quit IRC [22:11:11] *** stuartdouglas has quit IRC [22:12:04] *** lightguard_jp has joined #jbosstesting [22:12:04] *** Zjukov has joined #jbosstesting [22:12:04] *** Elisha has joined #jbosstesting [22:12:04] *** dmlloyd has joined #jbosstesting [22:12:04] *** baaba_ has joined #jbosstesting [22:12:04] *** ChanServ has joined #jbosstesting [22:12:04] *** leguin.freenode.net sets mode: +o ChanServ [22:13:27] *** rruss has joined #jbosstesting [22:13:28] *** stuartdouglas has joined #jbosstesting [22:13:32] *** stuartdouglas_ has joined #jbosstesting [22:13:35] *** stuartdouglas_ has joined #jbosstesting [22:26:48] *** alesj has joined #jbosstesting [22:37:40] *** mgoldmann has quit IRC [22:44:38] *** asgeirf has joined #jbosstesting [22:52:32] *** rruss has quit IRC [22:52:39] *** Zjukov has quit IRC [22:52:39] *** Elisha has quit IRC [22:52:40] *** baaba_ has quit IRC [22:52:42] *** dmlloyd has quit IRC [22:52:43] *** lightguard_jp has quit IRC [22:52:45] *** ChanServ has quit IRC [22:52:47] *** OndejZizka has quit IRC [22:52:53] *** dblevins has quit IRC [22:52:58] *** jdlee has quit IRC [22:53:02] *** Tashtego has quit IRC [22:53:02] *** jbossbot has quit IRC [22:53:05] *** michaelschuetz has quit IRC [22:53:05] *** ldimaggi_ has quit IRC [22:53:07] *** maeste_afk has quit IRC [22:53:07] *** wolfc has quit IRC [22:53:08] *** bobmcw has quit IRC [22:53:14] *** asgeirf has quit IRC [22:53:14] *** alesj has quit IRC [22:53:14] *** stuartdouglas_ has quit IRC [22:56:22] *** alesj has joined #jbosstesting [22:56:22] *** stuartdouglas_ has joined #jbosstesting [22:56:22] *** rruss has joined #jbosstesting [22:56:22] *** ChanServ has joined #jbosstesting [22:56:22] *** baaba_ has joined #jbosstesting [22:56:22] *** dmlloyd has joined #jbosstesting [22:56:22] *** Elisha has joined #jbosstesting [22:56:22] *** Zjukov has joined #jbosstesting [22:56:22] *** lightguard_jp has joined #jbosstesting [22:56:22] *** michaelschuetz has joined #jbosstesting [22:56:22] *** Tashtego has joined #jbosstesting [22:56:22] *** ldimaggi_ has joined #jbosstesting [22:56:22] *** jdlee has joined #jbosstesting [22:56:22] *** OndejZizka has joined #jbosstesting [22:56:22] *** maeste_afk has joined #jbosstesting [22:56:22] *** wolfc has joined #jbosstesting [22:56:22] *** jbossbot has joined #jbosstesting [22:56:22] *** bobmcw has joined #jbosstesting [22:56:22] *** dblevins has joined #jbosstesting [22:56:22] *** leguin.freenode.net sets mode: +o ChanServ [22:56:30] *** michaelschuetz has quit IRC [23:04:51] *** nickarls has joined #jbosstesting [23:09:11] *** Zjukov has quit IRC [23:11:22] *** ldimaggi_ has quit IRC [23:50:37] *** bleathem has joined #jbosstesting