mevn-orm 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +55 -25
- package/lib/model.js +23 -9
- package/package.json +37 -25
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- package/.github/dependabot.yml +0 -30
- package/.github/workflows/node.js.yml +0 -31
- package/initDb +0 -104
- package/test/model.test.js +0 -86
- /package/{knexfile.cjs → knexfile.js} +0 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,29 +1,59 @@
|
|
|
1
|
-
# Mevn
|
|
2
|
-
|
|
3
|
-
[](https://github.com/StanleyMasinde/mevn-orm/blob/master/LICENSE)
|
|
4
|
-
|
|
1
|
+
# Mevn ORM
|
|
2
|
+
|
|
3
|
+
 [](https://github.com/StanleyMasinde/mevn-orm/blob/master/LICENSE) 
|
|
4
|
+
|
|
5
|
+
**Mevn ORM** is a lightweight ORM for Express.js and MySQL that provides a clean, fluent interface for building queries and managing models.
|
|
6
|
+
It is under maintenance mode and receives security updates. Development is paused, but the core ORM functionality is complete and usable.
|
|
7
|
+
|
|
8
|
+
## Getting Started
|
|
5
9
|
|
|
6
10
|
```javascript
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
11
|
+
const { Model } = require('mevn-orm')
|
|
12
|
+
|
|
13
|
+
class User extends Model {}
|
|
14
|
+
|
|
15
|
+
const user = await User.create({
|
|
16
|
+
name: 'John Doe',
|
|
17
|
+
email: 'john@example.com',
|
|
18
|
+
password: 'secret' // hash before storing
|
|
19
|
+
})
|
|
20
|
+
````
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
* Model-based abstraction
|
|
25
|
+
* Create, Read, Update, Delete support
|
|
26
|
+
* Chainable query builder (`where`, `first`, `all`)
|
|
27
|
+
* Timestamps
|
|
28
|
+
* Soft deletes
|
|
29
|
+
* SQLite support for testing
|
|
30
|
+
* Knex-based migration support
|
|
31
|
+
|
|
32
|
+
## ORM Basics Checklist
|
|
33
|
+
|
|
34
|
+
* [x] `Model` base class
|
|
35
|
+
* [x] `.create`, `.find`, `.update`, `.delete`
|
|
36
|
+
* [x] `.where()`, `.first()`, `.all()` chaining
|
|
37
|
+
* [x] Table name inference
|
|
38
|
+
* [x] Timestamps
|
|
39
|
+
* [x] Soft deletes
|
|
40
|
+
* [x] Basic relationship hooks (`hasOne`, `hasMany`, `belongsTo`)
|
|
41
|
+
* [x] Raw queries
|
|
42
|
+
* [x] Knex passthrough
|
|
43
|
+
* [x] SQLite3 test DB
|
|
44
|
+
* [x] Uses `mysql2` for production
|
|
45
|
+
* [x] `dotenv` support
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
This project uses [Vitest](https://vitest.dev/) for testing.
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm install
|
|
53
|
+
npm run migrate
|
|
54
|
+
npm run test
|
|
27
55
|
```
|
|
28
56
|
|
|
29
|
-
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
[MIT](./LICENSE)
|
package/lib/model.js
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
const fs = require('fs')
|
|
1
2
|
const knex = require('knex').knex
|
|
2
|
-
|
|
3
|
+
|
|
4
|
+
let fileName
|
|
5
|
+
|
|
6
|
+
if (fs.existsSync(process.cwd() + '/knexfile.js')) {
|
|
7
|
+
fileName = process.cwd() + '/knexfile.js'
|
|
8
|
+
} else {
|
|
9
|
+
fileName = process.cwd() + '/knexfile.cjs'
|
|
10
|
+
}
|
|
11
|
+
const { development, staging, production } = require(fileName)
|
|
12
|
+
|
|
3
13
|
const pluralize = require('pluralize')
|
|
4
14
|
let config
|
|
5
15
|
switch (process.env.NODE_ENV) {
|
|
@@ -41,12 +51,13 @@ class Model {
|
|
|
41
51
|
this.fillable.forEach((f) => {
|
|
42
52
|
rows[f] = this[f]
|
|
43
53
|
})
|
|
44
|
-
const id = await DB(this.table)
|
|
54
|
+
const [id] = await DB(this.table)
|
|
45
55
|
.insert(rows)
|
|
46
56
|
const fields = await DB(this.table).where({ id }).first()
|
|
47
57
|
for (const f in fields) {
|
|
48
58
|
this[f] = fields[f]
|
|
49
59
|
}
|
|
60
|
+
this['id'] = id
|
|
50
61
|
return this.stripColumns(this)
|
|
51
62
|
} catch (error) {
|
|
52
63
|
throw new Error(error)
|
|
@@ -176,10 +187,13 @@ class Model {
|
|
|
176
187
|
if (!foreignKey) {
|
|
177
188
|
foreignKey = `${this.modelName}_id`
|
|
178
189
|
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
190
|
+
|
|
191
|
+
if (localKey) {
|
|
192
|
+
relation[foreignKey] = localKey
|
|
193
|
+
const res = await DB(table).where(relation).first()
|
|
194
|
+
if (res) {
|
|
195
|
+
return this.stripColumns(new Related(res))
|
|
196
|
+
}
|
|
183
197
|
}
|
|
184
198
|
return null
|
|
185
199
|
}
|
|
@@ -227,11 +241,11 @@ class Model {
|
|
|
227
241
|
* Delete columns that are not needed
|
|
228
242
|
*
|
|
229
243
|
*/
|
|
230
|
-
stripColumns(
|
|
244
|
+
stripColumns(model) {
|
|
231
245
|
this.#private.concat(this.hidden).forEach((h) => {
|
|
232
|
-
delete
|
|
246
|
+
delete model[h]
|
|
233
247
|
})
|
|
234
|
-
return
|
|
248
|
+
return model
|
|
235
249
|
}
|
|
236
250
|
|
|
237
251
|
}
|
package/package.json
CHANGED
|
@@ -1,56 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mevn-orm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "simple ORM for express js",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"pretest": "node initDb",
|
|
8
|
-
"test": "mocha
|
|
8
|
+
"test": "mocha --exit",
|
|
9
9
|
"init:db": "node initDb",
|
|
10
10
|
"migrate": "knex migrate:latest",
|
|
11
11
|
"lint": "eslint --ext .js ./"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
14
|
+
"dotenv": "^17.0.1",
|
|
15
|
+
"knex": "^3.0.0",
|
|
16
|
+
"mysql2": "^3.9.3"
|
|
17
|
+
},
|
|
18
|
+
"peerDependenciesMeta": {
|
|
19
|
+
"dotenv": {
|
|
20
|
+
"optional": false
|
|
21
|
+
},
|
|
22
|
+
"knex": {
|
|
23
|
+
"optional": false
|
|
24
|
+
}
|
|
17
25
|
},
|
|
18
26
|
"keywords": [
|
|
19
27
|
"ORM",
|
|
20
28
|
"express",
|
|
21
29
|
"Mysql",
|
|
22
|
-
"mevn"
|
|
30
|
+
"mevn",
|
|
31
|
+
"database",
|
|
32
|
+
"orm",
|
|
33
|
+
"orm-express",
|
|
34
|
+
"orm-mysql"
|
|
35
|
+
],
|
|
36
|
+
"author": "Stanley Masinde <stanmasinde@gmail.com> (https://stanleymasinde.github.io)",
|
|
37
|
+
"contributors": [
|
|
38
|
+
"Stanley Masinde <stanmasinde@gmail.com>"
|
|
23
39
|
],
|
|
24
|
-
"author": "Stanley Masinde",
|
|
25
40
|
"license": "MIT",
|
|
26
41
|
"dependencies": {
|
|
27
42
|
"pluralize": "^8.0.0"
|
|
28
43
|
},
|
|
29
44
|
"devDependencies": {
|
|
30
|
-
"@babel/cli": "^7.
|
|
31
|
-
"@babel/core": "^7.
|
|
32
|
-
"@babel/eslint-parser": "^7.
|
|
33
|
-
"@babel/eslint-plugin": "^7.
|
|
34
|
-
"@
|
|
35
|
-
"chai": "^4.
|
|
36
|
-
"dotenv": "^
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"mysql2": "^2.3.0",
|
|
42
|
-
"sqlite3": "^5.0.0"
|
|
45
|
+
"@babel/cli": "^7.24.5",
|
|
46
|
+
"@babel/core": "^7.24.5",
|
|
47
|
+
"@babel/eslint-parser": "^7.24.3",
|
|
48
|
+
"@babel/eslint-plugin": "^7.24.0",
|
|
49
|
+
"@faker-js/faker": "^9.8.0",
|
|
50
|
+
"chai": "^4.4.1",
|
|
51
|
+
"dotenv": "^17.0.1",
|
|
52
|
+
"knex": "^3.0.0",
|
|
53
|
+
"mocha": "^10.4.0",
|
|
54
|
+
"mysql": "^2.18.1",
|
|
55
|
+
"sqlite3": "^5.1.7"
|
|
43
56
|
},
|
|
44
57
|
"directories": {
|
|
58
|
+
"lib": "lib",
|
|
45
59
|
"test": "test"
|
|
46
60
|
},
|
|
47
61
|
"private": false,
|
|
48
|
-
"repository":
|
|
49
|
-
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/StanleyMasinde/mevn-orm.git"
|
|
51
|
-
},
|
|
62
|
+
"repository": "git+https://github.com/StanleyMasinde/mevn-orm.git",
|
|
52
63
|
"bugs": {
|
|
53
|
-
"url": "https://github.com/StanleyMasinde/mevn-orm/issues"
|
|
64
|
+
"url": "https://github.com/StanleyMasinde/mevn-orm/issues",
|
|
65
|
+
"email": "stanleymasinde1@gmail.com"
|
|
54
66
|
},
|
|
55
67
|
"homepage": "https://github.com/StanleyMasinde/mevn-orm#readme",
|
|
56
68
|
"main": "index.js"
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Create a report to help us improve
|
|
4
|
-
title: ''
|
|
5
|
-
labels: ''
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Describe the bug**
|
|
11
|
-
A clear and concise description of what the bug is.
|
|
12
|
-
|
|
13
|
-
**To Reproduce**
|
|
14
|
-
Steps to reproduce the behavior:
|
|
15
|
-
1. Go to '...'
|
|
16
|
-
2. Click on '....'
|
|
17
|
-
3. Scroll down to '....'
|
|
18
|
-
4. See error
|
|
19
|
-
|
|
20
|
-
**Expected behavior**
|
|
21
|
-
A clear and concise description of what you expected to happen.
|
|
22
|
-
|
|
23
|
-
**Screenshots**
|
|
24
|
-
If applicable, add screenshots to help explain your problem.
|
|
25
|
-
|
|
26
|
-
**Desktop (please complete the following information):**
|
|
27
|
-
- OS: [e.g. iOS]
|
|
28
|
-
- Browser [e.g. chrome, safari]
|
|
29
|
-
- Version [e.g. 22]
|
|
30
|
-
|
|
31
|
-
**Smartphone (please complete the following information):**
|
|
32
|
-
- Device: [e.g. iPhone6]
|
|
33
|
-
- OS: [e.g. iOS8.1]
|
|
34
|
-
- Browser [e.g. stock browser, safari]
|
|
35
|
-
- Version [e.g. 22]
|
|
36
|
-
|
|
37
|
-
**Additional context**
|
|
38
|
-
Add any other context about the problem here.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an idea for this project
|
|
4
|
-
title: ''
|
|
5
|
-
labels: ''
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Is your feature request related to a problem? Please describe.**
|
|
11
|
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
-
|
|
13
|
-
**Describe the solution you'd like**
|
|
14
|
-
A clear and concise description of what you want to happen.
|
|
15
|
-
|
|
16
|
-
**Describe alternatives you've considered**
|
|
17
|
-
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
-
|
|
19
|
-
**Additional context**
|
|
20
|
-
Add any other context or screenshots about the feature request here.
|
package/.github/dependabot.yml
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
updates:
|
|
3
|
-
- package-ecosystem: npm
|
|
4
|
-
directory: '/'
|
|
5
|
-
schedule:
|
|
6
|
-
interval: daily
|
|
7
|
-
time: '00:00'
|
|
8
|
-
open-pull-requests-limit: 10
|
|
9
|
-
reviewers:
|
|
10
|
-
- stanleymasinde
|
|
11
|
-
assignees:
|
|
12
|
-
- stanleymasinde
|
|
13
|
-
commit-message:
|
|
14
|
-
prefix: fix
|
|
15
|
-
prefix-development: chore
|
|
16
|
-
include: scope
|
|
17
|
-
- package-ecosystem: github-actions
|
|
18
|
-
directory: '/'
|
|
19
|
-
schedule:
|
|
20
|
-
interval: daily
|
|
21
|
-
time: '00:00'
|
|
22
|
-
open-pull-requests-limit: 10
|
|
23
|
-
reviewers:
|
|
24
|
-
- stanleymasinde
|
|
25
|
-
assignees:
|
|
26
|
-
- stanleymasinde
|
|
27
|
-
commit-message:
|
|
28
|
-
prefix: fix
|
|
29
|
-
prefix-development: chore
|
|
30
|
-
include: scope
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
2
|
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
3
|
-
|
|
4
|
-
name: Node.js CI
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
push:
|
|
8
|
-
branches: [ main ]
|
|
9
|
-
pull_request:
|
|
10
|
-
branches: [ main ]
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
build:
|
|
14
|
-
|
|
15
|
-
runs-on: ubuntu-latest
|
|
16
|
-
|
|
17
|
-
strategy:
|
|
18
|
-
matrix:
|
|
19
|
-
node-version: [12.x, 14.x, 15.x]
|
|
20
|
-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
21
|
-
|
|
22
|
-
steps:
|
|
23
|
-
- uses: actions/checkout@v2
|
|
24
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
|
-
uses: actions/setup-node@v2
|
|
26
|
-
with:
|
|
27
|
-
node-version: ${{ matrix.node-version }}
|
|
28
|
-
- run: cp .env.example .env
|
|
29
|
-
- run: npm ci
|
|
30
|
-
- run: npm run build --if-present
|
|
31
|
-
- run: npm test
|
package/initDb
DELETED
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
#!/bin/env node
|
|
2
|
-
require('dotenv').config()
|
|
3
|
-
const Knex = require('knex')
|
|
4
|
-
const { development, staging, production } = require('./knexfile.cjs')
|
|
5
|
-
let config
|
|
6
|
-
|
|
7
|
-
switch (process.env.NODE_ENV) {
|
|
8
|
-
case 'testing':
|
|
9
|
-
config = development
|
|
10
|
-
break
|
|
11
|
-
case 'development':
|
|
12
|
-
config = development
|
|
13
|
-
break
|
|
14
|
-
case 'staging':
|
|
15
|
-
config = staging
|
|
16
|
-
break
|
|
17
|
-
default:
|
|
18
|
-
config = production
|
|
19
|
-
break
|
|
20
|
-
}
|
|
21
|
-
async function initDatabase() {
|
|
22
|
-
const DB = Knex(config)
|
|
23
|
-
await DB.schema.dropTableIfExists('farmers')
|
|
24
|
-
await DB.schema.dropTableIfExists('farms')
|
|
25
|
-
await DB.schema.dropTableIfExists('profiles')
|
|
26
|
-
await DB.schema.dropTableIfExists('articles')
|
|
27
|
-
await DB.schema.createTable('farmers', (table) => {
|
|
28
|
-
table.bigIncrements('id')
|
|
29
|
-
table.string('name')
|
|
30
|
-
table.string('email').unique()
|
|
31
|
-
table.string('password')
|
|
32
|
-
})
|
|
33
|
-
await DB.schema.createTable('farms', (table) => {
|
|
34
|
-
table.bigIncrements('id')
|
|
35
|
-
table.bigInteger('farmer_id')
|
|
36
|
-
table.string('name')
|
|
37
|
-
})
|
|
38
|
-
|
|
39
|
-
await DB.schema.createTable('profiles', (table) => {
|
|
40
|
-
table.bigIncrements('id')
|
|
41
|
-
table.bigInteger('farmer_id')
|
|
42
|
-
table.string('bio')
|
|
43
|
-
})
|
|
44
|
-
|
|
45
|
-
await DB.schema.createTable('articles', (table) => {
|
|
46
|
-
table.bigIncrements('id')
|
|
47
|
-
table.string('title')
|
|
48
|
-
table.text('body')
|
|
49
|
-
table.bigInteger('postable_id')
|
|
50
|
-
table.string('postable_type')
|
|
51
|
-
})
|
|
52
|
-
|
|
53
|
-
await DB.table('Farmers').insert([
|
|
54
|
-
{
|
|
55
|
-
name: 'Jane Doe',
|
|
56
|
-
email: 'jane@mail.com',
|
|
57
|
-
password: 'pasword'
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
name: 'Ashley Doe',
|
|
61
|
-
email: 'ashley@mail.com',
|
|
62
|
-
password: 'pasword'
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
name: 'Alice Doe',
|
|
66
|
-
email: 'alice@mail.com',
|
|
67
|
-
password: 'pasword'
|
|
68
|
-
}
|
|
69
|
-
])
|
|
70
|
-
|
|
71
|
-
await DB.table('farms').insert([
|
|
72
|
-
{
|
|
73
|
-
farmer_id: 1,
|
|
74
|
-
name: 'Awesome Farm'
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
farmer_id: 1,
|
|
78
|
-
name: 'Awesome Farm two'
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
farmer_id: 1,
|
|
82
|
-
name: 'Awesome Farm three'
|
|
83
|
-
}
|
|
84
|
-
])
|
|
85
|
-
|
|
86
|
-
await DB.table('profiles').insert([
|
|
87
|
-
{
|
|
88
|
-
farmer_id: 1,
|
|
89
|
-
bio: 'Profile for farmer one'
|
|
90
|
-
}
|
|
91
|
-
])
|
|
92
|
-
|
|
93
|
-
await DB.table('articles').insert([
|
|
94
|
-
{
|
|
95
|
-
title: 'Awesome Post',
|
|
96
|
-
body: 'fffgjdfjdbdb something #1',
|
|
97
|
-
postable_id: 1,
|
|
98
|
-
postable_type: 'Farmer'
|
|
99
|
-
}
|
|
100
|
-
])
|
|
101
|
-
|
|
102
|
-
process.exit(0)
|
|
103
|
-
}
|
|
104
|
-
initDatabase()
|
package/test/model.test.js
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-undef */
|
|
2
|
-
const { Model, DB } = require('../index')
|
|
3
|
-
const faker = require('faker')
|
|
4
|
-
const { expect } = require('chai')
|
|
5
|
-
class Profile extends Model {
|
|
6
|
-
fillable = ['farmer_id', 'bio']
|
|
7
|
-
}
|
|
8
|
-
class Farmer extends Model {
|
|
9
|
-
fillable = ['name', 'email', 'password']
|
|
10
|
-
hidden = ['password']
|
|
11
|
-
|
|
12
|
-
profile() {
|
|
13
|
-
return this.hasOne(Profile)
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
DB(Farmer)
|
|
18
|
-
|
|
19
|
-
describe('#Model tests', () => {
|
|
20
|
-
it('#Model instance', async () => {
|
|
21
|
-
const farmer = new Farmer({
|
|
22
|
-
name: faker.name.findName(),
|
|
23
|
-
email: faker.internet.email(),
|
|
24
|
-
password: faker.internet.password()
|
|
25
|
-
})
|
|
26
|
-
await farmer.save()
|
|
27
|
-
expect(farmer).to.an('Object')
|
|
28
|
-
})
|
|
29
|
-
|
|
30
|
-
it('#find a model', async () => {
|
|
31
|
-
const farmer = await Farmer.find(1)
|
|
32
|
-
expect(farmer).to.an('Object')
|
|
33
|
-
})
|
|
34
|
-
|
|
35
|
-
it('#create a model', async () => {
|
|
36
|
-
const farmer = await Farmer.create({
|
|
37
|
-
name: faker.name.findName(),
|
|
38
|
-
email: faker.internet.email(),
|
|
39
|
-
password: faker.internet.password()
|
|
40
|
-
})
|
|
41
|
-
expect(farmer).to.an('Object')
|
|
42
|
-
expect(farmer.id).to.be.a('number')
|
|
43
|
-
})
|
|
44
|
-
|
|
45
|
-
it('#Update a model with a new instance', async () => {
|
|
46
|
-
const farmer = await Farmer.find(1)
|
|
47
|
-
await farmer.update({
|
|
48
|
-
name: 'new name',
|
|
49
|
-
email: faker.internet.email(),
|
|
50
|
-
password: faker.internet.password()
|
|
51
|
-
})
|
|
52
|
-
expect(farmer).to.an('Object')
|
|
53
|
-
})
|
|
54
|
-
|
|
55
|
-
it('#chain where and first', async () => {
|
|
56
|
-
const farmer = await Farmer.where({ id: 1 }).first()
|
|
57
|
-
expect(farmer).to.an('Object')
|
|
58
|
-
})
|
|
59
|
-
|
|
60
|
-
it('#Return null when not found', async () => {
|
|
61
|
-
const farmer = await Farmer.where({ id: 'ggggggg' }).first()
|
|
62
|
-
expect(farmer).to.be.null
|
|
63
|
-
})
|
|
64
|
-
|
|
65
|
-
it('#Delete a model', async () => {
|
|
66
|
-
const farmer = await Farmer.find(1)
|
|
67
|
-
await farmer.delete()
|
|
68
|
-
expect(await Farmer.find(1)).to.be.null
|
|
69
|
-
})
|
|
70
|
-
|
|
71
|
-
it('#Has one relationship', async () => {
|
|
72
|
-
const farmer = new Farmer({
|
|
73
|
-
name: faker.name.findName(),
|
|
74
|
-
email: faker.internet.email(),
|
|
75
|
-
password: faker.internet.password()
|
|
76
|
-
})
|
|
77
|
-
await farmer.save()
|
|
78
|
-
await new Profile({
|
|
79
|
-
farmer_id: farmer.id,
|
|
80
|
-
bio: faker.lorem.sentence()
|
|
81
|
-
}).save()
|
|
82
|
-
expect(farmer).to.an('Object')
|
|
83
|
-
const farmerProfile = await farmer.profile()
|
|
84
|
-
expect(farmerProfile).to.haveOwnProperty('farmer_id', farmer.id)
|
|
85
|
-
})
|
|
86
|
-
})
|
|
File without changes
|