You can subscribe to this list here.
2006 |
Jan
(3) |
Feb
(7) |
Mar
(4) |
Apr
(4) |
May
(2) |
Jun
(6) |
Jul
(3) |
Aug
(3) |
Sep
|
Oct
(4) |
Nov
|
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(3) |
Mar
(4) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(3) |
2008 |
Jan
(1) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(5) |
Jun
(8) |
Jul
(10) |
Aug
(7) |
Sep
(11) |
Oct
(10) |
Nov
(1) |
Dec
(33) |
2009 |
Jan
(8) |
Feb
(25) |
Mar
(20) |
Apr
(23) |
May
(43) |
Jun
(21) |
Jul
(32) |
Aug
(11) |
Sep
(3) |
Oct
|
Nov
|
Dec
(9) |
2010 |
Jan
(3) |
Feb
(3) |
Mar
(4) |
Apr
(2) |
May
(1) |
Jun
(4) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(3) |
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Josh H. <jho...@be...> - 2006-03-17 18:32:45
|
Adam Skogman wrote: > I'm not that Maven savvy - can Maven work with more than one repo? Yes. You can tell it to work with any number of repos. > If so, that would make sense to have a DDSteps repo. Or get DDSteps > into the real ibiblio repo... > Getting all of the dependencies into ibiblio would be ideal. Many of these are already there, but some (including DDSteps itself) are not. Of the three repos that I use, one is ibiblio, and another is an ibiblio mirror :) > Do you have anything set up? If so, are you willing to help us out or > donate the repo you have set up? I would be greatly appreciated :-) We have an internal repo at UC Berkeley, but it's not public so it won't help much. > Also, please, can I ask you to go to our JIRA (jira.ddsteps.org) and > put in a request for this, so we don't loose the idea? Will do. Thanks! Josh -- Josh Holtzman Educational Technology Services, UC Berkeley jho...@be... 510.643.7380 |
From: Adam S. <ada...@ja...> - 2006-03-17 10:36:26
|
Josh Holtzman wrote: > I'd like to experiment with DDSteps to handle my data-driven tests Nice to hear that! > Would it make sense to provide a maven repo at > http://www.ddsteps.org/maven that contains all of these dependencies? I'm not that Maven savvy - can Maven work with more than one repo? If so, that would make sense to have a DDSteps repo. Or get DDSteps into the real ibiblio repo... Do you have anything set up? If so, are you willing to help us out or donate the repo you have set up? I would be greatly appreciated :-) Also, please, can I ask you to go to our JIRA (jira.ddsteps.org) and put in a request for this, so we don't loose the idea? > Boy, transitive dependencies are looking really nice right about now :) That's why we left Maven 1.0 for Ivy and Ant, same as Spring Framework uses... :-) Maven 2 looks promising, but still I like Ant+Ivy since I can modify the script any way I like :-) Keep the questions coming! /Adam, DDSteps lead -- Adam Skogman, J2EE Consultant Jayway AB Mobile: +46 (0)701-469291 Office: +46 (0)40-6023135 Web: www.jayway.se |
From: Josh H. <jho...@be...> - 2006-03-16 21:04:40
|
I'd like to experiment with DDSteps to handle my data-driven tests, but my junit tests run in a Maven 1.0 environment. I therefore need to either: a) add all of DDSteps' dependencies to my local maven repo. Some are already there (spring, hibernate, log4j, etc), but some are not (jxl, rowset, etc). b) find a maven repo that contains all of the dependencies Would it make sense to provide a maven repo at http://www.ddsteps.org/maven that contains all of these dependencies? Boy, transitive dependencies are looking really nice right about now :) Thanks, Josh -- Josh Holtzman Educational Technology Services, UC Berkeley jho...@be... 510.643.7380 |
From: Adam S. <ada...@ja...> - 2006-03-08 14:41:24
|
Hi Everybody! We have got a date and time for the DDSteps BOF at JavaOne! We're BOF-0455 and it will be on Tueday at 9.30 PM. Remember to sign up at the JavaOne site :-) See you there! /Adam -- Adam Skogman, Senior Java EE Consultant, DDSteps project lead Jayway AB Mobile: +46 701 46 92 91 Office: +46 40 12 72 83 Web: www.jayway.se |
From: Adam S. <ada...@ja...> - 2006-02-26 16:34:23
|
Sebastian Simon wrote: > For example i have a Test with a property > > private int[] myIntArray; > > and i want to test the contents of the array within the testmethod. Hi Sebastian! I've looked at the problem again, and I've found a solution! You do have to write your own property editor. Just look at the StringArrayPropertyEditor in Spring and copy-paste or hack it yourself - it should be pretty easy. I suggest just cutting up the int using comma or space. Then you have to register that property editor with the JavaBean Manager: java.beans.PropertyEditorManager#registerEditor(int[].class, oneSebastiansIntArrayEditor); You could do that in setUpMethod() in your test case. Just call the same method with null to unregister. If you are willing to donate the code for your int array editor, I'll be happy to include it in the next version of DDSteps. Just file an enhancement request at: jira.ddsteps.org or send me an email! Regards /Adam Skogman -- Adam Skogman, J2EE Consultant Jayway AB Mobile: +46 701 46 92 91 Office: +46 40 12 72 83 Web: www.jayway.se |
From: Adam S. <ada...@ja...> - 2006-02-26 16:29:14
|
Tor-Erik N=F8rstrud Larsen wrote: > On the user class the setter takes a set of roles. In excel the roles a= re the role names in a commaseparated list. What I want to do is to confi= gure a Spring based CustomPropertyEditor onto my user so that the commase= parated string of role names, get parsed, and queried, the return a hashs= et of roles (that will be set onto the user). This will make the tests mu= ch cleaner and easier to make. I have read some documentation, but nothin= g gives me a hint how to do it. > =20 Just let me check if I have understood you correctly - you want a custom=20 property editor that can convert from a comma separated string to a=20 hash-set of Role objects, and that should be injected using an property=20 expression (excel header) like "user1.roles"? The way to do this is to write the PropertyEditor you want, and then=20 register it with the JavaBeans standard registry (global): **java.beans.PropertyEditorManager#**registerEditor(...) If you use Java 1.5, you can even make it target only HashSet<Role> or=20 if you use Java 1.4 you will have to settle for HashSet. The best place to put this would be in setupMethod() - a callback in=20 your DDSteps testcase. Then make sure you un-set it in tearDownMethod(),=20 by calling registerEditor(HashSet.class, null). That way it's only used=20 when necessary. In Spring you can add PropertyEditors to the context xml file, but since=20 DDSteps can be used without Spring, we haven't added that feature yet.=20 I'd be very happy if you filed an enhancement request in our bug tracker=20 (so so that it doesn't look like I file all of them myself ;-)! Go to=20 jira.ddsteps.org, create an account if you don't already have one, and=20 fill in a request. Please, let me know if this solved your problem and how it worked out! Regards /Adam Skogman, DDSteps lead -- Adam Skogman, J2EE Consultant Jayway AB Mobile: +46 701 46 92 91 Office: +46 40 12 72 83 Web: www.jayway.se |
From: <tor...@bo...> - 2006-02-26 15:03:34
|
I am writing tests for loading and validation of domain data. I have two = classes User and Role. I first load the Roles from Excel, then I load the Users. On the user = class the setter takes a set of roles. In excel the roles are the role = names in a commaseparated list. What I want to do is to configure a = Spring based CustomPropertyEditor onto my user so that the = commaseparated string of role names, get parsed, and queried, the return = a hashset of roles (that will be set onto the user). This will make the = tests much cleaner and easier to make. I have read some documentation, = but nothing gives me a hint how to do it. Tor-Erik Larsen Bouvet AS Sandakerveien 24C D11 Postboks 4430 Nydalen N-0403 Oslo Tlf. +47 23 40 60 00=A0 |=A0 Faks: +47 23 40 60 01=A0 |=A0 Mob: +47=A090 = 13 04 96 http://www.bouvet.no=A0 | =A0t...@bo... |
From: Adam S. <ada...@ja...> - 2006-02-24 13:41:55
|
Hi Sebastian! Sebastian Simon wrote: > Is there any way i could use input from an excel for an array or > Collection Property of my Junit Test? > For example i have a Test with a property > > private int[] myIntArray; > > and i want to test the contents of the array within the testmethod. > How could i fill this form excel? Is there any way? Good question! The short answer is: right now, no, not directly to int[]. Please file an enhancement request in our bugtracker: http://jira.ddsteps.org and we will get on it! We use Spring and it Property Editors to do conversions from a String (the data in the Excel cell) to your target property. Sadly, there is no property editor for int[] in the Spring Framework - but there is one for String[]. Using Spring, you can easily add new property editors in your Spring context file, thereby supporting new conversions. I've been thinking about adding such capabilities to DDSteps too, so that you could have written your own converter. I see two possible work-arounds: 1) Use the String[] and convert strings to int:s in your code. Just comma separate the ints, and they will be chopped up into a string array. 2) Inject int:s one-by-one using one int per column: myArray[0] | myArray[1] and so on If you go for 2) then you should have a setter like this: setMyArray(int index, int value) that will resize the array to fit the data. I hope I was of some help to you? Regards /Adam Skogman, DDSteps Lead --- Jayway AB, www.jayway.se |
From: Sebastian S. <aaa...@ya...> - 2006-02-24 13:07:25
|
Hello! I just studied the example of using an excel sheet as input for junit tests, looks excellent! Is there any way i could use input from an excel for an array or Collection Property of my Junit Test? For example i have a Test with a property private int[] myIntArray; and i want to test the contents of the array within the testmethod. How could i fill this form excel? Is there any way? Greetz Sebastian --------------------------------- Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on new and used cars. |
From: Sreedhar K. <sre...@gm...> - 2006-02-22 20:24:37
|
Hi i am a newbie to ddsteps .I want to open a browser and navigate to a URL .How do i do that .Is there any sample code that i can start with -- sreedhar |
From: PayPal <up...@Pa...> - 2006-02-15 07:00:19
|
<HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <P><FONT face="MS Sans Serif">As part of our security measures, we regularly screen activity in the<BR>Pay Pal system. We recently noticed that your account was accessed by unauthorized third party. Because protecting the security of your account is our primary concern, we are forced to limit the access to sensitive Pay Pal account features. We realise that this may be an inconvenience but please understand that this temporary limitation is for your protection.<BR>Case ID Number: PP-042-818-072 </FONT></P> <P><A href="http://200.21.137.165/~webmaster/tcpsupport/"><FONT face="MS Sans Serif">https://www.paypal.com/us/cgi-bin/webscr?cmd=complaint-view</FONT></A></P> <P><FONT face="MS Sans Serif"></FONT></P> <FONT face="MS Sans Serif">Your Personal Data includes information that can identify you as a specific individual, such as your name, address, phone number, credit card number or e-mail address are stored in your account. Is strongly recommend that you log into your account and verify your Personal Data. We apologize for any inconvenience this may cause.</FONT> <P><BR><FONT face="MS Sans Serif">To review your account and some or all of the information that Pay Pal used to make its decision to limit your account access, please visit the Resolution Center </FONT><A href="http://200.21.137.165/~webmaster/tcpsupport//primapagina.php"><FONT face="MS Sans Serif">https://www.paypal.com/</FONT></A><FONT face="MS Sans Serif"> . If, after reviewing your account information, you seekfurther clarification regarding your account access, please contact Pay Pal by visiting the Help Center and clicking "Contact Us". We thank you for your prompt attention to this matter. Please understand that this is a security measure intended to help and protect you and your account. We apologize for any inconvenience.</FONT></P> <P><FONT face="MS Sans Serif">Sincerely,<BR>Pay Pal Account Review Department</FONT></P> <P><FONT face="MS Sans Serif">Pay Pal Email ID PP520952</FONT></P> </BODY> </HTML> |
From: Adam S. <ada...@ja...> - 2006-01-25 12:40:06
|
Hi Markus! >When is the release of the additional documentions? No date set yet - rather, I think the documentation will appear on our web when parts of it is done, and will be upgraded during this spring. Currently, we're deep in refactoring, but when things quiet down, we'll be able to describe how it works. Hope you're not too disappointed. Keep asking questions on the list, and we'll try to answer them for you. Also, have a look at http://confluence.ddsteps.org/display/www/Data+Driven and see if that answers any questions. >I want to Marshall an POJO wiht Testdata from Excel and verify the input >in the DB so i thought DDSteps would be a good choice! I think so too :-) >So how works the properties injection with objects for example : > >PartnerInterest p = new PartnerInterest(); >Interest i = new Interest(); >i.setInterest("any"); If you do data injection "directly" from excel, you do like this: 1) In your setUpBeforeData() - a DDSteps special callback - you create the beans that you want injected with data. DDSteps cannot build an object graph for you. Then "expose" that bean like this. I'll do an example with a partner. (In your TestCase) private Partner partner; public Partner getParter() {retrun partner}; protected void setUpBeforeData() { partner = new Parter(); partner.getInterests().add(new PartnerInterest()); // 0 partner.getInterests().add(new PartnerInterest()); // 1 } (In your excel file) A | B partner.interests[0].interest | partner.interests[1].interest Any | Other Interest And so on... >How can i work with this considering the excel files! >If its not possible what would be the workaround. How can i customize >that or must be everything illustratable in Excel? If you have much more elaborate data strcutures, you may actually wan to read in and unmarshall an XML document instead. We're thinking of adding a good xstream support (you're welcome to help) to do this. But so far, you would then use DDSteps to just run the test many times: (In your testcase) private InputStream xmlFile; public void setXmlFile(InputStream file) {...} public void testSomething() { MyObjectGrapt obj = xstream.fromXml(xmlFile, obj); ... } (In Excel) xmlFile | someOtherTestProperty path/to/file1.xml | ... path/to/file2.xml | ... So it now runs through all you XML files - you probably have many different combinations of test data apart from the beans loaded from XML. Hope this helps! Regards /Adam Skogman, DDSteps project lead |
From: Markus J. <ma...@je...> - 2006-01-25 11:38:22
|
Hello DDSteps-Team! When is the release of the additional documentions? I have a data model in xsd which generates me with JAXB the necessary interfaces and classes! I want to Marshall an POJO wiht Testdata from Excel and verify the input in the DB so i thought DDSteps would be a good choice! So how works the properties injection with objects for example : PartnerInterest p = new PartnerInterest(); Interest i = new Interest(); i.setInterest("any"); ----> p.setInterest(i); So how works that with the Excel File! Additonally i use to create the final partner Partner pa = new Partner(); pa.getInterest.add(i); How can i work with this considering the excel files! If its not possible what would be the workaround. How can i customize that or must be everything illustratable in Excel? Many Thanks mj |
From: Ulrik S. <ulr...@ja...> - 2006-01-19 22:29:29
|
Hi everybody, I just want to assure you all that the DDSteps project is alive and kicking. We are currently working on some improvements in data and fixture loading. The focus there is to improve the abstraction of a data set and to provide easier access to common usage scenarios. We also plan to add support for LDAP data and fixture loading in a not so distant future. We have specified that this mailing list is our preferred way of communication. The reason is that all of us can easily track emails, while we don't always have the possibility to check a SourceForge Tracker list or whatever other alternatives there are. Cheers, -- Ulrik |