Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
14answers
45k views

How to generate sample XML documents from their DTD or XSD?

We are developing an application that involves a substantial amount of XML transformations. We do not have any proper input test data per se, only DTD or XSD files. We'd like to generate our test data ...
8
votes
4answers
3k views

How do I generate a random list of person names?

I need to generate a list of people's name randomly. Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames. --EDIT-- Just want to make it ...
8
votes
1answer
2k views

PHP Script to populate MySQL tables

Is anyone aware of a script/class (preferably in PHP) that would parse a given MySQL table's structure and then fill it with x number of rows of random test data based on the field types? I have never ...
7
votes
3answers
395 views

Populate tables with test data whilst maintaining relational integrity

I have a MySQL database with InnoDB tables, many of which have foreign keys. I was going to write a script to populate the tables with test data (10-20k rows or more) but I thought I ought to ask if ...
7
votes
6answers
287 views

Persisting complex test data

We are using builder pattern to generate test data. These domain objects have relations between them. Our functional tests require these objects to be persisted. Think about this model: If I want ...
7
votes
6answers
5k views

Test User Data (Fake Data)

Does anyone know of a large formatted collection of fake user data (names, email address, locations, etc.) that can be used for testing an application? It can be clearly fake, this will be limited to ...
5
votes
2answers
144 views

Any good surname databases?

I'm looking to generate some database test data, specifically table columns containing people's names. In order to get a good indication of how well indexing works with regard to name based searches I ...
5
votes
3answers
752 views

Traveling salesman example with known global optimum

I made a memetic algorithm in Python for traveling salesman problem. However, all the test data (list of distances between cities) I've encountered lack the information of the best solution, so I ...
5
votes
1answer
985 views

Open Source/ Free alternatives to Redgate Test Data Generator

I was wondering if there are any free / open source alternatives to RedGate's Data Generator. I do not care if the tool is script based, GUI based, written in anly language/platform. I should be able ...
4
votes
3answers
81 views

List of mock valid/invalid Email Addresses for Unit Tests

