Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
dbtestutil
Advanced tools
Launches an isolated instance of MySQL on a separate TCP port and unix socket file. It can execute a SQL script on start-up to create and populate a database with test data, and it can execute a SQL script on shutdown to dump data to a file for further analysis.
npm install --save-dev dbtestutil
Instantiates a new DbTestUtil instance.
The options
parameter can contain any of the following (defaults listed below):
mysql_host
: IP address or hostname to listen onmysql_local_port
: TCP port for mysqld
to listen onmysql_socket
: path to unix socket filemysqld
: path to mysqld
binarymysql
: path to mysql
binarymysql_tzinfo_to_sql
: path to mysql_tzinfo_to_sql
binarymysql_install_db
: path to mysql_install_db
binarymysql_base_dir
: MySQL's basedir
mysql_data_dir
: where to put the databases on the file systemzoneinfo_dir
: location of timezone filesmysql_settle_delay
: number of milliseconds to wait for mysqld
to come up before proceeding with executing user supplied SQLmysql_create_grant_tables
: controls whether grant tables should be createdmysqld_args
: additional arguments to pass to mysqld
Here are the default values:
{
mysql_host: '127.0.0.1',
mysql_local_port: 3307,
mysql_socket: '/tmp/mysqltest.sock',
mysqld: 'mysqld',
mysql: 'mysql',
mysql_tzinfo_to_sql: 'mysql_tzinfo_to_sql',
mysql_install_db: 'mysql_install_db',
mysql_base_dir: '/usr/local',
mysql_data_dir: './mysql-local',
zoneinfo_dir: '/usr/share/zoneinfo',
mysql_settle_delay: 3000,
mysql_create_grant_tables: false,
mysqld_args: ''
}
Creates mysql_data_dir
, launches mysqld
, loads timezone data, executes the contents of sql_file
(if supplied), and calls callback()
.
Parameters:
sql_file
- path to a file containing SQL to execute. Usually this file creates a database and schema. Optional.callback
- called when the database is ready to be used or when a command failed.Executes the contents of sql_file
(if supplied), sends the SIGTERM
signal to mysqld
, and calls callback()
.
Parameters:
sql_file
- path to a file containing SQL to execute. Usually this file includes some SQL SELECT statements to dump the database. View the output in dbSqlCmd.out
in mysql_data_dir
(defaults to ./mysql-local
). Optional.callback
- called when the database is ready to be used or when a command failed.test/myapp.test.js
"use strict";
var expect = require('expect.js');
var fs = require('fs');
var path = require('path');
var mysql = require('mysql');
var nconf = require('nconf');
var log = require('ssi-logger');
var DbTestUtil = require('dbtestutil');
var MyApp = require('../');
// uncomment to display debug output from dbtestutil
// process.on('log', log.consoleTransport());
// load the database configuration.
var options = nconf.argv().env().file({ file: path.join(__dirname, 'myapp.conf') }).get();
var dbTestUtil = new DbTestUtil(options.db.test);
before(function (done) {
this.timeout(30 * 1000); // 30 seconds (max)
dbTestUtil.startLocalMySql(path.join(__dirname, 'myapp_load.sql'), done);
});
describe('MyApp', function () {
// Point your application at the test instance and test away...
});
after(function (done) {
this.timeout(30 * 1000); // 30 seconds (max)
dbTestUtil.killLocalMySql(path.join(__dirname, 'myapp_dump.sql'), done);
});
test/myapp_load.sql
CREATE DATABASE `myapp`;
USE `myapp`;
CREATE TABLE somedata (
message TEXT
);
test/myapp_dump.sql
USE `dbtestutil`;
SELECT '==== version info ==== ' AS ' ';
SELECT VERSION();
SELECT '==== somedata dump ==== ' AS ' ';
SELECT * FROM somedata;
Set the mysqld_args
option to --general_log=1 --general_log_file=sql.log
to enable logging of all SQL statements.
Logs end up in ${mysql_data_dir}/sql.log
.
Most commands executed by this module send their output to ${mysql_data_dir}/dbSqlCmd.out
. It's a good
first place to look for errors. Also, this module uses ssi-logger. To get
it to print debugging information to the console, install ssi-logger
and add these two lines:
var log = require('ssi-logger');
process.on('log', log.consoleTransport());
There is an automated test suite:
npm test
It's known to pass on Mac OS X, Linux, and FreeBSD. Please report any failures via issues.
Copyright (C) 2015 SSi Micro, Ltd. and other contributors.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Launches an isolated instance of MySQL
The npm package dbtestutil receives a total of 1 weekly downloads. As such, dbtestutil popularity was classified as not popular.
We found that dbtestutil demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.