Tagged Questions
The fixture tag has no wiki summary.
12
votes
1answer
991 views
How do I escape ERB code in fixtures?
I have a simple fixture.yml
label:
body: "<%= variable %>"
The issue is that the erb code is parsed as part of loading the fixture, but I actually want to body to be "<%= variable %>" ...
4
votes
1answer
217 views
Getting the primary key (id) in fixture (Python, SQLAlchemy)
I'm using fixture to test a Pylons app, but I stumbled upon a problem.
Let's say I have such data set:
class CompanyData(DataSet):
class test_company:
company_full_name = u'Firma Tęst'
...
4
votes
2answers
2k views
How do you put a file in a fixture in Django?
I can easily fill the field of a FileField or ImageField in a Django fixture with a file name, but that file doesn't exist and when I try to test my application it fails because that file doesn't ...
2
votes
1answer
51 views
Django - Foreign Keys in Fixtures
I have a fixture of "User" objects (just the default Django auth ones), and am trying to create a fixture of "Profile" objects. Each profile has a one-to-one relation to a user object, and defines ...
2
votes
2answers
1k views
With selenium getting the order of items in the dropdown or multiselect list
Using selenium I want to get the order of items or rather list of keys of the multiselect list or dropdown.
Seeing in selenium API i see that we can get the index of the selected items but I want to ...
2
votes
2answers
595 views
cannot dump data by using python ./manage.py dumpdata app
I crated an app in Django project. For testing purpose, I would like to create fixture files. I found that I can dump my database in order to create fixture automatically if I already has data. I want ...
2
votes
3answers
325 views
Importing fixtures with foreign keys and SQLAlchemy?
I've been experimenting with using fixture to load test data sets into my Pylons / PostgreSQL app. This works great except that it fails to properly create foreign keys if they reference an auto ...
2
votes
1answer
359 views
Fixtures for Google App Engine
Are there any Python tools to create fixtures on Google App Engine? I tried Fixture(http://farmdev.com/projects/fixture/). It is the most awesome tool I have come across. I love the clean approach and ...
2
votes
3answers
166 views
Are there any .net equivalents to Rails fixtures?
I'm looking for a project/tool that will insert data into a database before a test and roll it back after a test has run.
I know that ruby on rails has yaml fixtures, so I was hoping there is a ...
1
vote
1answer
37 views
boost-test initialization for each suite (not case)
I need to init some variables, which are "global" inside a BOOST_AUTO_TEST_SUITE
so their constructors will be called when the suite starts and their destructors will be called right after the last ...
1
vote
2answers
89 views
formatting string output with linebreaks and tabs in Python?
Im trying to extract some data from a large batch of files and convert them to a specific (JSON) format for importing into a database using Django Fixtures
I've been able to get this far:
'{ {\n ...
1
vote
1answer
91 views
Fitnesse Framework using regular expression in decision table?
How to use regular expression in Fitnesse for making a decision when decision string contains static text and dynamic text? I am interested in matching dynamic text with regexp?
I am using Decision ...
1
vote
1answer
51 views
Importing data from scanned text into Django as YAML fixture or SQL
I'm setting up a simple Django app -- a quiz. The questions and answers come from printed sample tests that have been scanned, OCR'd and parsed. I've parsed them into Python objects like so:
class ...
1
vote
0answers
155 views
Ruby on Rails - Fixtures populate sqlite3 database with wrong utf-8 encoding
Seeding the sqlite3 database with Fixtures did work with config1 but with config2 utf-8 support fails.
config1: Ubuntu 11.04, ruby 1.9.2p136, Rails 3.0.3, "development" environment
config2: OS X ...
1
vote
1answer
178 views
Yii: How is this fixture being referenced?
I'm following along in the Yii book and am on CH5 (page 101). In our unit tests, it has us define an array that specifies which fixture(s) to use:
class ProjectTest extends CDbTestCase {
}
public ...
1
vote
1answer
338 views
JUnit Testing with Object Fixture
Hey guys I'm trying to write a JUnit test to test something but it's just not clicking. I'm supposed to design a jUnit tester that is testing a class but uses another class that implements the ...
1
vote
1answer
175 views
Testing cherrypy with nose/fixture/webtest (amidoinitrite)
I am developing a CherryPy application and I want to write some automated tests for it. I chose to use nosetests for it. The application uses sqlalchemy as db backend so I need to use fixture package ...
1
vote
3answers
205 views
initial_data fixture management in django
The django projet I'm working on has a ton of initial_data fixture data. It seems by default the only way to have data load automatically is to have a file in your app folder called fixtures, and the ...
1
vote
6answers
2k views
How to load sql fixture in Django for User model?
Does anyone knows how to load initial data for auth.User using sql fixtures?
For my models, I just got have a < modelname >.sql file in a folder named sql that syncdb does it's job beautifully. But ...
1
vote
3answers
562 views
How do I populate a table in rails from a fixture?
Quick summary:
I have a Rails app that is a personal checklist / to-do list. Basically, you can log in and manage your to-do list.
My Question:
When a user creates a new account, I want to populate ...
1
vote
2answers
471 views
unit testing of dynamic fixtures
Is it possible to have a fixture change between test methods? If so, how can I do this?
My syntax for this problem :
In the cakephp framework i am building tests for a behavior that is configured ...
0
votes
0answers
7 views
How to load additional datafiles when using Grails fixture plugin?
i am using the Grails Fixture plugin and want to load some large
textual data piece from a seperate file so i load this file using:
fixture {
welcome(Message,
code: 'welcome',
...
0
votes
1answer
32 views
Grails fixture plugin how to load fixtures from an inline plugin?
we have an application that uses a centralized domain using an inline plugin. We where using bootstrap data so all of our applications that use the domain could use the bootstrap. Now when using the ...
0
votes
1answer
22 views
Mysql Stored procedure for a Fixture
i cannot finish this becaus is giving me an annoying error that i check and check but i still don't know what is going on, here is the code
DROP PROCEDURE IF EXISTS gen_par;
CREATE PROCEDURE ...
0
votes
1answer
56 views
Coordinate CCSprite with b2Fixture
I have created a single body in box2D, which consists of 2 fixtures.
I have a CCSprite userData for each fixture, but i don't know how to set the sprite position and rotation to match the fixture ...
0
votes
0answers
57 views
C++ GoogleTest parametrized fixture produces warning C4018 with Visual Studio
everyone!
I'm using Visual Studio 2010, and I'm getting C4018 warning when compiling one of my parametrized fixture tests. I'm not getting this error anywhere else, so I'm a bit puzzled by this. I ...
0
votes
0answers
72 views
How to execute rspec code with selenium conditionally depening on whether or not a test fails?
I use selenium and rspec to test a webapplication. I use database_cleaner to delete data which gets created by running my tests. In order to start with a clean database that only contains my fixtures, ...
0
votes
0answers
172 views
fitnesse: fixture not found error when running from junit
we are running fitnesse with a REST fixture (https://github.com/smartrics/RestFixture). The fixture's .jar and dependencies are defined in the root page, the tests execute successfully when run ...
0
votes
1answer
95 views
Making a django Fixture that gets 100 items from each Table, or follows foreign keys
I need to create some fixtures for django test. Does anyone know of a shortcut that lets me get x number of rows from every table in database and serialize it?
Background:
I have Multiple tables ...
0
votes
1answer
236 views
Box2d sensor rotation problem
in my app the user is able to move or rotate a box2d fixture. The collision detection works fine. But if I set the fixture as a sensor, with the SetSensor(true) method, the collision detection reacts ...
0
votes
1answer
173 views
How to stop further execution of Tests within a TestFixture if one of them fails in NUnit?
I want to stop further execution of Tests within a TestFixture if one of them fails in NUnit.
Of course the common and advised practice is to make tests independent of each other. However, the case I ...
0
votes
1answer
56 views
How to share a heavy object in Nunit between fixtures?
All.
I do some integration tests with NUnit and need a long running client setup per fixture. For me it will be good to setup the client only once. This will significantly reduce overall time. i do it ...
0
votes
1answer
750 views
Using FitNesse to test RESTful APIs using RestFixture & anonymous namespaces
I'm considering using FitNesse to write some acceptance tests for some extensions to a RESTful API. The GET response includes XML in an anonymous namespace, e.g.
<?xml version="1.0" ...
0
votes
1answer
91 views
How to pass data stored in table between test pages in fitnesse
In my fitnesse project i've got one table which stores authentication data to database. I'm using it on each site. Is it possible to have one site with that table and allow all other test sites use ...
0
votes
2answers
317 views
why python nose unittest teardown fixture failed
I'm using nose test framework. When running a test module, the teardown function defined in it failed. the error raised says the fixture is locked by another process. here is my test module, ...
0
votes
1answer
897 views
Need help with: Couldn't call Doctrine_Core::set()… symfony 1.4 fixture
I keep getting: Couldn't call Doctrine_Core::set(), second argument should be an instance of Doctrine_Collection when setting one-to-many references.
This happens when I include data for 'asset' in ...
0
votes
1answer
104 views
Parsing Xhtml strict documents with RestFixture
I have an xpath like
//xhtml:title[text()='Page Title']
and am getting an error from RestFixture that reads
java.lang.IllegalArgumentException: Cannot extract xpath '//xhtml:title[text='Page ...