The fixtures tag has no wiki summary.
1
vote
2answers
18 views
Symfony2. Populate ManyToMany connection table using data fixtures
I have following entities with many to many relation:
User
/**
* @ORM\ManyToMany(targetEntity = "Role", mappedBy = "users")
*
* @var ArrayCollection $roles;
*/
private $roles;
Role
/**
...
0
votes
0answers
9 views
Writing fixtures to load binary data into MySQL database with PHPUnit
I have to write some tests and in order for they to work they need to have some pre-existing data loaded in the database.
For most cases I got it working using the phpunit extension to load the ...
0
votes
0answers
21 views
Loading fixtures in django fails. 0 value for autofields
Im trying to load data from a django-fixture which I created with the dumpdata command
manage.py dumpdata --format=json MyApp > MyApp/fixtures/test_data.json
I want to use this as initial data ...
0
votes
2answers
26 views
Load and use fixture in grails console
i excute the following code via grails console instead of BootStrap :
class BootStrap {
def fixtureLoader
def init = { servletContext ->
fixtureLoader.load("MockRecords")
}
}
...
0
votes
1answer
74 views
Ember fixtures on model are not loaded at start
I have an issue regarding load Ember data from an specific model. First of all I must point out that I'm using require.js to load all dependencies. I load all controllers, view, routes and then, I add ...
0
votes
1answer
44 views
Loading fixture in ruby gem tests using rspec
I am creating my first ruby gem and have a method that parses a Savon::Response object which comes from a soap api. I want to test my parse method and to do this I figure the easiest way is to have a ...
0
votes
1answer
35 views
Issue using fixtures in tests with Django DirtyFields
Is there a known issue when using fixtures in tests if you are implementing Django DirtyFields?
We use django_nose's NoseTestSuiteRunner with fixtures and coverage. I was going to try implementing ...
0
votes
1answer
56 views
Grails Fixtures: grails run-app works, but mvn grails:run-app not
I have installed the Grails Fixtures plugin (http://www.grails.org/plugin/fixtures) for loading some initial datas into my database for dev and test environment. I also use Grails with Maven ...
1
vote
2answers
151 views
jasmine-fixtures - DOM changes never seen
I've got two RequireJS modules, one for fetching data from an external service, one in charge of passing a callback to the first module.
Here is the first very basic module:
define(["jquery"], ...
0
votes
1answer
60 views
Is it possible to initialize the fixture only once and use it in multiple test cases?
Is it possible to have the fixture initialized only once and use it in multiple test cases within the same test suite? In the following example, fixture is constructed and destructed multiple times:
...
0
votes
1answer
44 views
Initial Data Django Fixtures Issue: Installed 0 object(s) from 0 fixture(s)
I am having a little trouble with importing initial data through xml files. For example I name this file in myapp/fixtures/initial_data.xml:
<?xml version="1.0" encoding="UTF-8"?>
<rows>
...
0
votes
1answer
70 views
symfony2 controller works fine in view, but does not during load:fixtures
I am struggling with the combination of a Controller, an EntityRepository, and my Doctrine Fixtures in Symfony2.
My ImageParts Entity are pieces of images. I want to randomly generate images, using ...
1
vote
1answer
70 views
Using Text Fixtures — Google Test
I have a class and I am planning to test it using Google Test Framework.
I am curious why is there need for "Text Fixtures"? (as described here: https://code.google.com/p/googletest/wiki/V1_6_Primer). ...
0
votes
1answer
49 views
IntegrityError when loading auth.user and profile models in Django fixtures
I'm trying to create some fixtures to use for running tests in Django. Right now, I'm just dumping the appropriate models from my dev db and then loading those through the test. Here's the command I ...
0
votes
0answers
176 views
Jasmine - ReferenceError: loadFixtures is not defined in file
ReferenceError: loadFixtures is not defined in file:///home/durrantm/.../HelloWorldSpec.js (line 3)
The spec is:
$ cat spec/HelloWorldSpec.js
describe("Hello-World", function () {
it("validates ...
3
votes
1answer
69 views
Creating a Fixture List for a set number of Weeks
I have seen some examples on forums but they don't seem to cater for what I need.
I am looking at creating a randomly generated fixture list for a football league.
I have 38 gameweeks, and anywhere ...
0
votes
0answers
10 views
Scalatest sharing service instance across multiple test suites
I have FlatSpec test classes which need to make use of a REST service for some fixture data. When running all the tests in one go I only really want to instantiate the REST client once as it may be ...
1
vote
0answers
115 views
jasmine-jquery fixtures not loading
Problem is that jasmine-jquery in not loading my fixtures from spec/fixtures folder. Now when I look at jasmine-jquery source code default path for fixtures is spec/javascripts/fixtures.
In a version ...
3
votes
1answer
55 views
Loading dozens of data fixtures in a neat manner
I have a Media entity in an app I'm working on that has associations with several other entities: Speaker, Tag, Category, etc.
In the code below I've shown a fixture I've written to create some ...
0
votes
2answers
24 views
Entitiy does not get load from fixtures data
What is wrong with the following YAML code? All the entities get loaded in the database, except the PinBoard, which is sort of an intermediary entity Board and Pin. What am I doing wrong there?
...
0
votes
1answer
255 views
Doctrine fixtures not working after updating to Symfony 2.1.8
After updating a project from Symfony 2.0.22 to 2.1.8 I get this error when executing doctrine:fixtures:load via Terminal
Fatal error: Class 'Doctrine\Common\DataFixtures\Loader' not found in ...
0
votes
2answers
93 views
django fixtures DateTimeField runtimeWarning
I've set some basic fixtures for my django project. One of the records inserted into the database looks like the following:
{
"model": "articles.article",
"pk": 1,
"fields": {
...
0
votes
0answers
33 views
add shared method to FactoryGirl to coustomize factories
making it simple, I'd like to use FactoryGirl in my Rails project this way:
FactoryGirl.define do
factory :individual do
name {random_name}
end
end
defining the method random_name for ...
1
vote
1answer
64 views
How to organize fixtures when using pytest
Fixtures tend to be small and reusable. Given that a specific fixture can rely on other fixtures
@pytest.fixture
def Account(db, memcache):
...
I would like to organize my fixtures in modules, ...
0
votes
1answer
128 views
Looking for a REST API with template based fake data (NodeJS + key-value store)
I want to be able to write a config like this...
{
'collection' : 'payments',
'rows' : 100,
'template' : {
"id" : "1...100000",
"status" : ["None", ...
0
votes
0answers
61 views
Rails Unit Test Seemingly not Using Devise's “confirm!” Properly
Context: New to Rails
I'm using the Devise gem. I have a test pasted below and as I toy with this unit test I get something odd illustrated in doing the following:
@user refers to an empty user ...
0
votes
1answer
64 views
How to handle data fixtures in Symfony when there are non-nullable entity relationships?
I'm developing an application in Symfony and am yet to setup some data fixtures - I think it'd about time I got round to doing it so setting up a fresh dev copy is faster. :-)
Using my example below, ...
0
votes
1answer
49 views
Knowing to interpret the phpunit tests
I´m trying to configure the fixtures and phpunit system is returned the next message '.E', but I don´t know how interpret it:
C:\kyopol\Apache 2.22.22\htdocs\demo\protected\tests>phpunit ...
0
votes
1answer
37 views
Rails 3: Convert a fixture to a set of ActionController::Parameters
Is there a way to covert a fixture to a set of ActionController::Parameters?
For example:
# contacts.yml
dan:
first_name: Dan
last_name: Gebhardt
email: dan@example.com
notes: Writes sample ...
0
votes
1answer
175 views
Ember.js: Data is being cleared from my fixtures array depending on how it is accessed
I have 2 controllers. The first, KeywordsIndexController looks like this:
App.KeywordsIndexController = Em.ArrayController.extend({
contentBinding: "App.Keyword.FIXTURES"
});
...the other, ...
0
votes
1answer
137 views
Sql Lite Error while running Fixtures : Unable to find the requested .Net Framework Data Provider. It may not be installed
Can anybody please help to resolve this issue..
I tried saveral things after googling but yet no luck...
This error occurs while running fixtures in my project.
NHibernate.HibernateException : ...
0
votes
1answer
42 views
Is there any way to programmatically handle data fixtures with schema migrations?
I'm learning Symfony2 and have just learnt about doctrine:migrations. It sounds like a great way of 'versioning' the database schema and deploying new schemas in production.
I've also been reading ...
0
votes
0answers
135 views
Django fixture load DeserializationError: 'unicode' object has no attribute 'pk'?
I am getting the following error when trying to run my test with fixtures:
File "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/loaddata.py", line 190, in handle
for obj ...
0
votes
2answers
31 views
How to real named auth_group_permissions in Django?
I want to create fixtures for auth_group_permissions table, but how named it model?
'auth.group.permissions' is not right.
[
{
"model": "auth.group",
"pk": 1,
"fields": ...
0
votes
1answer
176 views
Spring MVC (Spring roo) Hibernate fixtures
I was wondering what is the best approach of adding fixtures in a spring mvc + hibernate application for development purposes. Basically the idea is when the application is loaded in "dev" environment ...
0
votes
1answer
115 views
load fixtures phpunit test for a dummy
thanks to take a look here. I am starting get involved in a project and I need to create the tests for the code I've written. I have not too much experience with tests.
I've written this file:
...
0
votes
1answer
183 views
Grails Fixtures / Build Test Data plugin not working within a Unit Test
I am trying to use the Grails Fixtures Plugin within a service unit test. I am using grails 2.2.
I have the next code in my BuildConfig.groovy
plugins {
compile ":fixtures:1.2"
compile ...
0
votes
1answer
40 views
Generate new record from fixture
I have a fixture called "group":
one:
customer: one
name: MyString
In one test I need a couple more so I would like to do something like:
(1..3).each { |t| Group.create!(groups(:one), ...
1
vote
0answers
77 views
cant load fixtures from seeds.rb file
I am following the Railscast#179 on how to operate with seed data
I did exactly as said in the episode and everything worked fine for me.
Now, i am trying to change fixtures directory to ...
1
vote
0answers
61 views
Grails 2.x Maven Ear project fixtures integration tests break
I have an EAR project setup with Maven using Grails 2.1.1
Root
ear
war
grails-app
fixtures
...
This is a Grails project and it uses the fixtures plugin for integration ...
1
vote
2answers
74 views
Load fixtures to Testdb with PHPUnit and extbase
I search for a way to load test-data to a MySQL in my phpunit testcase. I use typo3 4.5 and want to test my pages-override and some functions in my testcase. I don't want to create all models ever and ...
0
votes
1answer
463 views
Zend Framework 2 - Doctrine 2 - How to use fixtures
I'm in the need of using fixtures for putting an initial user into my database.
I had a look at this module which is said to be pretty good: https://github.com/doctrine/data-fixtures
Unfortunately I ...
2
votes
2answers
84 views
When using DoctrineFixturesBundle, how can I capture the exact SQL that's being executed when they're being loaded?
When using DoctrineFixturesBundle, how can I capture the exact SQL that's being executed when they're being loaded? I have fixtures to load in, but I don't have access to that server -- I need to send ...
0
votes
1answer
231 views
Symfony ACL => ObjectIdentity() is already associated with an ACL
I want to use ACL with Symfony 2 and load them in my fixtures.
The following code works perfectly but if I uncomment array('myprivateroom', 'user1', 'view'), I get the following error:
...
0
votes
2answers
108 views
Define correct `fixture_path` for cucumber
I want to attach a file, from a cucumber step:
When /^I attach an image/ do
page.attach_file("Image", File.join(fixture_path, "green_small.jpg"))
end
For some reason this results in ...
0
votes
2answers
87 views
Assigning attr_accessor using fixtures in Rails
I have a simple Rails 3 model, with an attr_accessor that doesn't have a field in the database, and I need to set it up using fixtures, because of my initialization setup.
But when I try it, I get an ...
0
votes
1answer
743 views
Failing fixture load: DoesNotExist: … matching query does not exist
Running Django 1.5.x from git repo. Using south to manage migrations. I have a model such as this:
class Company(models.Model):
name = models.CharField(max_length = 100)
subdomain = ...
1
vote
2answers
191 views
How and where does py.test find fixtures
Where and how does py.test look for fixtures? I have the same code in 2 files in the same folder. When I delete conftest.py, cmdopt cannot be found running test_conf.py (also in same ...
1
vote
1answer
68 views
How to setup data fixtures in Google App Engine for Go
I would like to have some data fixtures put into data store when my go project is deployed, similar to what can be done in Django. Is it possible? If not, are there any alternatives?
1
vote
1answer
96 views
I can't execute data-load (Symfony 1.4 Doctrine)
I have a some problem with my symfony project.
I have a MySQL database with InnoDB tables.
I try to create simple tree-menu:
schema.yml
Menu:
actAs:
Timestampable:
created:
...







