Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
firebase-factories
Advanced tools
Define factories for your models and use the factory to save data to your firebase.
factories.define
const factories = require('firebase-factories')({firebase: new Firebase(<my-firebase-root>)})
const UserFactory = factories.define('User', {
// define the root of where this collection lives
root: 'users',
// provide a function that tells the factory how to calculate ids for the
// newly generated users n is a number that gets incremented with every factory
// of this type that gets created
id: (n, options) => {
return `test-user-${id}`
},
// provide a function that returns an object which will be used as the user record
attributes: (n, options) => {
const defaults = {info: {name: `User ${n}`, uid: `test-uid-${n}`}}
if (options.isAdmin) {
defaults.info.admin = true
}
return defaults
},
// return a promise that gets called after the user is saved
// this is useful for setting up other records that need to
// exist in order to look up the user id
afterSave: (n, options, user) => {
return firebase.child(`uids/${user.info.uid}`).set(user.$id)
}
})
Factory.create(overrides = {}, options = {})
method on your factory definition
overrides
is an object that will override the default attributes
from your factory definitionoptions
is an object that will get passed into the attributes
function. See example usage for creating regular users vs. creating admin users.attributes
function in the factory definition.$id
: the id of the object$save
: a function that returns a promise that resolves after the record is saved and the afterSave() callback is completedconst userRegular = UserFactory.create()
const userAdmin = UserFactory.create({}, {isAdmin: true})
const userJane = UserFactory.create({info: {name: 'Jane'}})
Promise.all([
userRegular.$save(),
userAdmin.$save(),
userJane.$save(),
]).then((values) => {
console.log('All the users have been saved')
console.log(userRegular.$id, userRegular.info.name)
console.log(userAdmin.$id, userAdmin.info.name)
console.log(userJane.$id, userJane.info.name)
})
FAQs
Factories for creating test data and saving it to firebase
We found that firebase-factories demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.