typeorm-faker
Version:
Generate mocks, stubs using fakers with your Entity Settings
171 lines (125 loc) • 3.77 kB
Markdown
# Security Warning About 'Parasite Library Page'
- CAUTION: Check the library name: `typeorm-faker`, NOT `typeorm-faker-'js'`.
I found a MALICIOUS USER,
A DISGUSTING ROACH or terrible parasite of the IT world,
distributing malware
without any permission or affiliation from npm library creators including me.
CAUTION: This library name is ***'typeorm-faker'***, ***NOT 'typeorm-faker-js'***
I must to stuff this `This creature... this abomination...` with profile link and capture.
- `https://www.npmjs.com/~vdtn359`
- 
# TypeORM-Faker
[](https://gitlab.com/typeorm-faker/typeorm-faker/-/commits/develop)
[](https://gitlab.com/typeorm-faker/typeorm-faker/-/releases)
Generate fake mocks, stubs using your entity settings.
## Install
you should install [faker.js](https://fakerjs.dev/) and [typerom](https://typeorm.io/)
```
# https://www.npmjs.com/package/@faker-js/faker
npm install typeorm
npm install --save-dev sinon
npm install --save-dev -js/faker
npm install --save-dev typeorm-faker
```
or
```
yarn add typeorm
yarn add --dev sinon
yarn add --dev -js/faker
yarn add --dev typeorm-faker
```
## Usage
```typescript
// import typeorm faker on your test file.
import typeormFaker from 'typeorm-faker';
// here is entity
export class Post {
id!: number;
title!: string;
text?: string;
likesCount!: number;
}
// generate stubs
const postStubs = typeormFaker.stub(Post);
/**
* You can specify values for fake entity
*
* Post [
* { id: 1, title: 'this is test title', text: 'eW2p3tj*A', likesCount: 0 },
* { id: 1, title: 'this is test title', text: 'abcdef', likesCount: 0 }
* ]
*/
const count = 5;
const postStubs = typeormFaker.stub(Post, count, {
id: 1,
title: 'this is test title'
});
// or one
/**
* Post { id: 13326, title: 'pDYFMFO,ZX', text: 'eW2p3tj*A', likesCount: 0 }
*/
const postStub = typeormFaker.stubOne(Post);
/**
* Post { id: 1, ... }
*/
const postStub = typeormFaker.stubOne(Post, {
id: 1
});
/**
* you can generate also typeorm raw one for type inference
*
* Post {
* post_id: 13326,
* post_title: 'pDYFMFO,ZX',
* post_text: 'eW2`p3tj*A',
* post_likesCount: 0`
* }
*/
const rawPostStub = typeormFaker.stubRawOne<Post, 'Post'>(Post);
const rawPostStub = typeormFaker.stubRawOne<Post, 'Post'>(Post, {
// post_id
// post_title ...
});
const count = 2;
const rawPostStubArray = typeormFaker.stubRaw<Post, 'Post'>(Post, count, {
post_id: 12345
});
```
### Support Type-Inference for TypeORM Raw Entity
<img src="https://s3.ap-northeast-2.amazonaws.com/typeorm-faker.gamecrunch.gg/typeorm-raw-type-inference-example.webp" style="border: 1px solid white">
---
## Use typeormFaker object globally in test
### Global type setting
setting up to tsconfig.json
```json
# set typeRoots on tsconfig.json in compilerOptions
{
// ...,
"typeRoots": [
"node_modules/typeorm-faker/@types"
],
"types": [
"sample"
]
}
```
### Register
Set register file as require settings
```yml
# like .mocharc.yml
- typeorm-faker/registers
```
## Limitations
For type inference of TypeORM raw entity, you must specify class variable and that name, additional fields in test that why
Typescript does not yet support the way that getting class name from generics.
## See Also
### Samples
Here is [Sample Project](https://gitlab.com/typeorm-faker/typeorm-fake-sample).