Skip to content

Commit 210618c

Browse files
authored
Merge pull request #7 from shelfio/develop
V1.0.0
2 parents eba0a54 + 5fd4e97 commit 210618c

File tree

5 files changed

+81
-50
lines changed

5 files changed

+81
-50
lines changed

.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
version: 2.1
2-
31
orbs:
4-
node: circleci/[email protected]
2+
node: circleci/[email protected]
3+
4+
version: 2.1
55

66
parameters:
77
node_version:
88
type: string
9-
default: '16.15.0'
9+
default: '16.17.0'
1010

1111
commands:
1212
install_deps:
@@ -17,17 +17,17 @@ commands:
1717
cache-only-lockfile: true
1818
app-dir: ~/repo
1919
override-ci-command: yarn install --pure-lockfile --no-progress
20-
- run: sudo apt-get -q update && sudo apt-get -y install openjdk-17-jdk
20+
- run: sudo apt update -q && sudo apt install postgresql-12
2121

2222
jobs:
2323
build:
2424
executor:
2525
name: node/default
26-
tag: << pipeline.parameters.node_version >>
26+
tag: <<pipeline.parameters.node_version>>
2727
working_directory: ~/repo
2828
steps:
2929
- checkout
3030
- install_deps
31-
- run: yarn test
31+
- run: sudo yarn test
3232
- run: yarn type-check
3333
- run: yarn lint:ci

README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# postgres-local [![CircleCI](https://circleci.com/gh/shelfio/postgres-local/tree/master.svg?style=svg)](https://circleci.com/gh/shelfio/postgres-local/tree/master) ![](https://img.shields.io/badge/code_style-prettier-ff69b4.svg) [![npm (scoped)](https://img.shields.io/npm/v/@shelf/postgres-local.svg)](https://www.npmjs.com/package/@shelf/postgres-local)
1+
# postgres-local [![CircleCI](https://dl.circleci.com/status-badge/img/gh/shelfio/postgres-local/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/shelfio/postgres-local/tree/master) ![](https://img.shields.io/badge/code_style-prettier-ff69b4.svg) [![npm (scoped)](https://img.shields.io/npm/v/@shelf/postgres-local.svg)](https://www.npmjs.com/package/@shelf/postgres-local)
22

33
> Run any version of Postgres locally
44
@@ -17,18 +17,26 @@ import {start} from '@shelf/postgres-local';
1717

1818
await start({
1919
seedPath: "schema.sql",
20-
version: 14
20+
version: 14,
21+
port: 5555,
22+
includeInstallation: true
2123
});
2224
```
25+
- `seedPath` - absolute path to sql file with commands that will set up db structure before tests
26+
- `includeInstallation`
27+
- when this flag is `true` (default) macOS will run `brew install` and linux `apt install` to make sure `postgres` is installed
28+
- when false - package omit installing postgres and relly that it is already in place
2329

2430
### 2. Stop Postgres
2531

2632
```js
2733
import {stop} from '@shelf/postgres-local';
2834