By any chance does anyone know of a list of email addresses (don't need to be real) I can use for an email validation assembly for a unit test. I've been looking for one and can't seem to find one, ...
4
votes
2answers
2k views

Using HSQL for .NET developement and related questions of process

My team uses a shared instance of Oracle for development using C#, NHibernate and ASP.NET, and we occasionally step on each others toes when making data or schema changes holding up everyone. On ...
4
votes
5answers
2k views

Sample database for exercise

I would like to play with a larger database to test my knowledge on SQL. Is there a huge .sql out there that I can use to play with SQL queries?
3
votes
1answer
189 views

JUnit in android

I am familiar with JUnit testing in android.. My Question is if we are using calculator and we want to test addition operation..To test the addition operation if we are using more number of test ...
3
votes
3answers
2k views

Spring/Hibernate testing: Inserting test data after DDL creation

I have a Spring/Hibernate webapp that has some integration tests that run on an in-memory HSQL database. Hibernate takes this blank database and creates all of my test tables and constraints thanks ...
3
votes
4answers
559 views

Mock Object Data

I'd like to mock up object data, not the objects themselves. In other words, I would like to generate a collection of n objects and pass it into a function which generates random data strings and ...
3
votes
4answers
1k views

Sample Data Creation Tool (mainly for Databases)

I’m thinking through some database design concepts and believe that creating sample data simulating real-world volume of my application will help solidify some design decisions. Does any anyone ...
2
votes
1answer
84 views

Testdatageneration with AutoFixture: resolving ICollection<T> without mentioning every single T

I try to use AutoFixture 2 to generate testdata for EntityFramework4 classes that have ICollection member. public class Parent { public virtual ICollection<Child1> Children1 { ...
2
votes
7answers
252 views

How to create big datasets for test purposes?

I need to test some charting classes. For these I want to create a big dataset of 1-2 million data! How can I create such big datasets? thanks
2
votes
6answers
120 views

Good test database on Windows to play around with data retrieval operations in SQL?

I need a test database to practice joins and other kinds of data retrieval operations in SQL. What's a good free test database and RDBMS system to use on Windows?
2
votes
1answer
47 views

Generating data on unlevel background

I want to make an unlevel background and then generate some test data on that using Matlab. I was not clear when I asked this question earlier. So for this simple example for i = 1:10 for j = 1:10 ...
2
votes
1answer
88 views

Distributing appointments over a date range

I am trying to generate some test data. Say I have 1000 appointments that I need to allocate over a date range. Now I need to distribute these appointments such that there are twice as many ...
2
votes
4answers
1k views

Simple Pseudo-Random Algorithm

I'm need a pseudo-random generator which takes a number as input and returns another number witch is reproducible and seems to be random. Each input number should match to exactly one output number ...
2
votes
4answers
175 views

Where do you keep your test data files?

Sort of a spinoff of this question. Do you keep them in the source tree? Do you keep them in source control? I'm thinking that if your test cases refer to files, then the files are part of the ...
1
vote
1answer
56 views

Representative sample test XML file

I'm looking for a somewhat representative sample test XML file for a typical application. It should contain all typical XML features, such as Elements with and without attributes Text (both ...
1
vote
3answers
79 views

Looking for web page test text?

I am looking for sample text like below for this photoshop tutorial, what's language is it? Could you point me where to find such test text I have seen a lot times from tutorials and books for ...
1
vote
1answer
113 views

Sample Database for Full Text Searching

I am looking to do some benchmarking on Full Text Search indexes in PostgreSQL, SQLServer and Lucene. Any ideas on where to find a good big sample database to perform queries against? Thanks a lot ...
1
vote
3answers
173 views

Where to find free-to-use, complex test databases?

I need a database for testing a data masking solution. Any database would do (Oracle/MSSQL flavor). I just need the schema / db definition. I have tools to generate data records. The magnitude of ...
1
vote
5answers
881 views

generate a random file using shell script

How can i generate a random file filled with random number or character in shell script? I also want to specify size of the file.
1
vote
3answers
315 views

Automatically generated test data to a DB from a schema?

I have a discussion-db, and I need a great amount of test data, for different sized samples. Please, see the ready SELECT, JOIN and CREATE-queries, please scroll down in the link. How can I ...
1
vote
4answers
113 views

Source for generating people data?

This is only tangentially a programming question. Where can I find a simple-to-parse list of people names? This is really just filler material, so they don't need much rhyme or reason. Alternatively, ...
0
votes
1answer
46 views

Calling .CreateSourceQuery() on Navigation Property returns null when Unit Testing; works on actual database, how do I setup my test data to match?

I have a method which is taking my Entity Framework Entity and converting it into a DTO object. In this method I have parameters to skip and limit the number of related items to return. With small ...
0
votes
1answer
59 views

Active Directory - Test users and groups

I am wanting to test a tool which synchronises with Active Directory. I want a decent number of users and groups to give the utility a reasonably rigorous test. Does any know a way of populating AD ...
0
votes
0answers
57 views

Random values consistent with a best-fit curve

I'm contemplating the generation of test data with interesting distributions. I understand methods for the generation of uniform distribution and normal distribution, but how can I transform an ...
0
votes
1answer
95 views

Large sample database for HSQLDB?

I'm taking a database class and I'd like to have a large sample database to experiment with. My definition of large here is that there's enough data in the database so that if I try a query that's ...
0
votes
0answers
37 views

Test data for webshop project

I'm in the progress of building a web shop, and I want to test my catalog on large a large number of test products (say >1 million, it doesn't really matter what kind of products, since I'm building ...
0
votes
0answers
95 views

How do I generate hierarchical test sql data for a transitive closure?

I've got a transitive closure table that represents my tree, and I want to create a test hierarchy for it. A four node tree would look like this: Tree: (implied by transitive closure) A - NULL B - A ...
0
votes
2answers
474 views

Dummy data generator

Can you suggest sites where I can generate dummy data based on my requirement for testing purposes of my project? Note: I need a dummy data for usage of VMs and physical servers in terms of memory, ...
0
votes
2answers
171 views

Test Data for Video Encoding

Image processing and compression algorithms are typically compared on sets of widely available, well known images. Is there a collection of video files for the same purpose, that are publicly ...
0
votes
2answers
57 views

Where can I find a boatload of source files for stress testing source scanning systems?

I thought the Linux kernel would have a massive amount of SLOC but it isn't even making OpenGrok blink. I know the question of the largest project has been asked but what collection of code is ...