replace db mechanism

This commit is contained in:
Alexey Kasyanchuk 2018-08-15 07:14:18 +03:00
parent 5ef25693c1
commit cff0f11c79
2 changed files with 85 additions and 0 deletions

View File

@ -118,6 +118,60 @@ const expand = (sphinx) => {
})
})
sphinx.replaceValues = (table, values, particial = true, key = 'id', callback = () => {}) => new Promise((resolve) => {
values = Object.assign({}, values) // copy
let names = '';
let data = '';
const parseValues = (values) => {
let valuesData = ''
names = ''
for(const val in values)
{
if(values[val] === null)
continue;
if(typeof values[val] == 'object')
values[val] = JSON.stringify(values[val])
names += '`' + val + '`,';
valuesData += sphinx.escape(values[val]) + ',';
}
names = names.slice(0, -1)
valuesData = valuesData.slice(0, -1)
return valuesData
}
const finalQuery = () => {
let query = `REPLACE INTO ${table}(${names}) VALUES ${data}`;
queryCall(query, (...responce) => {
if(callback)
callback(...responce)
resolve(...responce)
})
}
if(particial)
{
queryCall(`SELECT * from ${table} WHERE \`${key}\` = ${sphinx.escape(values[key])}`, (err, row) => {
if(err || row.length == 0)
{
logTE('sql', 'error on sql replace request', row)
resolve(undefined)
callback(undefined)
return
}
data = `(${parseValues(Object.assign(row[0], values))})`
finalQuery()
})
}
else
{
data = `(${parseValues(values)})`
finalQuery()
}
})
return sphinx
}

31
tests/sphinx.api.test.js Normal file
View File

@ -0,0 +1,31 @@
import { assert } from "chai";
const {pool} = require('../src/background/mysql')
describe("big table for check", () => {
let sphinx;
it("init", async function() {
sphinx = await pool()
assert(sphinx)
await sphinx.query(`delete from feed where id >= 1`)
})
it("replace with add", async function() {
await sphinx.query(`insert into feed(id, data) values(1, '{a: 1}')`)
assert.equal((await sphinx.query(`select data from feed where id = 1`))[0].data, '{"a":1}')
await sphinx.replaceValues('feed', {id: 1, data: {a: 1, b: 2}}, true)
assert.equal((await sphinx.query(`select data from feed`))[0].data, '{"a":1,"b":2}')
})
it("replace without add", async function() {
await sphinx.query(`insert into feed(id, data) values(2, '{a: 1}')`)
await sphinx.replaceValues('feed', {id: 1, data: {a: 1, b: 2, c: 3}}, false)
assert.equal((await sphinx.query(`select data from feed where id = 1`))[0].data, '{"a":1,"b":2,"c":3}')
assert.equal((await sphinx.query(`select count(*) as c from feed`))[0].c, 2)
})
it("close", async function() {
await sphinx.end()
})
});