29-
await stop(14);
35+
await stop({version: 14});
3036
```
3137

38+
39+
3240
## Publish
3341

3442
```sh

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@shelf/postgres-local",
3-
"version": " 0.2.0-alpha",
4-
"description": "Run 14 version of Postgres locally",
3+
"version": "1.0.0",
4+
"description": "Run Postgres locally",
55
"keywords": [
66
"postgres",
77
"postgres local"

src/index.test.ts

+15-8
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ import postgres from 'postgres';
44
import {start, stop} from '.';
55

66
describe('#postgres', () => {
7-
it('should start postgres@14 locally', async () => {
8-
const returnedUrl = await start({seedPath: `${cwd()}/src/schema.sql`});
7+
it('should start postgres locally', async () => {
8+
expect.assertions(2);
99

10-
const sql = postgres('postgres://localhost:5432/postgres');
10+
const returnedUrl = await start({
11+
seedPath: `${cwd()}/src/schema.sql`,
12+
version: 12,
13+
includeInstallation: false,
14+
});
15+
16+
const sql = postgres(returnedUrl);
1117

1218
const data = await sql`
1319
SELECT attname, format_type(atttypid, atttypmod)
@@ -47,14 +53,15 @@ describe('#postgres', () => {
4753
format_type: 'boolean',
4854
},
4955
]);
50-
51-
expect(returnedUrl).toEqual('postgres://localhost:5432/postgres');
56+
expect(returnedUrl).toEqual('postgres://localhost:5555/postgres');
5257
});
5358

54-
it('should stop postgres@14 locally', async () => {
55-
await stop();
59+
it('should stop postgres locally', async () => {
60+
await stop({
61+
version: 12,
62+
});
5663
try {
57-
const sql = postgres('postgres://localhost:5432/postgres');
64+
const sql = postgres('postgres://localhost:5555/postgres');
5865

5966
await sql`create schema supertest`;
6067
} catch (e) {

src/index.ts

+46-30
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
import getDebug from 'debug';
2-
import {exec} from 'child_process';
2+
import {spawnSync} from 'child_process';
33
import postgres from 'postgres';
4-
import {promisify} from 'util';
5-
6-
const asyncExec = promisify(exec);
7-
import cwd from 'cwd';
84
import {platform} from 'os';
95

106
const debug = getDebug('postgres-local');
11-
const FILEPATH_PREFIX = `${cwd()}/node_modules/.cache/@shelf/postgres-local`;
7+
const PD_TEMP_DATA_PATH = `/tmp/postgres-local-${Date.now()}`;
128

13-
type StartESOptions = {
9+
export async function start(options: {
1410
seedPath?: string;
1511
version?: number;
16-
};
17-
18-
export async function start(options: StartESOptions): Promise<string> {
19-
const {seedPath, version = 14} = options;
12+
port?: number;
13+
includeInstallation?: boolean;
14+
}): Promise<string> {
15+
const {seedPath, version = 14, port = 5555, includeInstallation = false} = options;
2016

21-
const url = 'postgres://localhost:5432/postgres';
17+
const url = `postgres://localhost:${port}/postgres`;
2218

2319
try {
24-
await asyncExec(getInstallationScript(version));
20+
spawnSync(getInstallationScript({version, port, includeInstallation}), {
21+
stdio: 'inherit',
22+
shell: true,
23+
env: {
24+
...process.env,
25+
HOME: '/root',
26+
},
27+
});
2528

2629
debug('Connecting to postgres...');
2730
const sql = postgres(url);
@@ -41,47 +44,60 @@ export async function start(options: StartESOptions): Promise<string> {
4144
}
4245
}
4346

44-
export async function stop(version?: string): Promise<{stdout: string; stderr: string}> {
45-
return asyncExec(getStopScript(version));
47+
export function stop({version = 14}: {version?: number}): void {
48+
spawnSync(getStopScript({version}), {
49+
stdio: 'inherit',
50+
shell: true,
51+
});
4652
}
4753

48-
export function getInstallationScript(version: number): string {
54+
export function getInstallationScript({
55+
version = 14,
56+
port = 5555,
57+
includeInstallation: includeInstallation = false,
58+
}): string {
4959
switch (platform()) {
5060
case 'darwin': {
61+
const installation = includeInstallation ? `brew install postgresql@${version};` : '';
62+
5163
return `
52-
brew install postgresql@${version}
53-
mkdir -p ${FILEPATH_PREFIX}/data;
54-
initdb -D ${FILEPATH_PREFIX}/data;
55-
pg_ctl -D ${FILEPATH_PREFIX}/data -l ${FILEPATH_PREFIX}/logfile start;
64+
${installation}
65+
mkdir -p ${PD_TEMP_DATA_PATH}/data;
66+
initdb -D ${PD_TEMP_DATA_PATH}/data;
67+
pg_ctl -D ${PD_TEMP_DATA_PATH}/data -o "-F -p ${port}" -l ${PD_TEMP_DATA_PATH}/logfile start;
5668
`;
5769
}
5870
case 'win32': {
5971
throw new Error('Unsupported OS, try run on OS X or Linux');
6072
}
6173
default: {
74+
// eslint-disable-next-line
75+
const installation = includeInstallation ? `sudo apt update; sudo apt install postgresql-${version};` : '';
76+
6277
return `
63-
apt-get update
64-
apt-get install -y postgresql-${version}
65-
mkdir -p ${FILEPATH_PREFIX}/data;
66-
/usr/lib/postgresql/${version}/bin/initdb -D ${FILEPATH_PREFIX}/data;
67-
/usr/lib/postgresql/${version}/bin/pg_ctl -D ${FILEPATH_PREFIX}/data -l ${FILEPATH_PREFIX}logfile start;
78+
${installation}
79+
sudo -u postgres mkdir -p ${PD_TEMP_DATA_PATH}/data;
80+
sudo -u postgres /usr/lib/postgresql/${version}/bin/initdb -D ${PD_TEMP_DATA_PATH}/data;
81+
sudo -u postgres /usr/lib/postgresql/${version}/bin/pg_ctl -o "-F -p ${port}" -D ${PD_TEMP_DATA_PATH}/data -l ${PD_TEMP_DATA_PATH}/logfile start;
82+
sudo -u postgres createuser -p ${port} -s $(whoami);
83+
sudo -u postgres createdb -p ${port} $(whoami);
6884
`;
6985
}
7086
}
7187
}
7288

73-
export function getStopScript(version?: string): string {
89+
export function getStopScript({version = 14}): string {
7490
switch (platform()) {
7591
case 'darwin': {
7692
return `
77-
pg_ctl stop -D ${FILEPATH_PREFIX}/data
78-
rm -rf ${FILEPATH_PREFIX}
93+
pg_ctl stop -D ${PD_TEMP_DATA_PATH}/data
94+
rm -rf ${PD_TEMP_DATA_PATH}
7995
`;
8096
}
8197
default: {
8298
return `
83-
/usr/lib/postgresql/${version}/bin/pg_ctl -D ${FILEPATH_PREFIX}/data
84-
rm -rf ${FILEPATH_PREFIX}
99+
sudo -u postgres /usr/lib/postgresql/${version}/bin/pg_ctl stop -D ${PD_TEMP_DATA_PATH}/data
100+
sudo -u postgres rm -rf ${PD_TEMP_DATA_PATH}
85101
`;
86102
}
87103
}

0 commit comments

Comments
 (0)