dbgate/integration-tests/engines.js

151 lines
3.5 KiB
JavaScript
Raw Normal View History

2021-05-27 08:53:53 +00:00
const views = {
type: 'views',
create1: 'CREATE VIEW obj1 AS SELECT id FROM t1',
create2: 'CREATE VIEW obj2 AS SELECT id FROM t2',
drop1: 'DROP VIEW obj1',
drop2: 'DROP VIEW obj2',
};
2021-05-28 20:18:06 +00:00
const matviews = {
type: 'matviews',
create1: 'CREATE MATERIALIZED VIEW obj1 AS SELECT id FROM t1',
create2: 'CREATE MATERIALIZED VIEW obj2 AS SELECT id FROM t2',
drop1: 'DROP MATERIALIZED VIEW obj1',
drop2: 'DROP MATERIALIZED VIEW obj2',
};
2021-05-27 08:53:53 +00:00
2021-05-27 07:12:21 +00:00
const engines = [
2021-05-27 11:07:58 +00:00
{
label: 'MySQL',
connection: {
engine: 'mysql@dbgate-plugin-mysql',
password: 'Pwd2020Db',
user: 'root',
server: 'mysql',
port: 3306,
},
local: {
server: 'localhost',
port: 15001,
},
2021-05-27 13:51:54 +00:00
// skipOnCI: true,
2021-05-27 11:07:58 +00:00
objects: [views],
2021-05-27 16:30:49 +00:00
dbSnapshotBySeconds: true,
2021-05-27 11:07:58 +00:00
},
{
label: 'MariaDB',
connection: {
engine: 'mariadb@dbgate-plugin-mysql',
password: 'Pwd2020Db',
user: 'root',
server: 'mysql',
port: 3306,
},
local: {
server: 'localhost',
port: 15004,
},
skipOnCI: true,
objects: [views],
dbSnapshotBySeconds: true,
},
2021-05-27 07:26:37 +00:00
{
label: 'PostgreSQL',
connection: {
engine: 'postgres@dbgate-plugin-postgres',
password: 'Pwd2020Db',
user: 'postgres',
2021-05-27 11:07:58 +00:00
server: 'postgres',
2021-05-27 10:38:27 +00:00
port: 5432,
2021-05-27 07:26:37 +00:00
},
2021-05-27 11:07:58 +00:00
local: {
server: 'localhost',
port: 15000,
},
objects: [
views,
2021-05-28 20:18:06 +00:00
matviews,
{
type: 'procedures',
create1: 'CREATE PROCEDURE obj1() LANGUAGE SQL AS $$ select * from t1 $$',
create2: 'CREATE PROCEDURE obj2() LANGUAGE SQL AS $$ select * from t2 $$',
drop1: 'DROP PROCEDURE obj1',
drop2: 'DROP PROCEDURE obj2',
},
2021-06-10 12:11:26 +00:00
{
type: 'functions',
2021-09-04 19:06:42 +00:00
create1:
'CREATE FUNCTION obj1() returns int LANGUAGE plpgsql AS $$ declare res integer; begin select count(*) into res from t1; return res; end; $$',
create2:
'CREATE FUNCTION obj2() returns int LANGUAGE plpgsql AS $$ declare res integer; begin select count(*) into res from t2; return res; end; $$',
2021-06-10 12:11:26 +00:00
drop1: 'DROP FUNCTION obj1',
drop2: 'DROP FUNCTION obj2',
},
],
2021-05-27 07:26:37 +00:00
},
2021-05-27 11:07:58 +00:00
{
label: 'SQL Server',
connection: {
engine: 'mssql@dbgate-plugin-mssql',
password: 'Pwd2020Db',
user: 'sa',
server: 'mssql',
port: 1433,
},
local: {
server: 'localhost',
port: 15002,
},
objects: [
views,
{
type: 'procedures',
create1: 'CREATE PROCEDURE obj1 AS SELECT id FROM t1',
create2: 'CREATE PROCEDURE obj2 AS SELECT id FROM t2',
drop1: 'DROP PROCEDURE obj1',
drop2: 'DROP PROCEDURE obj2',
},
],
},
{
label: 'SQLite',
generateDbFile: true,
connection: {
engine: 'sqlite@dbgate-plugin-sqlite',
},
objects: [views],
},
{
label: 'CockroachDB',
connection: {
engine: 'cockroach@dbgate-plugin-postgres',
user: 'root',
server: 'cockroachdb',
port: 26257,
},
local: {
server: 'localhost',
port: 15003,
},
2021-05-28 13:47:48 +00:00
skipOnCI: true,
objects: [views, matviews],
2021-05-27 11:07:58 +00:00
},
2021-05-27 07:12:21 +00:00
];
2021-09-05 09:01:52 +00:00
const filterLocal = [
// filter local testing
'-MySQL',
2023-02-25 12:33:33 +00:00
'-MariaDB',
2022-06-09 12:57:08 +00:00
'-PostgreSQL',
2023-02-17 08:15:13 +00:00
'-SQL Server',
2023-02-25 12:33:33 +00:00
'SQLite',
'-CockroachDB',
2021-09-05 09:01:52 +00:00
];
const enginesPostgre = engines.filter(x => x.label == 'PostgreSQL');
2021-09-05 09:01:52 +00:00
module.exports = process.env.CITEST
? engines.filter(x => !x.skipOnCI)
: engines.filter(x => filterLocal.find(y => x.label == y));
module.exports.enginesPostgre = enginesPostgre;